Skip to content

Commit

Permalink
fixed container
Browse files Browse the repository at this point in the history
  • Loading branch information
rakesh-gupta29 committed Nov 2, 2023
1 parent 9e14aa7 commit 201e760
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions layouts/_default/terms.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{{ partial "header.html" . }}
<h1>{{ .Name }}</h1>
{{ $data := .Data }}
<ul>
{{ range $key, $value := .Data.Terms.ByCount }}
<li>
<a href="{{ $.Site.BaseURL }}/{{ $data.Plural }}/{{ $value.Name | urlize }}/">{{ $value.Name }}<sup>{{ $value.Count }}</sup></a>
</li>
{{ end }}
</ul>
<div class="container wrap">
<h1>{{ .Name }}</h1>
{{ $data := .Data }}
<ul>
{{ range $key, $value := .Data.Terms.ByCount }}
<li>
<a href="{{ $.Site.BaseURL }}/{{ $data.Plural }}/{{ $value.Name | urlize }}/">{{ $value.Name }}<sup>{{ $value.Count }}</sup></a>
</li>
{{ end }}
</ul>
</div>
{{ partial "footer.html" . }}

0 comments on commit 201e760

Please sign in to comment.