From a49e42e109d886a95f6a1160d603e83b2dcce9d2 Mon Sep 17 00:00:00 2001
From: ManikanthDindigala <dindigala@sub.uni-goettingen.de>
Date: Tue, 15 Jun 2021 09:35:49 +0200
Subject: [PATCH] feat: implementation of ahikar links

---
 src/.vuepress/components/Bar.vue | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/.vuepress/components/Bar.vue b/src/.vuepress/components/Bar.vue
index 258c01d..414a4de 100644
--- a/src/.vuepress/components/Bar.vue
+++ b/src/.vuepress/components/Bar.vue
@@ -53,9 +53,10 @@
         <v-list-item
           v-for="(item, index) in editions"
           :key="index"
-          :to="item.to"
         >
-          <v-list-item-title>{{ item.title }}</v-list-item-title>
+          <a :href="item.to">
+            <v-list-item-title>{{ item.title }}</v-list-item-title>
+          </a>
         </v-list-item>
       </v-list>
     </v-menu>
@@ -89,8 +90,8 @@
   export default {
     data: () => ({
       editions: [
-        { title: 'Syriac Texts', to: '/' },
-        { title: 'Arabic and Kashuni Texts', to: '/' },
+        { title: 'Syriac Texts', to: 'https://ahikar-dev.sub.uni-goettingen.de/syriac' },
+        { title: 'Arabic and Kashuni Texts', to: 'https://ahikar-dev.sub.uni-goettingen.de/arabic-karshuni' },
       ],
       metaEdition: [
         { title: 'Manuscripts', to: '/manuscripts.html' },
-- 
GitLab