Compare commits

...

2 Commits

Author SHA1 Message Date
Brian Picciano
03493f9d61 Fix font sizes for small devices 2022-11-23 19:21:25 +01:00
Brian Picciano
58086a3fda Accidentally removed 'Next Page' link 2022-11-23 19:03:01 +01:00
3 changed files with 10 additions and 4 deletions

View File

@ -58,12 +58,12 @@
html {
font-family: Georgia, serif;
font-size: 1em;
font-size: 16px;
}
@media (max-width: 800px) {
@media (max-device-width: 800px) {
html {
font-size: 1.3em;
font-size: 36px;
}
}

View File

@ -17,7 +17,7 @@
<a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a>
by
<a href="https://mediocregopher.com">mediocregopher</a>
&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;
<br/>
<a href="{{ BlogURL "follow" }}">Follow</a>
&nbsp;/&nbsp;
<a href="{{ BlogURL "feed.xml" }}">RSS</a>

View File

@ -24,6 +24,12 @@
{{ end }}
</ul>
{{ if ge .Payload.NextPage 0 }}
<p>
<a href="?p={{ .Payload.NextPage}}">Next Page &gt; &gt;</a>
</p>
{{ end }}
{{ end }}
{{ template "base.html" . }}