mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-17 13:25:57 -06:00
Fixes #6
This commit is contained in:
parent
0909e8ce8d
commit
560a64540a
@ -5,7 +5,7 @@
|
||||
<a href="{{ . | relURL }}">Remove filter</a>
|
||||
</small>
|
||||
{{ else }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
<h1>{{ .Title | markdownify }}</h1>
|
||||
{{ end }}
|
||||
<ul>
|
||||
{{ range .Pages }}
|
||||
@ -15,7 +15,7 @@
|
||||
{{ .Date.Format "2006-01-02" }}
|
||||
</time>
|
||||
{{ end }}
|
||||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li>
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{ define "main" }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
<h1>{{ .Title | markdownify }}</h1>
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
|
@ -1,3 +1,3 @@
|
||||
<div class="header">
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
<h1>{{ .Site.Title | markdownify }}</h1>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user