Skip to content
Snippets Groups Projects
Verified Commit 8c9f91a0 authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

Removed unused taxonomy list

parent e5d93247
No related branches found
No related tags found
No related merge requests found
{{ partial "head.html" . }}
<body class="list">
<header class="me">
<div>
<img src="/images/logo.png">
<h1>Hello.</h1>
<h2>I am FLEAR.</h2>
<h3>A Developer Advocate for Chrome and the Open Web at Google.</h3>
</div>
</header>
<div>
<main>
{{ $data := .Data }}
{{ range $key,$value := .Data.Terms.ByCount }}
<div class="post">
<header>
<h3><a href="/{{ $data.Plural }}/{{ $value.Name | urlize }}">{{ $value.Name }}</a> ({{ $value.Count }} articles)</h3>
</header>
<div class="description">
{{ range $key1,$page := $value.WeightedPages }}
<li><a href="{{$page.Permalink}}">{{ $page.Title }}</a> - published <em>{{ .Date.Format "January 2 2006" }}</em></li>
{{ end }}
</div>
</div>
{{ end }}
</main>
</div>
</body>
</html>
\ No newline at end of file
{{ partial "top_list_resource.html" . }}
{{ $paginator := .Paginate .Data.Pages }}
<div class='row'>
<div class='col-md-8'>
{{ partial "paginator.html" . }}
{{ range $index, $element := $paginator.Pages }}
<article class='post'>
<header class='post-header'>
<h2 class='post-title'>
<a href="{{ .Permalink }}">{{ .Title}}</a>
{{ if .Params.link }} &mdash; <a href="{{.Params.link}}">🔗</a>{{end}}
</h2>
</header>
</article>
{{ end }}
{{ partial "paginator.html" . }}
</div>
{{ partial "side_menu_taxonomy.html" . }}
</div>
{{ partial "bottom_list.html" . }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment