added git.vrifox.cc to menu; changed :hover styles of links on »home« and the footer
This commit is contained in:
parent
e729d96059
commit
bfa8a24e8d
5 changed files with 24 additions and 2 deletions
|
@ -9,6 +9,13 @@ header {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: 2px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.section-articles {
|
.section-articles {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
|
|
@ -29,6 +29,10 @@ footer {
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: rgb(200, 200, 230);
|
color: rgb(200, 200, 230);
|
||||||
|
&:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: 2px solid;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,11 @@ menu:
|
||||||
title: mastodon
|
title: mastodon
|
||||||
url: https://social.anoxinon.de/@vrifox
|
url: https://social.anoxinon.de/@vrifox
|
||||||
weight: 1
|
weight: 1
|
||||||
|
- identifier: gitea
|
||||||
|
name: gitea
|
||||||
|
title: gitea
|
||||||
|
url: https://git.vrifox.cc/vrifox
|
||||||
|
weight: 2
|
||||||
footer:
|
footer:
|
||||||
- identifier: feed
|
- identifier: feed
|
||||||
name: feed (rss)
|
name: feed (rss)
|
||||||
|
|
|
@ -16,7 +16,10 @@
|
||||||
<a href="{{ .Permalink }}">
|
<a href="{{ .Permalink }}">
|
||||||
<article>
|
<article>
|
||||||
<h1>{{ .Title }}</h1>
|
<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 }}
|
{{ with .Description }}
|
||||||
<p>{{ . }}</p>
|
<p>{{ . }}</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -18,7 +18,10 @@
|
||||||
<a href="{{ .Permalink }}">
|
<a href="{{ .Permalink }}">
|
||||||
<article>
|
<article>
|
||||||
<h1>{{ .Title }}</h1>
|
<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 }}
|
{{ with .Description }}
|
||||||
<p>{{ . }}</p>
|
<p>{{ . }}</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue