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

Merge branch 'feature/#36-ahikar-links' into 'develop'

Feature/#36 Link Website to TIDO with syriac/arabic collection

See merge request !20
parents 6b2dfe46 1753b998
No related branches found
No related tags found
1 merge request!20Feature/#36 Link Website to TIDO with syriac/arabic collection
Pipeline #204179 passed
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
<v-list-item <v-list-item
v-for="(item, index) in editions" v-for="(item, index) in editions"
:key="index" :key="index"
:to="item.to" :href="item.to"
> >
<v-list-item-title>{{ item.title }}</v-list-item-title> <v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item> </v-list-item>
...@@ -89,8 +89,8 @@ ...@@ -89,8 +89,8 @@
export default { export default {
data: () => ({ data: () => ({
editions: [ editions: [
{ title: 'Syriac Texts', to: '/' }, { title: 'Syriac Texts', to: 'https://ahikar-dev.sub.uni-goettingen.de/syriac' },
{ title: 'Arabic and Kashuni Texts', to: '/' }, { title: 'Arabic and Kashuni Texts', to: 'https://ahikar-dev.sub.uni-goettingen.de/arabic-karshuni' },
], ],
metaEdition: [ metaEdition: [
{ title: 'Manuscripts', to: '/manuscripts.html' }, { title: 'Manuscripts', to: '/manuscripts.html' },
......
<template> <template>
<v-container class="pa-0 pb-8"> <v-container class="pa-0 pb-8">
<v-layout row wrap align-center px-4> <v-layout row wrap align-center px-4>
<v-chip <v-chip
link link
color="primary" color="primary"
label label
class="mr-3" class="mr-3"
> >
<router-link <a
to="/syriac.html"
tabindex="0"
role="link"
class="white--text text-overline text-decoration-none text-uppercase" class="white--text text-overline text-decoration-none text-uppercase"
href="https://ahikar-dev.sub.uni-goettingen.de/syriac"
role="link"
tabindex="0"
> >
<!-- TODO: provide translation --> <!-- TODO: provide translation -->
Syriac Syriac
</router-link> </a>
</v-chip> </v-chip>
<v-chip <v-chip
link link
color="primary" color="primary"
label label
class="mr-3" class="mr-3"
> >
<router-link <a
to="/arabic.html"
tabindex="0"
role="link"
class="white--text text-overline text-decoration-none text-uppercase" class="white--text text-overline text-decoration-none text-uppercase"
href="https://ahikar-dev.sub.uni-goettingen.de/arabic-karshuni"
role="link"
tabindex="0"
> >
<!-- TODO: provide translation --> <!-- TODO: provide translation -->
Arabic Arabic
</router-link> </a>
</v-chip> </v-chip>
</v-layout> </v-layout>
</v-container> </v-container>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment