Fix unclosed <a> tag.

This commit is contained in:
Shawn O'Hare 2016-01-15 10:08:17 -08:00
parent 82958f2609
commit 363c1d6497
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
<section> <section>
<h1 class="content-title"> <h1 class="content-title">
{{ if .IsNode }} {{ if .IsNode }}
<a href="{{ .Permalink }}">{{ .Title}}<a> <a href="{{ .Permalink }}">{{ .Title}}</a>
{{ else }} {{ else }}
<a href="{{ .RelPermalink }}">{{ .Title }}{{ if .Draft }} :: Draft {{end}}</a> <a href="{{ .RelPermalink }}">{{ .Title }}{{ if .Draft }} :: Draft {{end}}</a>
{{ end }} {{ end }}

View file

@ -1,5 +1,5 @@
<!-- Load MathJax, if necessary. --> <!-- Load MathJax, if necessary. -->
{{ if or (eq .Params.math "true") (.IsHome) }} {{ if or .Params.math .IsHome }}
{{ partial "math.html" . }} {{ partial "math.html" . }}
{{ end }} {{ end }}

View file

@ -9,4 +9,4 @@ min_version = 0.15
[author] [author]
name = "Shawn O'Hare" name = "Shawn O'Hare"
homepage = "https://shawnohare.com" homepage = "http://www.shawnohare.com"