23 lines
706 B
HTML
23 lines
706 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}" dir="ltr">
|
|
{{ partial "head.html" . }}
|
|
<body class="single-body">
|
|
{{ partial "nav-bar.html" . }}
|
|
<main class="content side-text-padding">
|
|
<article class="post {{ if ne .Params.dropcap false }}dropcase{{ end }}">
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
</header>
|
|
<img src="https://http.cat/404.jpg" />
|
|
<h2 id="title"><a href="{{ "/" | relURL }}">Go Home</a></h2>
|
|
</article>
|
|
{{ template "_internal/disqus.html" . }}
|
|
</main>
|
|
<nav class="end-nav side-padding">
|
|
</nav>
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "scripts.html" . }}
|
|
</body>
|
|
</html>
|