added bg image to header. Fixed backtotop link and icons in home and footer.
[theme-danix.xyz.git] / layouts / partials / funcs / categories.html
CommitLineData
e28a215c 1{{ with .Params.categories }}
2<div class="post-cats">
3 <span>Published in:</span>
4 <ul class="article-tags">
5 {{ range . }}
6 {{ $href := print (absURL "categories/") (urlize .) }}
7 <li>
8 <a href="{{ $href }}">{{ . }}</a>
9 </li>
10 {{ end }}
11 </ul>
12</div>
13{{ end }}