mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
* marketing site init * classname fix * marketing images * homepage components * gradient bg * Optimised images with calibre/image-actions * generate utilities for marketing pages, negative utilities, new filters, browser component * list separate fixes * marketing pages components * build fix * new marketing pages elements * add typd.js library to animate text * about page, markdown page * testimonials, new components, new marketing pages * unity avatar sizes * fix shape sizes * avatars unify * shape fixes * real estate page * Optimised images with calibre/image-actions * fix small rebase error * Fix mobile designs of features, faq and testimonials * Add marketing pages to the extra's menu * fix hero header design and include as app example design * Fix buttons nog centering on hero * Slightly increase bundlewatch size --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Robert-Jan de Dreu <160743+rjd22@users.noreply.github.com>
54 lines
2.2 KiB
HTML
54 lines
2.2 KiB
HTML
<!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');
|
|
</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>
|