pepperminty-wiki-website/src/_includes/layouts/main.html

36 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>{{ title }}</title>
<link rel="icon" href="static/images/logo.svg" />
<!-- OpenGraph -->
<meta property="og:title" content="Pepperminty Wiki" />
<meta property="og:type" content="website" />
<!-- We wanted pepperminty.wiki, but it's too expensive :-( -->
<meta property="og:url" content="https://peppermint.mooncarrot.space/" />
<meta property="og:image" content="https://peppermint.mooncarrot.space/static/images/page-light.png" />
<meta property="og:description" content="Pepperminty Wiki is a complete wiki engine contained in a single file, inspired by @am2064's Minty Wiki. It's packed with features and open source too (under MPL-2.0)!" />
<!-- Twitter Cards -->
<meta property="twitter:card" content="summary" />
<meta property="twitter:site" content="@SBRLabs" />
<meta property="twitter:title" content="Pepperminty Wiki" />
<meta property="twitter:description" content="Pepperminty Wiki is a complete wiki engine contained in a single file, inspired by @am2064's Minty Wiki. It's packed with features and open source too (under MPL-2.0)!" />
<meta property="twitter:image" content="https://peppermint.mooncarrot.space/static/images/page-light.png" />
</head>
<body>
<h1>
<img src="static/images/logo.svg" alt="logo" class="logo large" aria-hidden="true" />
{{ title }}
</h1>
{{ content }}
<!---------------->
<link rel="stylesheet" href="static/main.css" />
</body>
</html>