port to gitlab.

This commit is contained in:
Dave G
2018-07-16 21:46:31 -04:00
commit 2c3ba62ee1
231 changed files with 11557 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{{ range $key, $value := .Site.Taxonomies }}
<div class="sidebar-{{ $key | singularize | lower }}">
<hr>
<h5>
<a href="/{{$key}}/">{{ T ($key | singularize) }}</a>
</h5>
{{ range $k, $v := first 10 $value.ByCount }}
<a href="{{ $.Site.BaseURL}}/{{ $key }}/{{ $v.Name | urlize }}" class="taxonomy-name">
{{ $v.Name }}
<span class="taxonomy-counts">{{ len $v.Pages }}</span>
</a>
{{ end }}
</div>
{{ end }}