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

404.html « layouts - gitlab.com/kskarthik/monopriv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 225fe3d3db7fba422212c92cadf217f18951d558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{define "main"}}
<div class="container text-center mt-5">
  <h1>{{":warning:" | emojify}}</h1>
  <h2>Oops!</h2>
      <h5 class='mb-3'>The page does not exist!</h5>
    <a href='{{ "/" | absURL }}'><button class="btn btn-warning">GO TO HOME</button></a>
    <br>
    {{ if .Site.Params.search.enabled}}
      {{partial "search.html" . }}
    {{end}}
</div>
{{ end }}