Welcome to mirror list, hosted at ThFree Co, Russian Federation.

indexes.html « indexes « layouts - github.com/AlexFinn/simple-a.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2168b0674b6d98e6c467187861556aa1897f28b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ $baseurl := .Site.BaseURL }}
{{ template "theme/chrome/header.html" . }}

	<section id="main">
	  <div>
	   <h1 id="title">{{ .Title }}</h1>
	   <ul>
	   {{ $data := .Data }}
	    {{ range $key,$value := .Data.Index.ByCount }}
	    <li><a href="{{ $baseurl }}/tags/{{ $value.Name | urlize }}"> {{ $value.Name }} </a> {{ $value.Count }} </li>
	    {{ end }}
	   </ul>
	  </div>
	</section>