13 lines
423 B
HTML
13 lines
423 B
HTML
|
{{ 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">
|
||
|
<h1 class="article-title">Not Found</h1>
|
||
|
<h2 class="article-subtitle">This page does not exist.</h2>
|
||
|
</div>
|
||
|
</main>
|
||
|
</div>
|
||
|
{{ end }}
|