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

404.html « layouts - github.com/10mohi6/hugo-theme-simple-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b2d353600671dee3303d2da290d660e16f1a0be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ partial "header.html" . }}
<header class="text-center bg-dark pt-5 pb-5">
  <h1 class="text-white pt-5 pb-3"><a href="{{ .Site.BaseURL }}" class="text-reset">{{ .Site.Title }}</a></h1>
  <p class="pb-5"></p>
</header>
<div class="container pt-3">
  <div class="row pt-3 pb-3">
    <div class="col-12">
      <p>404 page not found</p>
    </div>
  </div>
</div>
{{ partial "footer.html" . }}