forked from mirrors/hugo-tufte
Fix unclosed <a> tag.
This commit is contained in:
parent
82958f2609
commit
363c1d6497
3 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
<section>
|
||||
<h1 class="content-title">
|
||||
{{ if .IsNode }}
|
||||
<a href="{{ .Permalink }}">{{ .Title}}<a>
|
||||
<a href="{{ .Permalink }}">{{ .Title}}</a>
|
||||
{{ else }}
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}{{ if .Draft }} :: Draft {{end}}</a>
|
||||
{{ end }}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!-- Load MathJax, if necessary. -->
|
||||
{{ if or (eq .Params.math "true") (.IsHome) }}
|
||||
{{ if or .Params.math .IsHome }}
|
||||
{{ partial "math.html" . }}
|
||||
{{ end }}
|
||||
|
||||
|
|
|
@ -9,4 +9,4 @@ min_version = 0.15
|
|||
|
||||
[author]
|
||||
name = "Shawn O'Hare"
|
||||
homepage = "https://shawnohare.com"
|
||||
homepage = "http://www.shawnohare.com"
|
||||
|
|
Loading…
Reference in a new issue