1
+ {#
2
+ Use this as your new starter template page, use it to start your new project,
3
+ by adding this code to your own base template:
4
+
5
+ {% extends '@Tabler/layout-horizontal.html.twig' %}
6
+
7
+ Enjoy your theme!
8
+ #}
9
+ <!doctype html{% block html_start %}{% endblock %}>
10
+ <html lang =" {{ app .request .locale }}" {% if tabler_bundle.isRightToLeft () %} dir =" rtl" {% endif %}>
11
+ <head >
12
+ {% block head %}
13
+ <meta charset =" utf-8" />
14
+ <meta name =" viewport" content =" width=device-width, initial-scale=1, viewport-fit=cover" />
15
+ <meta http-equiv =" X-UA-Compatible" content =" ie=edge" />
16
+ {% endblock %}
17
+ <title >{% block title %}{{ block (' page_title' ) }}{% endblock %}</title >
18
+ {% block stylesheets %}
19
+ <link rel =" stylesheet" href =" {{ asset(' bundles/tabler/tabler.css' ) }}" >
20
+ {% endblock %}
21
+ </head >
22
+ <body {% block body_start %}{% endblock %} class =" {{ ' antialiased' | tabler_body }}" {% block body_class %}{% endblock %}>
23
+ {% block after_body_start %}{% endblock %}
24
+ <div class =" page" >
25
+
26
+ {# *** Layout type changes *** #}
27
+ {% block header %}
28
+ <header id =" {% block header_id %}{% endblock %}" class =" navbar navbar-expand-md{% block header_class %} {% if tabler_bundle.isNavbarOverlapping () %}navbar-dark navbar-overlap{% else %}{{ tabler_bundle.isHeaderDark () ? ' navbar-dark' : ' navbar-light' }}{% endif %}{% endblock %} d-print-none" >
29
+ <div class =" {{ ' ' | tabler_container }}" >
30
+ <button class =" navbar-toggler" type =" button" data-bs-toggle =" collapse" data-bs-target =" #navbar-menu" >
31
+ <span class =" navbar-toggler-icon" ></span >
32
+ </button >
33
+ {% block app_logo %}
34
+ <h1 class =" navbar-brand {# navbar-brand-autodark #} d-none-navbar-horizontal pe-0 pe-md-3" >
35
+ <a href =" {{ path(' tabler_welcome' | tabler_route) }}" >
36
+ {% if tabler_bundle.getLogoUrl () is not empty %}
37
+ <img src =" {% if ' ://' in tabler_bundle.getLogoUrl () %}{{ tabler_bundle.getLogoUrl () }}{% else %}{{ asset(tabler_bundle.getLogoUrl ()) }}{% endif %}" width =" 110" height =" 32" alt =" Logo" class =" navbar-brand-image" >
38
+ {% else %}
39
+ <i class =" far fa-smile" style =" font-size: 32px" ></i >
40
+ {% endif %}
41
+ </a >
42
+ </h1 >
43
+ {% endblock %}
44
+ <div class =" navbar-nav flex-row order-md-last" >
45
+ {% block navbar_start %}{% endblock %}
46
+ {% block navbar_notifications %}
47
+ {% include ' @Tabler/includes/navbar_notifications.html.twig' %}
48
+ {% endblock %}
49
+ {% block navbar_user %}
50
+ {% include ' @Tabler/includes/navbar_user.html.twig' %}
51
+ {% endblock %}
52
+ {% block navbar_end %}{% endblock %}
53
+ </div >
54
+ {% if tabler_bundle.isCondensedNavbar () %}
55
+ <div class =" collapse navbar-collapse" id =" navbar-menu" >
56
+ <div class =" d-flex flex-column flex-md-row flex-fill align-items-stretch align-items-md-center" >
57
+ {% block navbar_menu_condensed %}
58
+ {% include ' @Tabler/includes/menu.html.twig' %}
59
+ {% endblock %}
60
+ </div >
61
+ </div >
62
+ {% endif %}
63
+ </div >
64
+ </header >
65
+ {% endblock %}
66
+
67
+ {% block navbar %}
68
+ {% if not tabler_bundle.isCondensedNavbar () %}
69
+ <div id =" {% block navbar_id %}{% endblock %}" class =" navbar-expand-md" >
70
+ <div class =" collapse navbar-collapse" id =" navbar-menu" >
71
+ <div class =" navbar {{ tabler_bundle.isNavbarDark () ? ' navbar-dark' : ' navbar-light' }}" >
72
+ <div class =" {{ ' ' | tabler_container }}" >
73
+ {% block navbar_menu %}
74
+ {% include ' @Tabler/includes/menu.html.twig' %}
75
+ {% endblock %}
76
+ {% block navbar_search %}
77
+ {% include ' @Tabler/includes/navbar_search.html.twig' %}
78
+ {% endblock %}
79
+ </div >
80
+ </div >
81
+ </div >
82
+ </div >
83
+ {% endif %}
84
+ {% endblock %}
85
+ {# *************************** #}
86
+
87
+ <div id =" {% block page_wrapper_id %}{% endblock %}" class =" page-wrapper" >
88
+ {% block page_header %}
89
+ <div class =" {{ ' ' | tabler_container }}" >
90
+ <!-- Page title -->
91
+ <div id =" {% block page_header_id %}{% endblock %}" class =" page-header d-print-none" >
92
+ <div class =" row align-items-center" >
93
+ <div class =" col" >
94
+ {% block breadcrumb %}
95
+ <div class =" page-pretitle" >
96
+ {% block page_pretitle %}Overview{% endblock %}
97
+ </div >
98
+ {% endblock %}
99
+ <h2 class =" page-title{% if tabler_bundle.isNavbarOverlapping () %} text-white{% endif %}" >
100
+ {% block page_title %}Dashboard{% endblock %}
101
+ </h2 >
102
+ {% block page_subtitle %}
103
+ <div class =" text-muted mt-1" >
104
+ 1-10 of 100
105
+ </div >
106
+ {% endblock %}
107
+ </div >
108
+ <div class =" col-12 col-md-auto ms-auto d-print-none" >
109
+ {% block page_actions %}
110
+ <div class =" btn-list" >
111
+ <a href =" #" class =" btn btn-white" >
112
+ New view
113
+ </a >
114
+ <a href =" #" class =" btn btn-primary d-none d-sm-inline-block" >
115
+ Create new report
116
+ </a >
117
+ </div >
118
+ {% endblock %}
119
+ </div >
120
+ </div >
121
+ </div >
122
+ </div >
123
+ {% endblock %}
124
+
125
+ <div class =" page-body" >
126
+ <div class =" {{ ' ' | tabler_container }}" >
127
+ <div class =" row row-cards" >
128
+ {% block page_content_before %}{% endblock %}
129
+
130
+ <section id =" {% block page_content_id %}{% endblock %}" class =" {% block page_content_class %}content{% endblock %}" >
131
+ {% block page_content_start %}{{ include (' @Tabler/includes/flash_messages.html.twig' ) }}{% endblock %}
132
+ {% block page_content %}{% endblock %}
133
+ {% block page_content_end %}{% endblock %}
134
+ </section >
135
+
136
+ {% block page_content_after %}{% endblock %}
137
+ </div >
138
+ </div >
139
+ </div >
140
+
141
+ {% block footer %}
142
+ <footer id =" {% block footer_id %}{% endblock %}" class =" footer footer-transparent d-print-none" >
143
+ <div class =" container" >
144
+ {% include ' @Tabler/includes/footer.html.twig' %}
145
+ </div >
146
+ </footer >
147
+ {% endblock %}
148
+ </div >
149
+ </div >
150
+
151
+ {% block javascripts %}
152
+ <script src =" {{ asset(' bundles/tabler/tabler.js' ) }}" ></script >
153
+ {% endblock %}
154
+ </body >
155
+ </html >
0 commit comments