make links more visible

This commit is contained in:
Zoe 2022-04-15 19:24:57 +02:00
parent c07edf9995
commit da6e8f7a4e
6 changed files with 26 additions and 9 deletions

View file

@ -12,7 +12,8 @@
{{ range .Pages }}
<div id="postlist">
<h2 class="colorswitch posttitle">
<a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2><div class="postdescription">{{.Description}}<br>{{.WordCount}} words</a>
<a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2><div class="postdescription">{{.Description}}</a><br>
<a class="postinfo" href="{{.Permalink}}">{{.WordCount}} words | read more...</a>
</div>
{{ end }}
</div>

View file

@ -1,10 +1,10 @@
{{ define "main" }}
<div>
<h1 class="title">{{ .Site.Title }}</h1>
</div>
<div>
<header>
<h1 id="title" class="colorswitch">{{ .Site.Title }}</h1>
</header>
<article id="content" class="colorswitch">
<p>
{{ .Content }}
</p>
</div>
</article>
{{ end }}