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

404.html « layouts - github.com/softwareyoga/ronu-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d36c3727a83889d05446f75ffc298d323619a102 (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
  Oops! Sorry. The page you are looking for does not exist. Browse to the <a href='{{ .Site.BaseURL }}'>Home page</a> or have a look at a few of the latest posts..

  <ul>
  {{ range first 10 (where .Site.RegularPages "Type" "in" site.Params.mainSections) }}
    <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
  {{ end }}  
  </ul>
{{ end }}