Compare commits

..

8 commits

Author SHA1 Message Date
Lukas Joswiak 5de120d9d0 Rebase 2021-12-11 17:32:42 -08:00
Lukas Joswiak 0ba46d1d7e Don't use Jekyll when building page 2021-12-11 17:32:42 -08:00
Lukas Joswiak f0065f656d Fix base URL 2021-12-11 17:32:42 -08:00
Lukas Joswiak 161f9858c6 Add example site 2021-12-11 17:32:42 -08:00
Lukas Joswiak 5e5c7afcde GitHub pages test 2021-12-11 17:32:42 -08:00
Thomas Rettig f6133c4eac
Improve legibility of footer text (#26)
Improve the colour contrast and bump up the font-weight to improve legibility of the footer text.
2021-12-11 17:30:46 -08:00
Thomas Rettig 99e5a824d1
Add cursor to <abbr> (#27) 2021-12-11 17:22:18 -08:00
Lukas Joswiak 6c1ea493f0 Modify default RSS to include full article text 2021-10-11 21:14:16 -07:00
2 changed files with 7 additions and 3 deletions

View file

@ -102,6 +102,10 @@ main#content hr {
background: #d8d8d8;
}
main#content abbr {
cursor: help;
}
/* index.html styles */
main#content ul#posts {
list-style-type: none;
@ -271,7 +275,7 @@ main#content section.footnotes {
footer#footer {
font-size: 14px;
font-size: 1.4rem;
font-weight: 300;
color: #949494;
font-weight: 400;
color: #b3b3b3;
margin: 40px 0;
}

View file

@ -33,7 +33,7 @@
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
<guid>{{ .Permalink }}</guid>
<description>{{ .Summary | html }}</description>
<description>{{ .Content | html }}</description>
</item>
{{ end }}
{{ end }}