Skip to content

Commit

Permalink
Merge pull request #53 from rakesh-gupta29/ui-fix
Browse files Browse the repository at this point in the history
fixed container
  • Loading branch information
mr-karan authored Nov 17, 2023
2 parents 9e14aa7 + 201e760 commit 400eb44
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 400eb44

Please sign in to comment.