Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • subugoe/ahiqar/website
1 result
Show changes
Commits on Source (3)
node_modules
.vscode/settings.json
.DS_Store
......@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.0.5](https://gitlab.gwdg.de/subugoe/ahiqar/website/compare/v0.0.4...v0.0.5) (2021-06-11)
### Features
* search input field ([e0e13cd](https://gitlab.gwdg.de/subugoe/ahiqar/website/-/commit/e0e13cdb0d9513a8f9fa4e80b2a491d58dd7e806)), closes [#44](https://gitlab.gwdg.de/subugoe/ahiqar/website/-/issues/44)
### Chore
* update .gitignore ([ce3f0dd](https://gitlab.gwdg.de/subugoe/ahiqar/website/-/commit/ce3f0dd28ef1bee182bbc97165a4f3365d2e9cb6))
### [0.0.4](https://gitlab.gwdg.de/subugoe/ahiqar/website/compare/v0.0.3...v0.0.4) (2021-06-11)
......
{
"name": "ahiqar-website",
"version": "0.0.4",
"version": "0.0.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
{
"name": "ahiqar-website",
"version": "0.0.4",
"version": "0.0.5",
"description": "",
"main": "",
"authors": {
......
<template>
<v-card
flat
<v-app-bar
app
flat
color="primary"
>
<v-tabs
align-with-title
hide-slider
background-color="primary"
class="rounded-0"
dark
role="navigation"
>
<v-tab to="/">
Ahiqar
</v-tab>
<v-tab>
<v-menu offset-y>
<template v-slot:activator="{ on, attrs }">
<v-btn
color="primary"
dark
depressed
v-bind="attrs"
v-on="on"
>
Meta Edition
</v-btn>
</template>
<v-list>
<v-list-item
v-for="(item, index) in metaEdition"
:key="index"
:to="item.to"
>
<v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>
</v-tab>
<v-tab>
<v-menu offset-y>
<template v-slot:activator="{ on, attrs }">
<v-btn
color="primary"
dark
depressed
v-bind="attrs"
v-on="on"
>
Editions
</v-btn>
</template>
<v-list>
<v-list-item
v-for="(item, index) in editions"
:key="index"
:to="item.to"
>
<v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>
</v-tab>
<v-tab to="/project.html">
Project
</v-tab>
</v-tabs>
</v-card>
<v-container>
<v-col>
<v-row class="align-center">
<v-btn
depressed
color="primary"
to="/"
class="mr-1"
>Ahiqar</v-btn>
<v-menu offset-y>
<template v-slot:activator="{ on, attrs }">
<v-btn
color="primary"
dark
depressed
v-bind="attrs"
v-on="on"
class="mr-1"
>
Meta Edition
</v-btn>
</template>
<v-list>
<v-list-item
v-for="(item, index) in metaEdition"
:key="index"
:to="item.to"
>
<v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>
<v-menu offset-y>
<template v-slot:activator="{ on, attrs }">
<v-btn
color="primary"
dark
depressed
v-bind="attrs"
v-on="on"
class="mr-1"
>
Editions
</v-btn>
</template>
<v-list>
<v-list-item
v-for="(item, index) in editions"
:key="index"
:to="item.to"
>
<v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>
<v-btn
depressed
color="primary"
to="/project.html"
>Project</v-btn>
<v-spacer></v-spacer>
<v-text-field
label="Search"
dense
single-line
background-color="white"
rounded
hide-details
width="200px"
class="pr-2"
></v-text-field>
<v-btn
depressed
color="primary"
>Search</v-btn>
</v-row>
</v-col>
</v-container>
</v-app-bar>
</template>
<script>
......