forked from planex/defiance
add support for possible search functionality
This commit is contained in:
parent
6e7a77d947
commit
f09af5936a
1 changed files with 6 additions and 3 deletions
|
@ -1,12 +1,15 @@
|
|||
{{ define "main" }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
<ul id="artlist">
|
||||
{{ range .Pages.ByPublishDate.Reverse }}
|
||||
<p>
|
||||
<li data-tags="{{.Params.Tags}}">
|
||||
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||
{{ partial "metadata.html" . }}
|
||||
<a href="{{ .RelPermalink }}">
|
||||
<p>{{ .Summary }}</p>
|
||||
</a>
|
||||
</p>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }
|
Loading…
Add table
Reference in a new issue