Skip to content
Snippets Groups Projects
Commit dcece01a authored by Nils Windisch's avatar Nils Windisch :coffee:
Browse files

feat: add version number to page

closes #106
parent 7f4c06e8
No related branches found
No related tags found
1 merge request!61feat: add version number to page
Pipeline #219773 passed
...@@ -85,13 +85,29 @@ ...@@ -85,13 +85,29 @@
cols="12" cols="12"
> >
<!-- TODO: provide translation --> <!-- TODO: provide translation -->
© {{ new Date().getFullYear() }} – Ahiqar - The syriac and arabic Ahiqar Texts © {{ new Date().getFullYear() }} – Ahiqar - The syriac and arabic Ahiqar Texts (<a href="https://gitlab.gwdg.de/subugoe/ahiqar/website/-/blob/main/CHANGELOG.md" class="grey--text text--lighten-3 text-decoration-none" target="_blank">v{{ version }}</a>)
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-footer> </v-footer>
</template> </template>
<script>
import { version } from '../../../package.json';
export default {
data() {
return {
version: '',
}
},
created() {
this.version = version;
}
}
</script>
<style lang="scss" scoped> <style lang="scss" scoped>
.v-tab { .v-tab {
font-size: 75%; font-size: 75%;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment