ghost-theme-sd.ai/default.hbs

51 lines
2.1 KiB
Handlebars
Raw Normal View History

2023-07-05 13:43:09 +01:00
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
{{!-- Basic meta - advanced meta is output with {{ghost_head}} below --}}
<title>{{meta_title}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-10-17 14:18:00 +01:00
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/webfonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/webfonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin>
2023-10-17 16:42:16 +01:00
<link rel="me" href="https://social.sd.ai/@s" />
2023-07-05 13:43:09 +01:00
{{!-- Preload main styles and scripts for better performance --}}
<link rel="preload" as="style" href="{{asset "built/screen.css"}}">
2023-09-15 10:47:56 +01:00
<link rel="preload" as="script" href="{{asset "built/source.js"}}">
2023-07-05 13:43:09 +01:00
{{!-- Theme assets - use the {{asset}} helper to reference styles & scripts, this will take care of caching and cache-busting automatically --}}
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}">
{{!-- This tag outputs all your advanced SEO meta, structured data, and other important settings, it should always be the last tag before the closing head tag --}}
{{ghost_head}}
</head>
2023-10-17 14:46:43 +01:00
<body class="{{body_class}} has-sans-title has-sans-body">
2023-07-05 13:43:09 +01:00
<div class="gh-viewport">
2023-10-17 14:18:00 +01:00
2023-07-05 13:43:09 +01:00
{{> "components/navigation" navigationLayout=@custom.navigation_layout}}
2023-07-13 07:56:13 +01:00
{{{body}}}
2023-10-17 14:18:00 +01:00
2023-07-10 07:12:45 +01:00
{{> "components/footer"}}
2023-10-17 14:18:00 +01:00
2023-07-05 13:43:09 +01:00
</div>
{{#is "post, page"}}
{{> "lightbox"}}
{{/is}}
2023-07-05 13:43:09 +01:00
{{!-- Scripts - handle responsive videos, infinite scroll, and navigation dropdowns --}}
2023-09-15 10:47:56 +01:00
<script src="{{asset "built/source.js"}}"></script>
2023-07-05 13:43:09 +01:00
{{!-- Ghost outputs required functional scripts with this tag, it should always be the last thing before the closing body tag --}}
{{ghost_foot}}
</body>
</html>