-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
31 lines (29 loc) · 910 Bytes
/
404.html
File metadata and controls
31 lines (29 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{{ partial "head" . }}
{{ partial "header" . }}
<div id="container">
<div class="outer">
{{ partial "profile" . }}
<section id="main">
<article class="article article-type-post" itemscope="" itemprop="blogPost">
<div class="article-inner">
<div class="article-entry" itemprop="articleBody">
<p>
<center>
<h1>
{{with .Site.Data.l10n.page_not_found.title}}{{.}}{{end}}
</h1>
<h3>
{{with .Site.Data.l10n.page_not_found.subtitle}}{{.}}{{end}}
</h3>
</center>
</p>
</div>
</div>
</article>
</section>
{{ partial "sidebar" . }}
</div>
</div>
{{ partial "footer" . }}
</body>
</html>