-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.hbs
46 lines (46 loc) · 2.09 KB
/
default.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="{{@site.locale}}" x-data="{ darkMode: localStorage.getItem('dark') === 'true' }" x-init="$watch('darkMode', val => localStorage.setItem('dark', val))" x-bind:class="{ 'dark': darkMode }">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{meta_title}}</title>
<link rel="stylesheet" href="{{asset "assets/built/screen.css"}}">
<script defer src="https://unpkg.com/alpinejs@3.2.3/dist/cdn.min.js"></script>
{{ghost_head}}
</head>
<body class="bg-gray-50 dark:bg-gray-800 text-gray-700 dark:text-gray-200">
<nav class="px-4 py-5 mx-auto sm:max-w-xl md:max-w-full md:px-24 lg:max-w-screen-xl lg:px-8">
<div class="relative flex items-center justify-between">
<a href="{{@site.url}}" aria-label="{{@site.title}}" title="{{@site.title}}" class="inline-flex items-center">
{{> "decorators/svg-logo-primary"}}
</a>
{{navigation}}
</div>
</nav>
{{{body}}}
<footer class="clear-both bg-gray-900">
<div class="px-4 pt-16 mx-auto sm:max-w-xl md:max-w-full md:px-24 lg:max-w-screen-xl lg:px-8">
<div class="grid row-gap-10 mb-8 lg:grid-cols-6">
{{navigation type="secondary"}}
</div>
<div class="flex flex-col justify-between pt-5 pb-10 border-t border-gray-800 sm:flex-row">
<p class="text-sm text-gray-400">Design by <br /><a class="text-accent-400 hover:text-tertiary-400" href="https://ahuman.online">A Human Online LLC</a>.</p><p class="text-sm text-gray-400">© Copyright {{date format="YYYY"}} <br /><span class="text-accent-400 hover:text-tertiary-400">Ultrasound Guidance LLC</span>. <br />All rights reserved.</p><p class="text-sm text-gray-400"> </p>
</div>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous">
</script>
<script src="{{asset "assets/built/sonar.js"}}"></script>
<script>
$(document).ready(function () {
// FitVids - Makes video embeds responsive
$('.gh-content').fitVids();
});
</script>
{{{block "index-for-tags"}}}
{{ghost_foot}}
</body>
</html>