Welcome to mirror list, hosted at ThFree Co, Russian Federation.

404.html « layouts - github.com/mazgi/hugo-theme-techlog-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4436a15a380b6cd445a6734b3bedaf1b97fa44a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ partial "header.html" . }}
<div class="row">
  <div class="col-lg-9">
    <h1>404</h1>
  </div>
  <div class="col-lg-3">
    <h4>Recents</h4>
    <ul>
      {{ $recents := .Site.Pages | first 8 }}
      {{ with $recents }}
      {{ range . }}
      <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
      {{ end }}
      {{ end }}
    </ul>
  </div>
</div>
{{ partial "footer.html" . }}