summaryrefslogtreecommitdiff
path: root/templates/not_found.html.ep
blob: a8eafc0a942b936a7257be973bb7ac36e17ab769 (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
<html>

  <head>
    <meta charset=utf-8>
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>Not Found</title>

    %= stylesheet '/css/my_bulma.css'
  </head>

  <body>
    <section class=hero>
      <div class=hero-body>
        <h1 class=title>
          Not the page you are looking for.
        </h1>
        <p>
          Go back or go to the <%= link_to 'start page' => 'login' %>.
        </p>
      </div>
    </section>
  </body>

</html>