This commit is contained in:
BBaoVanC 2021-09-26 19:21:48 -05:00
parent 0909e8ce8d
commit 560a64540a
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
<a href="{{ . | relURL }}">Remove filter</a> <a href="{{ . | relURL }}">Remove filter</a>
</small> </small>
{{ else }} {{ else }}
<h1>{{ .Title }}</h1> <h1>{{ .Title | markdownify }}</h1>
{{ end }} {{ end }}
<ul> <ul>
{{ range .Pages }} {{ range .Pages }}
@ -15,7 +15,7 @@
{{ .Date.Format "2006-01-02" }} {{ .Date.Format "2006-01-02" }}
</time> </time>
{{ end }} {{ end }}
<a href="{{ .Permalink }}">{{ .Title }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</li> </li>
{{ else }} {{ else }}
<li> <li>

View File

@ -1,4 +1,4 @@
{{ define "main" }} {{ define "main" }}
<h1>{{ .Title }}</h1> <h1>{{ .Title | markdownify }}</h1>
{{ .Content }} {{ .Content }}
{{ end }} {{ end }}

View File

@ -1,3 +1,3 @@
<div class="header"> <div class="header">
<h1>{{ .Site.Title }}</h1> <h1>{{ .Site.Title | markdownify }}</h1>
</div> </div>