pug to html

This commit is contained in:
Matteo Pagliazzi
2019-10-12 16:33:05 +02:00
parent 88243a32fa
commit 07349c70bc
236 changed files with 16708 additions and 9648 deletions

View File

@@ -1,16 +1,22 @@
<template lang="pug">
.row
.col-12.text-center
// @TODO i18n. How to setup the strings with the router-link inside?
img.not-found-img(src='~@/assets/images/404.png')
h1.not-found Sometimes even the bravest adventurer gets lost.
h2.not-found Looks like this link is broken or the page may have moved, sorry!
h2.not-found
| Head back to the
<router-link to="/">Homepage</router-link>
| or
<router-link :to="contactUsLink">Contact Us</router-link>
| about the issue.
<template>
<div class="row">
<div class="col-12 text-center">
<!-- @TODO i18n. How to setup the strings with the router-link inside?--><img
class="not-found-img"
src="~@/assets/images/404.png"
><h1 class="not-found">
Sometimes even the bravest adventurer gets lost.
</h1><h2 class="not-found">
Looks like this link is broken or the page may have moved, sorry!
</h2><h2 class="not-found">
Head back to the<router-link to="/">
Homepage
</router-link>or<router-link :to="contactUsLink">
Contact Us
</router-link>about the issue.
</h2>
</div>
</div>
</template>
<script>