Browse Source

Link error pages with home page

pull/37/head
Krzysztof Piasecki 8 years ago
parent
commit
9c69acb9ce
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/404.html
  2. +1
    -1
      src/500.html

+ 1
- 1
src/404.html View File

@ -16,7 +16,7 @@
<h3 class='mB-10 fsz-lg c-grey-900 tt-c'>Oops Page Not Found</h3>
<p class='mB-30 fsz-def c-grey-700'>The page you are looking for does not exist or has been moved.</p>
<div>
<a href='' type='primary' class='btn btn-primary'>Go to Home</a>
<a href="index.html" type='primary' class='btn btn-primary'>Go to Home</a>
</div>
</div>
</div>


+ 1
- 1
src/500.html View File

@ -16,7 +16,7 @@
<h3 class='mB-10 fsz-lg c-grey-900 tt-c'>Internal server error</h3>
<p class='mB-30 fsz-def c-grey-700'>Something goes wrong with our servers, please try again later.</p>
<div>
<a href='' type='primary' class='btn btn-primary'>Go to Home</a>
<a href="index.html" type='primary' class='btn btn-primary'>Go to Home</a>
</div>
</div>
</div>


Loading…
Cancel
Save