1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-17 02:51:41 +04:00
Files
tabler/pages/_layouts/base.html
T
2019-05-08 23:18:03 +02:00

38 lines
1.5 KiB
HTML

<!doctype html>
<html lang="en"{% if page.rtl %} dir="rtl"{% endif %}>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<meta http-equiv="Content-Language" content="en"/>
<meta name="msapplication-TileColor" content="#4188c9"/>
<meta name="theme-color" content="#4188c9"/>
<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"/>
<title>{% if page.title %}{{ page.title }} - {% endif %}{% if layout.title %}{{ layout.title }} - {% endif %}{% if site.title %}{{ site.title }} - {% endif %}{{ site.description }}</title>
{% include_cached layout/css.html %}
{% include_cached layout/js.html %}
</head>
<body class="antialiased{% if page.dark-theme %} theme-dark{% endif %}{% if layout.body-class %} {{ layout.body-class }}{% endif %}{% if page.body-class %} {{ page.body-class }}{% endif %}">
{{ content}}
{% if site.debug %}
{% if jekyll.environment == 'development' %}
{% include layout/debug.html %}
{% endif %}
{% endif %}
</body>
</html>