added git.vrifox.cc to menu; changed :hover styles of links on »home« and the footer

This commit is contained in:
Vrifox 2020-09-30 20:05:47 +02:00
parent e729d96059
commit bfa8a24e8d
5 changed files with 24 additions and 2 deletions

View file

@ -9,6 +9,13 @@ header {
}
}
h1 {
a:hover {
text-decoration: none;
border-bottom: 2px solid;
}
}
.section-articles {
display: grid;
grid-template-columns: repeat(2, 1fr);

View file

@ -29,6 +29,10 @@ footer {
}
a {
color: rgb(200, 200, 230);
&:hover {
text-decoration: none;
border-bottom: 2px solid;
}
}
}
}

View file

@ -22,6 +22,11 @@ menu:
title: mastodon
url: https://social.anoxinon.de/@vrifox
weight: 1
- identifier: gitea
name: gitea
title: gitea
url: https://git.vrifox.cc/vrifox
weight: 2
footer:
- identifier: feed
name: feed (rss)

View file

@ -16,7 +16,10 @@
<a href="{{ .Permalink }}">
<article>
<h1>{{ .Title }}</h1>
<p class="meta" title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}"><span class="date">{{ .Date.Format "2 January 2006" }}</span> <span class="author">by {{ .Params.author }}</span></p>
<p class="meta" title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}">
<span class="date">{{ .Date.Format "2 January 2006" }}</span>
<span class="author">{{ with .Params.author }}by {{ end }}{{ .Params.author }}</span>
</p>
{{ with .Description }}
<p>{{ . }}</p>
{{ end }}

View file

@ -18,7 +18,10 @@
<a href="{{ .Permalink }}">
<article>
<h1>{{ .Title }}</h1>
<p class="meta" title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}"><span class="date">{{ .Date.Format "2 January 2006" }}</span> <span class="author">by {{ .Params.author }}</span></p>
<p class="meta" title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}">
<span class="date">{{ .Date.Format "2 January 2006" }}</span>
<span class="author">{{ with .Params.author }}by {{ end }}{{ .Params.author }}</span>
</p>
{{ with .Description }}
<p>{{ . }}</p>
{{ end }}