63 lines
2.5 KiB
HTML
63 lines
2.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.Language }}">
|
||
|
<head>
|
||
|
<title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title>
|
||
|
<link rel="canonical" href="{{ .Site.BaseURL }}">
|
||
|
<link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
|
||
|
<link rel='stylesheet' type='text/css' href='/style.css'>
|
||
|
{{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">{{ end -}}
|
||
|
<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
|
||
|
{{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">{{ end -}}
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta name="robots" content="index, follow">
|
||
|
<meta charset="utf-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- Left Banner -->
|
||
|
<div class="banner-left"></div>
|
||
|
|
||
|
<!-- Main Content Wrapper -->
|
||
|
<div class="content-wrapper">
|
||
|
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
|
||
|
|
||
|
<!-- Main Content Area -->
|
||
|
<main>
|
||
|
<header><h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1></header>
|
||
|
<article>
|
||
|
{{ block "main" . }}
|
||
|
{{ .Content }}
|
||
|
{{ end }}
|
||
|
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . }}{{ end -}}
|
||
|
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
|
||
|
</article>
|
||
|
</main>
|
||
|
|
||
|
<!-- Language Switcher Footer -->
|
||
|
<footer class="language-switcher">
|
||
|
{{ block "footer" . }}
|
||
|
<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
|
||
|
<footer class="language-switcher">
|
||
|
{{ if eq .Language.Lang "en" }}
|
||
|
<span class="flag active">🇬🇧</span>
|
||
|
<a href="{{ replace .Permalink "/en/" "/ru/" }}" class="flag">🇷🇺</a>
|
||
|
{{ else }}
|
||
|
<a href="{{ replace .Permalink "/ru/" "/en/" }}" class="flag">🇬🇧</a>
|
||
|
<span class="flag active">🇷🇺</span>
|
||
|
{{ end }}
|
||
|
</footer>
|
||
|
{{- if .Param "showrss" }}
|
||
|
<br><br>
|
||
|
<a href="/index.xml">
|
||
|
<img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates.">
|
||
|
</a>
|
||
|
<p>The side banners are fragments of Blooming Lilacs by Kiriak Konstantinovich Kostandi</p>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
</footer>
|
||
|
</div>
|
||
|
|
||
|
<!-- Right Banner -->
|
||
|
<div class="banner-right"></div>
|
||
|
</body>
|
||
|
</html>
|