Compare commits

..

No commits in common. "27d00987fe003de6e813d1e0e2d8be28e6a086ee" and "b85ae1c990c60e9d4700235b712d83c9a8e43051" have entirely different histories.

3 changed files with 17 additions and 20 deletions

View File

@ -4,12 +4,13 @@ title = "The Co-op Cloud"
theme = "coopcloud.tech"
[menu]
[[menu.main]]
name = "Docs"
url = "https://docs.coopcloud.tech"
name = "Home"
pre = "home"
url = "/"
weight = 1
[[menu.main]]
name = "Blog"
url = "/blog/"
name = "Documentation"
url = "https://docs.coopcloud.tech"
weight = 2
[params]

View File

@ -163,14 +163,7 @@ hr {
background-color: $coopcloud-pink;
padding: 10px;
margin: 0;
gap: 2rem;
@media (max-width: 1024px) { flex-direction: column; }
.nav-link {
color: $text-color;
margin: 0.5rem;
text-transform: uppercase;
&:hover { text-decoration: underline; }
}
}
footer .content a {

View File

@ -1,13 +1,16 @@
{{/* <div id="nav-border" class="container">
<nav id="nav" class="nav justify-content-center">
{{ range .Site.Menus.main }}
<a class="nav-link" href="{{ .URL }}">
{{ $text := print .Name | safeHTML }}
{{ $text }}
</a>
{{ end }}
</nav>
</div> */}}
<nav id="header" class="level is-mobile">
<a class="level-item has-text-centered" href="{{ .Site.BaseURL }}">
<img src="/svg/coopcloud_logo_grey.svg" alt="CoopCloud Logo" style="height: 100px;">
</a>
<div>
{{ range .Site.Menus.main }}
<a class="nav-link" href="{{ .URL }}">
{{ $text := print .Name | safeHTML }}
{{ $text }}
</a>
{{ end }}
</div>
</nav>