Hugo-theme-stack/layouts/404.html

13 lines
438 B
HTML
Raw Normal View History

2020-08-22 07:20:08 -04:00
{{ define "body_class" }}2-column{{ end }}
{{ define "main" }}
<div class="container extended flex on-phone--column align-items--flex-start">
{{ partial "sidebar/left.html" . }}
<main class="main full-width">
<div class="not-found-card">
2020-09-09 11:17:09 -04:00
<h1 class="article-title">{{ T "notFoundTitle" }}</h1>
<h2 class="article-subtitle">{{ T "notFoundSubtitle" }}</h2>
2020-08-22 07:20:08 -04:00
</div>
</main>
</div>
{{ end }}