24 lines
720 B
HTML
24 lines
720 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">
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
</header>
|
|
{{ if isset .Params "featuredimage" }}
|
|
<figure class="post-figure">
|
|
<img src="{{ .Site.BaseURL }}/{{.Params.featuredimage }}">
|
|
</figure>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</article>
|
|
</main>
|
|
<nav class="end-nav side-padding">
|
|
{{ partial "home-card.html" . }}
|
|
</nav>
|
|
{{ partial "scripts.html" . }}
|
|
</body>
|
|
</html> |