diff --git a/components/Nav/Drawer.vue b/components/Nav/Drawer.vue index da27d8d1d5b978c88dda4f82f19c0428a2dfcf98..56c60e841346e8c6b9308a705551c7067d45ad69 100644 --- a/components/Nav/Drawer.vue +++ b/components/Nav/Drawer.vue @@ -13,18 +13,18 @@ import { useDisplay, useTheme } from "vuetify"; const { navigation } = useContent(); // const drawer = ref(true); -// const computedNavigation = computed(() => { -// return navigation.value -// .filter(({ _path }) => { -// return _path !== "/refseq"; -// }) +const computedNavigation = computed(() => { + return navigation.value + .filter(({ _path }) => { + return _path !== "/refseq" || _path !== "/predicted-structure"; + }) -// }); +}); </script> <template> <v-navigation-drawer :model-value="drawer" :border="1" color="background"> <v-list nav density="compact" :lines="false"> - <NavNavigation :navigation="navigation" /> + <NavNavigation :navigation="computedNavigation" /> </v-list> </v-navigation-drawer> </template> \ No newline at end of file diff --git a/content/4.refseq.md b/content/4.refseq.md index f55ac77a3f87a98d2d22d0302d08f8f407898798..58938a5d35d7468205c81ce73ca86a082dda3140 100644 --- a/content/4.refseq.md +++ b/content/4.refseq.md @@ -1,12 +1,8 @@ --- layout: db -navigation: false --- - - - ::refseq-db :: diff --git a/content/5.predicted-structure.md b/content/5.predicted-structure.md index 859a7b74f16fa183f2e26839650e482ef3be0eec..d0350a3f72f0b9ebec5a488954dcd683925f8fb5 100644 --- a/content/5.predicted-structure.md +++ b/content/5.predicted-structure.md @@ -1,9 +1,7 @@ --- layout: db -navigation: false --- - ::structure-db :: \ No newline at end of file diff --git a/layouts/db.vue b/layouts/db.vue index 55982ec2cfe62124b994b2c97d1cd948803bebab..7e7368c9bab0c9f23f933385d8a8fb62f7436005 100644 --- a/layouts/db.vue +++ b/layouts/db.vue @@ -6,8 +6,6 @@ const facetStore = useFacetsStore() </script> <template> <LayoutWrapper :fluid="true" :toc="false" :edit="false" :nav-drawer="false"> - - <slot /> </LayoutWrapper> </template> diff --git a/pages/[...slug].vue b/pages/[...slug].vue index 7fa8469ba5e0b03e3c1f21cd3218aac9afeffd25..6afff5a4bfe86b353f2c4aefbb20a06983900740 100644 --- a/pages/[...slug].vue +++ b/pages/[...slug].vue @@ -1,8 +1,6 @@ <template> - - <v-card-text> - <ContentDoc /> - </v-card-text> - + <v-card-text> + <ContentDoc /> + </v-card-text> </template>