Open Closed

How to customizing the Layouts page or choose Empty Layout for the *.Blazor app using LeptonX / lite #3659


User avatar
0
tulsalor created

I see MVC has Application, Account, and Empty Layouts. Do we have those for blazor? I need empty layout or create a layout page. e.g blank landing page without menu n toolbar.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v6.0.0-RC3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

2 Answer(s)
  • User Avatar
    0
    EngincanV created
    Support Team .NET Developer

    I see MVC has Application, Account, and Empty Layouts. Do we have those for blazor?

    Hi, LeptonX Lite only has one layout named Application and LeptonX Theme has three layouts: Application, Side Menu and Top Menu.


    You can create a custom layout by checking the Basic Theme layout, from here. And for set it as your layout configure the LeptonXThemeBlazorOptions option:

    Configure<LeptonXThemeBlazorOptions>(options =>
    {
        options.Layout = LeptonXBlazorLayouts.SideMenu;
        // Or your custom implemented layout:
        options.Layout = typeof(MyCustomLayoutComponent);
    });
    

    See https://docs.abp.io/en/commercial/latest/themes/lepton-x/commercial/blazor?UI=BlazorServer#leptonxthemeblazoroptions for more info.

  • User Avatar
    0
    tulsalor created

    Noted and thank you.

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on July 03, 2025, 08:38