mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* 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
26 lines
738 B
Vue
26 lines
738 B
Vue
<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>
|