Advertisement
Guest User

hugo template snippits for tags and archives

a guest
Feb 10th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <!-- Add tags to the bottom of posts using hugo. -->
  2.  
  3.     <div><div class="tags">Tags:
  4.    
  5.     <ul class="tags">
  6.     {{ range .Params.tags }}
  7.     <li><a href="/tags/{{ . | urlize }}">&lsquo;{{ . }}&rsquo;</a> </li>
  8.     {{ end }}
  9.     </ul></div></div>
  10.  
  11. <!-- Create post archive ordered by month using hugo -->
  12.  
  13.     {{ range .Data.Pages.GroupByDate "2006-01" }}
  14.     <h3>{{ .Key }}</h3>
  15.     <ul>
  16.         {{ range .Pages }}
  17.         <li>
  18.         <a href="{{ .Permalink }}">{{ .Title }}</a>
  19.         <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
  20.         </li>
  21.         {{ end }}
  22.     </ul>
  23.     {{ end }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement