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

404.html « layouts - github.com/zerostaticthemes/hugo-serif-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edd821d9a6d3280366cbc1218392f1ebef8f68d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <meta http-equiv="x-ua-compatible" content="ie=edge">
  <title>Page Not Found</title>
  <meta name="description" content="">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <link href='/css/style.min.css' rel='stylesheet' />

</head>

<body>
  <div id="wrapper" class="wrapper">

    <div class="container pt-9 pb-9 pt-md-13 pb-md-13">
      <div class="row justify-content-center align-content-between">
        <div class="col-9 text-center">
          <h1 class="display-1 text-primary mb-4">Page not found</h1>
        </div>
        <div class="col-9 text-center mb-2">
          <a href="/" class="btn btn-primary">Home</a>
        </div>
        <div class="col-9 text-center mb-2">
          <a href="/contact" class="btn btn-primary">Contact Us</a>
        </div>
      </div>
    </div>

  </div>
</body>

</html>