2016-09-01 16:37:27 +02:00
|
|
|
<!DOCTYPE html>
|
2016-10-04 10:22:53 +02:00
|
|
|
<html lang="{{ .Lang }}">
|
2016-09-01 16:37:27 +02:00
|
|
|
|
|
|
|
<head>
|
2016-09-26 08:23:13 +02:00
|
|
|
{{ partial "head-meta.html" . }}
|
2016-09-01 16:37:27 +02:00
|
|
|
|
|
|
|
<base href="{{ .Site.BaseURL }}">
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
|
|
|
|
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
|
|
|
|
|
|
|
{{ "<!-- combined, minified CSS -->" | safeHTML }}
|
|
|
|
<link href="{{ .Site.BaseURL }}css/style.css" rel="stylesheet">
|
2016-09-19 09:00:28 +02:00
|
|
|
|
2016-10-05 14:29:16 +02:00
|
|
|
{{ "<!-- RSS 2.0 feed -->" | safeHTML }}
|
|
|
|
<link href="{{ .Site.RSSLink }}" type="application/rss+xml" rel="alternate">
|
2016-10-15 04:10:01 +02:00
|
|
|
|
|
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
2016-09-01 16:37:27 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="blog-masthead">
|
|
|
|
<div class="container">
|
|
|
|
<nav class="nav blog-nav">
|
2016-10-05 14:29:16 +02:00
|
|
|
<a class="nav-link {{ if .IsHome }}active{{ end }}" href="{{ .Site.BaseURL | absLangURL }}">{{ i18n "home" }}</a>
|
2016-09-14 22:42:59 +02:00
|
|
|
{{ range where .Site.Pages "Type" "!=" "post" }}
|
|
|
|
<a class="nav-link" href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
{{ end }}
|
2016-09-01 16:37:27 +02:00
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-09-02 14:56:40 +02:00
|
|
|
<header class="blog-header">
|
2016-09-01 16:37:27 +02:00
|
|
|
<div class="container">
|
2016-09-14 11:24:38 +02:00
|
|
|
<h1 class="blog-title"><a href="{{ .Site.BaseURL }}" rel="home">{{ .Site.Title | safeHTML }}</a></h1>
|
2016-09-07 15:47:59 +02:00
|
|
|
{{ if .Site.Params.description }}<p class="lead blog-description">{{ .Site.Params.description | markdownify }}</p>{{ end }}
|
2016-09-01 16:37:27 +02:00
|
|
|
</div>
|
2016-09-02 14:56:40 +02:00
|
|
|
</header>
|
2016-09-01 16:37:27 +02:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-8 blog-main">
|
|
|
|
|
|
|
|
{{ block "main" . }}
|
|
|
|
<!-- The part of the page that begins to differ between templates -->
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</div> {{ "<!-- /.blog-main -->" | safeHTML }}
|
|
|
|
|
2016-09-22 08:19:20 +02:00
|
|
|
{{ if and (.Site.Params.sidebar) (not .Site.Params.sidebar.hide) }}
|
2016-09-01 16:37:27 +02:00
|
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</div> {{ "<!-- /.row -->" | safeHTML }}
|
|
|
|
</div> {{ "<!-- /.container -->" | safeHTML }}
|
|
|
|
|
|
|
|
<footer class="blog-footer">
|
|
|
|
<p>
|
2016-10-09 12:36:07 +02:00
|
|
|
{{ if .Site.Copyright }}
|
|
|
|
{{ .Site.Copyright | markdownify }}
|
|
|
|
{{ else }}
|
2016-10-09 12:38:49 +02:00
|
|
|
Blog template created by <a href="https://twitter.com/mdo">@mdo</a>, ported to Hugo by <a href='https://twitter.com/mralanorth'>@mralanorth</a>.
|
2016-10-09 12:36:07 +02:00
|
|
|
{{ end }}
|
2016-09-01 16:37:27 +02:00
|
|
|
</p>
|
2016-10-09 12:45:38 +02:00
|
|
|
<p>
|
|
|
|
<a href="#">Back to top</a>
|
|
|
|
</p>
|
2016-09-01 16:37:27 +02:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|