1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!doctype html>
- {% include layout/banner.html %}
- {% assign title = page.title | default: layout.title %}
- <html lang="en"{% if page.rtl or site.rtl %} dir="rtl" {% endif %}>
- <head>
- <meta charset="utf-8"/>
- <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
- <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
- <title>{% if title %}{{ title }} - {% endif %}{% if site.title %}{{ site.title }} - {% endif %}{{ site.description }}</title>
- {% if jekyll.environment == 'preview' %}
- {% include layout/analytics.html %}
- <meta name="msapplication-TileColor" content="{{ site.theme-color }}"/>
- <meta name="theme-color" content="{{ site.theme-color }}"/>
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
- <meta name="apple-mobile-web-app-capable" content="yes"/>
- <meta name="mobile-web-app-capable" content="yes"/>
- <meta name="HandheldFriendly" content="True"/>
- <meta name="MobileOptimized" content="320"/>
- <link rel="icon" href="{{ site.base }}/favicon.ico" type="image/x-icon"/>
- <link rel="shortcut icon" href="{{ site.base }}/favicon.ico" type="image/x-icon"/>
- <meta name="description" content="{{ page.description | default: 'Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again. For free!' | escape }}"/>
- {% include layout/og.html %}
- {% endif %}
- {% include layout/css.html %}
- <style>
- @import url('https://rsms.me/inter/inter.css');
- :root {
- --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
- }
- body {
- font-feature-settings: "cv03", "cv04", "cv11";
- }
- </style>
- </head>
- {% assign layout-dark = page.layout-dark | default: site.layout-dark %}
- <body {% if layout.body-class or page.body-class %} class="{% if layout.body-class %} {{ layout.body-class }}{% endif %}{% if page.body-class %} {{ page.body-class }}{% endif %}"{% endif %}>
- <script src="{{ site.base }}/dist/js/demo-theme{% if jekyll.environment != 'development' %}.min{% endif %}.js{% if jekyll.environment != 'development' %}?{{ site.time | date: '%s' }}{% endif %}"></script>
- {{ content }}
- {% include layout/modals-capture.html %}
- {% include layout/js.html %}
- {% if site.debug and jekyll.environment == 'development' %}
- {% include layout/debug.html %}
- {% endif %}
- </body>
- </html>
|