Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ See https://ldbv-by.github.io/bav4-docs/ for the documentation.

To develop the page locally you need to install ruby. Follow the instructions from: [https://jekyllrb.com/docs/installation/](https://jekyllrb.com/docs/installation/).

To start the dev-server execute in the cloned directory:
To start the dev-server execute the following command in the `/docs` folder as working directory:
`bundle exec jekyll serve`
8 changes: 4 additions & 4 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<header class="page-header" role="banner">
<div class="page-header-content">
<div>
<a class="page-header-link" href="/">
<a class="page-header-link" href="/bav4-docs">
<image class="page-logo" src="{{'assets/favicon.svg'}}"></image>
</a>
</div>
<div class="page-title-container">
<a class="page-header-link" href="/">
<a class="page-header-link" href="/bav4-docs">
<h1 class="project-name">{{ site.title }}</h1>
<h2 class="project-tagline">{{ site.description }}</h2>
</a>
Expand All @@ -38,8 +38,8 @@ <h2 class="project-tagline">{{ site.description }}</h2>

</header>

{% if page.url != "/" %}
<a id="back-to-main" href="/">
{% if page.url != "/" and page.url != "/bav4-docs" %}
<a id="back-to-main" href="/bav4-docs">
<span class="md">Back to Main Page</span>
</a>
{% endif %}
Expand Down
Loading