2019-08-02 18:36:12 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
2019-08-02 21:44:29 -07:00
|
|
|
|
2020-12-27 20:09:05 -08:00
|
|
|
<p>
|
|
|
|
<div class="stork-wrapper">
|
|
|
|
<div class="stork-input-wrapper">
|
|
|
|
<input class="stork-input" data-stork="blog" placeholder="Search (requires JavaScript)"/>
|
|
|
|
</div>
|
|
|
|
<div class="stork-output" data-stork="blog-output"></div>
|
|
|
|
</div>
|
|
|
|
</p>
|
|
|
|
|
2019-08-02 21:44:29 -07:00
|
|
|
Recent posts:
|
2020-05-09 01:41:10 -07:00
|
|
|
<ul class="post-list">
|
|
|
|
{{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
|
|
|
|
{{ partial "post.html" . }}
|
|
|
|
{{ end }}
|
2019-08-02 21:44:29 -07:00
|
|
|
</ul>
|
2020-12-27 20:09:05 -08:00
|
|
|
|
|
|
|
<script src="https://files.stork-search.net/stork.js"></script>
|
|
|
|
<script>stork.register("blog", "http://localhost:8000/index.st");</script>
|
2019-08-02 18:36:12 -07:00
|
|
|
{{ end }}
|