BoxyBSD/website/_templates/page.html

81 lines
2.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ title }} | {{ subtitle }}</title>
<meta name="description" content="{{ meta_description }}"/>
<meta name="keywords" content="{{ keywords }}"/>
<meta name="robots" content="{{ robots }}">
<meta property="og:image" content="{{ image_url }}"/>
<meta property="og:title" content="{{ title }}"/>
<meta property="og:description" content="{{ meta_description }}"/>
<meta property="og:image:width" content="{{ image_width }}"/>
<meta property="og:image:height" content="{{ image_height }}"/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="{{ profile_twitter }}" />
<meta name="twitter:title" content="{{ title }}" />
<meta name="twitter:description" content="{{ meta_description }}" />
<meta name="twitter:image" content="{{ image_url }}" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="robots" content="INDEX,FOLLOW">
<meta name="generator" content="manpageblog {{ _version }}" />
<link rel="stylesheet" type="text/css" href="{{ base_path }}/assets/css/{{ theme }}.css">
<link rel="shortcut icon" type="image/png" href="{{ logo_favicon }}"/>
<link rel="icon" type="image/png" href="{{ logo_favicon }}"/>
<link rel="apple-touch-icon" href="{{ logo_apple_touch }}"/>
<link href="{{ profile_mastodon }}" rel="me">
</head>
<body id="{{ slug }}">
<manpage>
<b>NAME</b><br>
</manpage>
<name>
<section>
<span class="name">
{{ name }}
</span>
</section>
</name>
<manpage>
<br><b>OPTIONS</b><br>
</manpage>
<nav>
<section>
<span class="home">
<a href="{{ base_path }}/">[home]</a>
<a href="{{ base_path }}/vserver/">[vserver]</a>
<a href="{{ base_path }}/shell/">[shell]</a>
<a href="{{ base_path }}/status/">[status]</a>
<a href="{{ base_path }}/faq/">[faq]</a>
<a href="{{ base_path }}/abuse/">[abuse]</a>
<a href="{{ base_path }}/sponsors/">[sponsors]</a>
<a href="{{ base_path }}/donate/">[donate]</a>
<a href="{{ base_path }}/contact/">[contact]</a>
</span>
</section>
</nav>
<manpage>
<br><b>CONTENT</b><br>
</manpage>
<main>
{{ content }}
</main>
<footer>
<section>
<p>&copy; {{ current_year }} BoxyBSD - a <a href="https://gyptazy.ch">gyptazy</a> service.
<br><a href="{{ base_path }}/privacy_policy/">[privacy policy]</a> / <a href="{{ base_path }}/imprint/">[imprint]</a></p></p>
</section>
</footer>
</body>
</html>