mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
New client statics (#8885)
* Moved static files over to new client * Added statics, fixed translations and update styles * More style and vue fixes * Fixed line endings * Fixed new stuff converasion and help links
This commit is contained in:
25
website/client/components/static/maintenance.vue
Normal file
25
website/client/components/static/maintenance.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template lang="pug">
|
||||
.col-6.offset-3
|
||||
h1 {{ $t('habiticaBackSoon') }}
|
||||
img.img-rendering-auto.center-block.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/assets/scene_maintenance.png')
|
||||
p {{ $t('importantMaintenance') }}
|
||||
p(v-html="$t('twitterMaintenanceUpdates')")
|
||||
ul.lead(style='list-style-position:inside')
|
||||
li {{ $t('noDamageKeepStreaks') }}
|
||||
li {{ $t('veteranPetAward') }}
|
||||
p(v-html="$t('maintenanceMoreInfo', maintenanceMoreInfo)")
|
||||
p.lead {{ $t('thanksForPatience') }}
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
maintenanceMoreInfo: {
|
||||
linkStart: '<a href="/views/static/maintenance-info">',
|
||||
linkEnd: '</a>',
|
||||
},
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user