mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
pug to html
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user