30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
  <article>
 | 
						|
    <h1>{{ .Title }}</h1>
 | 
						|
    <ul class="posts-list">
 | 
						|
      {{ range where .Paginator.Pages "Type" "!=" "page" }}
 | 
						|
        <li class="posts-list-item">
 | 
						|
          <a class="posts-list-item-title" href="{{ .Permalink }}">{{ .Title }}</a>
 | 
						|
          <span class="posts-list-item-description">
 | 
						|
            <div>
 | 
						|
              {{ if .Description }}
 | 
						|
                <br />{{ .Description }}<br />(more inside)<br /><br />
 | 
						|
              {{ else }}
 | 
						|
                {{ .Content }}
 | 
						|
              {{ end }}
 | 
						|
            </div>
 | 
						|
          </span>
 | 
						|
          <span class="posts-list-item-description">
 | 
						|
            {{ partial "icon.html" (dict "ctx" $ "name" "calendar") }}
 | 
						|
            {{ .PublishDate.Format "Jan 2, 2006" }}
 | 
						|
            <span class="posts-list-item-separator">-</span>
 | 
						|
            {{ partial "icon.html" (dict "ctx" $ "name" "clock") }}
 | 
						|
            {{ .ReadingTime }} min read
 | 
						|
          </span>
 | 
						|
        </li>
 | 
						|
      {{ end }}
 | 
						|
    </ul>
 | 
						|
    {{ partial "pagination.html" $ }}
 | 
						|
  </article>
 | 
						|
{{ end }}
 |