documentation/layouts/_default/baseof.html

34 lines
838 B
HTML
Raw Normal View History

2018-09-23 00:14:25 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "head" }}
2018-09-26 00:35:55 +02:00
<title>{{ block "title" . }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
<meta property="og:type" content="article">
<meta property="og:url" content="{{ .Permalink }}">
2018-09-23 00:14:25 +02:00
{{ with .Description }}
<meta name="description" content="{{ . }}">
2018-09-26 00:35:55 +02:00
<meta property="og:description" content="{{ . }}">
<meta name="twitter:description" content="{{ . }}">
2018-09-23 00:14:25 +02:00
{{ end }}
2018-09-26 00:35:55 +02:00
<meta name="twitter:title" content="{{ .Title }}">
2020-09-23 03:22:34 +02:00
<meta name="twitter:site" content="@joinmastodon">
2018-09-26 00:35:55 +02:00
2018-09-23 00:14:25 +02:00
<link rel="canonical" href="{{ .Permalink }}">
</head>
<body>
<div class="container sidebar-layout">
<nav class="sidebar">{{ partial "sidebar" . }}</nav>
<main>{{ block "main" . }}{{ end }}</main>
</div>
{{ partial "footer" . }}
</body>
</html>