Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
subugoe
ahiqar
Website
Compare revisions
v0.0.4 to v0.0.5
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
subugoe/ahiqar/website
Select target project
No results found
v0.0.5
Select Git revision
Swap
Target
subugoe/ahiqar/website
Select target project
subugoe/ahiqar/website
1 result
v0.0.4
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
chore: update .gitignore
· ce3f0dd2
Nils Windisch
authored
3 years ago
ce3f0dd2
feat: search input field
· e0e13cdb
Nils Windisch
authored
3 years ago
closes
#44
e0e13cdb
chore(release): 0.0.5
· b148d829
Nils Windisch
authored
3 years ago
b148d829
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
CHANGELOG.md
+12
-0
12 additions, 0 deletions
CHANGELOG.md
package-lock.json
+1
-1
1 addition, 1 deletion
package-lock.json
package.json
+1
-1
1 addition, 1 deletion
package.json
src/.vuepress/components/Bar.vue
+83
-66
83 additions, 66 deletions
src/.vuepress/components/Bar.vue
with
98 additions
and
68 deletions
.gitignore
View file @
b148d829
node_modules
.vscode/settings.json
.DS_Store
This diff is collapsed.
Click to expand it.
CHANGELOG.md
View file @
b148d829
...
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
package-lock.json
View file @
b148d829
{
"name": "ahiqar-website",
"version": "0.0.
4
",
"version": "0.0.
5
",
"lockfileVersion": 2,
"requires": true,
"packages": {
This diff is collapsed.
Click to expand it.
package.json
View file @
b148d829
{
"name"
:
"ahiqar-website"
,
"version"
:
"0.0.
4
"
,
"version"
:
"0.0.
5
"
,
"description"
:
""
,
"main"
:
""
,
"authors"
:
{
...
...
This diff is collapsed.
Click to expand it.
src/.vuepress/components/Bar.vue
View file @
b148d829
<
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
>
...
...
This diff is collapsed.
Click to expand it.