Fix template indentation

Fix indentation for templates changed in 3cec621. This is a
separate commit as it makes for diffs that are easier to read.
This commit is contained in:
Jack Taylor 2017-04-10 18:41:02 +09:00
commit 0df40cf71e
7 changed files with 133 additions and 135 deletions

View file

@ -1,11 +1,11 @@
{{ define "header" }}<!-- No header on 404 pages -->{{ end }}
{{ define "main" }}
<div role="main" class="container main-content">
<div class="text-center">
<h1>{{ i18n "pageNotFound" }}</h1>
<br/>
<img src="{{ .Site.BaseURL }}/img/404-southpark.jpg" />
</div>
<div role="main" class="container main-content">
<div class="text-center">
<h1>{{ i18n "pageNotFound" }}</h1>
<br/>
<img src="{{ .Site.BaseURL }}/img/404-southpark.jpg" />
</div>
</div>
{{ end }}