blow/templates/layout.html

129 lines
7.2 KiB
HTML
Raw Normal View History

2021-11-03 19:41:31 +00:00
<!doctype html>
2021-11-04 21:45:53 +00:00
<html lang="{{lang}}">
2021-11-03 19:41:31 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2021-11-06 12:17:14 +00:00
<link href="/css/main.css" rel="stylesheet">
2021-11-03 19:41:31 +00:00
<title>
{% block title %}
{{ config.title }}
{% endblock title %}
</title>
</head>
<body>
2021-11-04 19:42:29 +00:00
<!------------- NAVBAR ------------->
<!-- This example requires Tailwind CSS v2.0+ -->
2021-11-06 14:27:45 +00:00
<nav class="bg-gray-200 dark:bg-gray-800">
2021-11-04 19:42:29 +00:00
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
<div class="relative flex items-center justify-between h-16">
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
<!-- Mobile menu button-->
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<!--
Icon when menu is closed.
Heroicon name: outline/menu
Menu open: "hidden", Menu closed: "block"
-->
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
<!--
Icon when menu is open.
Heroicon name: outline/x
Menu open: "block", Menu closed: "hidden"
-->
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
<div class="flex-shrink-0 flex items-center">
2021-11-06 14:26:13 +00:00
<span class="text-xl text-gray-800 dark:text-white">{{config.extra.zt.navbar_title}}</span>
2021-11-05 17:55:23 +00:00
<!-- <img class="block lg:hidden h-8 w-auto" src="https://tailwindui.com/img/logos/workflow-mark-indigo-500.svg" alt="Workflow">
<img class="hidden lg:block h-8 w-auto" src="https://tailwindui.com/img/logos/workflow-logo-indigo-500-mark-white-text.svg" alt="Workflow"> -->
2021-11-04 19:42:29 +00:00
</div>
<div class="hidden sm:block sm:ml-6">
2021-11-04 21:45:53 +00:00
<div id="nav-links" class="flex space-x-4">
2021-11-04 19:42:29 +00:00
<!-- Current: "bg-gray-900 text-white", Default: "text-gray-300 hover:bg-gray-700 hover:text-white" -->
2021-11-04 21:49:50 +00:00
{% for item in config.extra.zt.navbar_items %}
2021-11-04 21:45:53 +00:00
{% if lang == item.code %}
{% for nav in item.nav_items %}
2021-11-06 14:25:25 +00:00
<a href="{{ nav.url | replace(from='$URL', to=config.base_url) }}" class="text-gray-800 dark:text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">{{ nav.name }}</a>
2021-11-04 21:45:53 +00:00
{% endfor %}
{% endif %}
{% endfor %}
2021-11-04 19:42:29 +00:00
</div>
</div>
</div>
<div class="absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0">
2021-11-06 14:27:45 +00:00
<button id="switch-theme" type="button" class="bg-gray-200 text-gray-800 hover:text-gray-900 dark:bg-gray-800 dark:text-gray-400 dark:hover:text-white p-1 rounded-full focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white">
2021-11-05 18:14:48 +00:00
<span class="sr-only">Switch Theme</span>
<!-- Heroicon name: outline/light -->
2021-11-06 11:50:13 +00:00
<svg id="light" class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2021-11-05 18:14:48 +00:00
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"></path>
</svg>
<!-- Heroicon name: outline/dark -->
2021-11-06 11:50:13 +00:00
<svg id="dark" class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2021-11-05 18:14:48 +00:00
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"></path>
2021-11-04 19:42:29 +00:00
</svg>
</button>
<!-- Profile dropdown -->
2021-11-05 18:14:48 +00:00
<!-- <div class="ml-3 relative">
2021-11-04 19:42:29 +00:00
<div>
<button type="button" class="bg-gray-800 flex text-sm rounded-full focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white" id="user-menu-button" aria-expanded="false" aria-haspopup="true">
<span class="sr-only">Open user menu</span>
<img class="h-8 w-8 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
</button>
2021-11-05 18:14:48 +00:00
</div> -->
2021-11-04 19:42:29 +00:00
<!--
Dropdown menu, show/hide based on menu state.
Entering: "transition ease-out duration-100"
From: "transform opacity-0 scale-95"
To: "transform opacity-100 scale-100"
Leaving: "transition ease-in duration-75"
From: "transform opacity-100 scale-100"
To: "transform opacity-0 scale-95"
-->
2021-11-06 10:56:19 +00:00
<!-- Active: "bg-gray-100", Not Active: "" -->
<!-- <div class="origin-top-right absolute right-0 mt-2 w-48 rounded-md shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none" role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" tabindex="-1">
2021-11-04 19:42:29 +00:00
<a href="#" class="block px-4 py-2 text-sm text-gray-700" role="menuitem" tabindex="-1" id="user-menu-item-0">Your Profile</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700" role="menuitem" tabindex="-1" id="user-menu-item-1">Settings</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700" role="menuitem" tabindex="-1" id="user-menu-item-2">Sign out</a>
2021-11-06 10:56:19 +00:00
</div> -->
2021-11-04 19:42:29 +00:00
</div>
</div>
</div>
</div>
<!-- Mobile menu, show/hide based on menu state. -->
<div class="sm:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1">
<!-- Current: "bg-gray-900 text-white", Default: "text-gray-300 hover:bg-gray-700 hover:text-white" -->
<a href="#" class="bg-gray-900 text-white block px-3 py-2 rounded-md text-base font-medium" aria-current="page">Dashboard</a>
<a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Team</a>
<a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Projects</a>
<a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Calendar</a>
</div>
</div>
</nav>
2021-11-04 18:45:17 +00:00
{% block content %}
{% endblock content %}
2021-11-04 21:45:53 +00:00
<script defer src="/js/main.js"></script>
2021-11-04 18:53:17 +00:00
{% if config.extra.zt.enable_search %}
2021-11-03 19:41:31 +00:00
<script defer src="/js/search.js"></script>
{% endif %}
</body>
</html>