21 lines
		
	
	
		
			633 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			633 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
{{ .Content }}
 | 
						|
 | 
						|
<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>
 | 
						|
 | 
						|
Recent posts:
 | 
						|
<ul class="post-list">
 | 
						|
    {{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
 | 
						|
    {{ partial "post.html" . }}
 | 
						|
    {{ end }}
 | 
						|
</ul>
 | 
						|
 | 
						|
<script src="https://files.stork-search.net/stork.js"></script>
 | 
						|
<script>stork.register("blog", "/index.st", {"showProgress" : false});</script>
 | 
						|
{{ end }}
 |