You've already forked no-js-hugo-theme
							
							Hugo new layouts asks to rename to home.html Not sure 404.html is used
		
			
				
	
	
		
			30 lines
		
	
	
		
			753 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			753 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
  {{ .Content }}
 | 
						|
  <hr>
 | 
						|
  {{- if .Site.Params.showTagList }}
 | 
						|
    <h2>Tags</h2>
 | 
						|
    {{ range  .Site.Taxonomies.tags  }}
 | 
						|
      <details>
 | 
						|
        <summary> <h3>{{ .Page.Title }} ({{ len . }})</h3> </summary>
 | 
						|
        <ul>
 | 
						|
          {{ range . }}
 | 
						|
            <li>
 | 
						|
              <time>{{ .Date.Format "2006/01/02" }}</time>
 | 
						|
              <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
 | 
						|
            </li>
 | 
						|
          {{ end }}
 | 
						|
          </ol>
 | 
						|
      </details>
 | 
						|
    {{ end }}
 | 
						|
  {{- end }}
 | 
						|
  <h2>All Pages</h2>
 | 
						|
  <ul>
 | 
						|
    {{ range  .Site.RegularPages  }}
 | 
						|
      <li>
 | 
						|
        <time>{{ .Date.Format "2006/01/02" }}</time>
 | 
						|
        <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
 | 
						|
      </li>
 | 
						|
    {{ end }}
 | 
						|
  </ul>
 | 
						|
{{ end }}
 |