commit 4ed5da317368c06c3e0ae8a15b72445255166177
parent 3dceec1871c64949f93085157a5f14bced8e3040
Author: corndog <cauchyn@firemail.cc>
Date: Mon, 17 Oct 2016 02:46:02 -0700
Did I get it right yet?
Diffstat:
6 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/Caddyfile b/Caddyfile
@@ -1,7 +1,7 @@
grgr.me {
root ./out
- redir /PGP /V6eHU.txt
- redir /pgp /V6eHU.txt
+ redir /PGP ./V6eHU.txt
+ redir /pgp ./V6eHU.txt
redir /galois/ https://gitlab.com/corndog/galois/tree/master
browse /sits/releases
ext .html .txt
diff --git a/in/index.html b/in/index.html
@@ -7,7 +7,7 @@ right now. This was supposed to just be a way to throw short links on my CV. Nam
<ul class="post-list">
{{ range .Site.Pages.WithTag "project" }}
- <li>{{ .Other.Title }}<a href="{{ $.Rel .Url }}">{{ .Title }}</a><br>
+ <li><a href="{{ $.Rel .Url }}">{{ .Title }}</a><br>
{{ .Other.Description }}
</li>
{{ end }}
diff --git a/out/galois/index.html b/out/galois/index.html
@@ -14,6 +14,6 @@ tags: project</p>
<h2>description: Exercises I’ve written for a math study group.</h2>
-<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="/PGP">PGP</a>)
+<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="./PGP">PGP</a>)
</body>
</html>
diff --git a/out/index.html b/out/index.html
@@ -15,11 +15,11 @@ right now. This was supposed to just be a way to throw short links on my CV. Nam
<ul class="post-list">
- <li><no value><a href="./galois/">galois</a><br>
+ <li><a href="./galois/">galois</a><br>
Exercises I've written for a math study group.
</li>
- <li><no value><a href="./sits/">shimmers in the stars</a><br>
+ <li><a href="./sits/">shimmers in the stars</a><br>
A networked versus vertically scrolling shooter (in-progress).
</li>
@@ -30,6 +30,6 @@ Thanks for your attention and have a good, good day.
</p>
-<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="/PGP">PGP</a>)
+<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="./PGP">PGP</a>)
</body>
</html>
diff --git a/out/sits/index.html b/out/sits/index.html
@@ -43,6 +43,6 @@ any problems.</p>
<p>C to bomb</p>
-<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="/PGP">PGP</a>)
+<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="./PGP">PGP</a>)
</body>
</html>
diff --git a/site.tmpl b/site.tmpl
@@ -10,7 +10,7 @@
{{ end }}
{{ define "footer" }}
-<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="/PGP">PGP</a>)
+<a href="mailto:contact@grgr.me">contact@grgr.me</a> (<a href="./PGP">PGP</a>)
</body>
</html>
{{ end }}