Skip to content

Commit

Permalink
Added github link to vuepress
Browse files Browse the repository at this point in the history
  • Loading branch information
Severino committed Oct 2, 2024
1 parent 1a71f4b commit f0d8016
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
18 changes: 13 additions & 5 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default defineUserConfig({
title: 'Spacialist Documentation',
description: 'A documentation for the Spacialist project',

head:[
head: [
['link', { rel: 'icon', href: './favicon.ico', media: '(prefers-color-scheme: no-preference)' }],
['link', { rel: 'icon', href: './favicon.ico', media: '(prefers-color-scheme: light)' }],
['link', { rel: 'icon', href: './favicon-white.ico', media: '(prefers-color-scheme: dark)' }],
Expand All @@ -20,21 +20,29 @@ export default defineUserConfig({
logo: '/images/logos/spacialist_logo_lines_tiny_pad.svg',
logoDark: './images/logos/spacialist_logo_lines_tiny_pad_white.svg',

navbar: ['/', '/user/guide', '/development/coding-style'],
navbar: [
'/',
'/user/guide',
'/development/coding-style',
{
text: 'GitHub',
link: 'https://github.com/DH-Center-Tuebingen/spacialist-docs'
}
],
sidebar: [
{
text: 'User Guide',
link: '/user/',
collapsible: true,
children: [
'/user/guide',
'/user/data'
]
},
{
text: 'Development',
link: '/development/',
collapsible: true,
children: [
'/development/coding-structure',
'/development/coding-structure',
'/development/plugins',
'/development/docs',
]
Expand Down
11 changes: 11 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,16 @@ features:
footer: MIT Licensed | Copyright © 2024
---

::: warning
This documentation is still in the construction phase.
So we will include all relevant informations over the next
months.

Please be patient. Feel free to contribute to that effort
on [GitHub](http://localhost:8080/spacialist-docs/)
:::




[default-theme-home]: https://vuejs.press/reference/default-theme/frontmatter.html#home-page

0 comments on commit f0d8016

Please sign in to comment.