How to setup layout builds
How to setup this parts
<!-- layout-partial:partials/theme-mode/_init.html -->
<!--layout-partial:layout/_default.html-->
<!--layout-partial:partials/_scrolltop.html-->
<!--begin::Modals-->
<!--layout-partial:partials/modals/_upgrade-plan.html-->
<!--layout-partial:partials/modals/_invite-friends.html-->
<!--layout-partial:partials/modals/_view-users.html-->
<!--layout-partial:partials/modals/users-search/_main.html-->
<!--end::Modals-->
<!--begin::Javascript-->
Replies (1)
Hi
You can use any modern web framework to include and manage these layout partials. Here are some examples:
Laravel (PHP Framework):
Use Laravel's Blade templating engine:
@include('partials.theme-mode._init')
Angular:
Use Angular components and include them in your app.component.html:
<app-init-theme-mode></app-init-theme-mode>
The choice of framework depends on your project requirements and familiarity.