Skip to content
Snippets Groups Projects
Commit 021d611b authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

WIP

parent 7286f1e4
No related branches found
No related tags found
No related merge requests found
Pipeline #112559 passed
<template> <template>
<v-app-bar :elevation="0" border density="prominent"> <v-app-bar :elevation="0" border density="prominent" scroll-behavior="hide">
<template #prepend> <template #prepend>
<v-app-bar-nav-icon @click.stop="drawer = !drawer"></v-app-bar-nav-icon> <v-app-bar-nav-icon @click.stop="drawer = !drawer"></v-app-bar-nav-icon>
<!-- <Logo height="45px" /> --> <!-- <Logo height="45px" /> -->
</template> </template>
<v-app-bar-title> <v-app-bar-title>
<span class="d-flex align-center"> <span class="d-flex align-center">
<span class="text-medium-emphasis" Knowledge database of all known anti-phage systems by
>Knowledge database of all known anti-phage systems by </span
><span></span>
</span> </span>
</v-app-bar-title> </v-app-bar-title>
<template #append v-if="!mobile"> <template #append v-if="!mobile">
<v-btn <v-btn v-for="section in sections" :key="section.id" color="primary" :href="section.href">
v-for="section in sections"
:key="section.id"
color="primary"
:href="section.href"
>
{{ section.label }} {{ section.label }}
</v-btn> </v-btn>
<v-btn <v-btn @click="toggleTheme" color="primary" :icon="theme.global.current.value.dark ? 'md:light_mode' : 'md:dark_mode'
@click="toggleTheme" "></v-btn>
color="primary"
:icon="
theme.global.current.value.dark ? 'md:light_mode' : 'md:dark_mode'
"
></v-btn>
</template> </template>
</v-app-bar> </v-app-bar>
<v-navigation-drawer v-model="drawer" :border="1"> <v-navigation-drawer v-model="drawer" :border="1">
...@@ -70,7 +58,7 @@ const sections = ref([ ...@@ -70,7 +58,7 @@ const sections = ref([
href: runtimeConfig.public.defenseFinderWebservice, href: runtimeConfig.public.defenseFinderWebservice,
}, },
{ id: "refseq", label: "REFSEQ", href: refinedRefSeqPath.value }, { id: "refseq", label: "REFSEQ", href: refinedRefSeqPath.value },
{ id: "toto", label: "Help", href: "/help" }, { id: "help", label: "Help", href: "/help" },
]); ]);
const drawer = ref(true); const drawer = ref(true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment