23 lines
		
	
	
		
			991 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			991 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
  {{ .Content }}
 | 
						|
  {{ range first 5 .Site.RegularPages }}
 | 
						|
    <article>
 | 
						|
      <time>
 | 
						|
        {{ .PublishDate.Format "2 January 2006" }}
 | 
						|
      </time>
 | 
						|
      <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
 | 
						|
      <div class="barcode">
 | 
						|
        {{ .Params.url }}
 | 
						|
      </div>
 | 
						|
      {{ .Summary }}
 | 
						|
      {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
 | 
						|
    </article>
 | 
						|
  {{ end }}
 | 
						|
  <div class="all">
 | 
						|
    <a href="/posts">
 | 
						|
      view all
 | 
						|
      <svg  xmlns="http://www.w3.org/2000/svg"  width="24"  height="24"  viewBox="0 0 24 24"  fill="none"  stroke="currentColor"  stroke-width="2"  stroke-linecap="round"  stroke-linejoin="round"  class="icon icon-tabler icons-tabler-outline icon-tabler-arrow-big-right"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 9h8v-3.586a1 1 0 0 1 1.707 -.707l6.586 6.586a1 1 0 0 1 0 1.414l-6.586 6.586a1 1 0 0 1 -1.707 -.707v-3.586h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1z" /></svg>
 | 
						|
    </a>
 | 
						|
  </div>
 | 
						|
{{ end }}
 |