Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomationD committed Nov 3, 2023
1 parent 8465ab2 commit 6cfcea5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions layouts/_default/section.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
{{- define "content" -}}
<div class="page archive">
{{- /* Title */ -}}
<h2 class="single-title animate__animated animate__pulse animate__faster">
<h1 class="single-title animate__animated animate__pulse animate__faster">
{{- .Params.Title | default (T .Section) | default .Section | dict "Some" | T "allSome" -}}
</h2>
</h1>

{{- /* Paginate */ -}}
{{- if .Pages -}}
Expand All @@ -19,7 +19,7 @@ <h2 class="single-title animate__animated animate__pulse animate__faster">
{{- end -}}
{{- partial "recentlyUpdated.html" . -}}
{{- range $pages.PageGroups -}}
<h3 class="group-title">{{ .Key }}</h3>
<h2 class="group-title">{{ .Key }}</h2>
{{- range .Pages -}}
<article class="archive-item">
<a href="{{ .RelPermalink }}" class="archive-item-link">
Expand Down
4 changes: 2 additions & 2 deletions layouts/taxonomy/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<div class="page archive">
{{- /* Title */ -}}
<h2 class="single-title animate__animated animate__pulse animate__faster">
<h1 class="single-title animate__animated animate__pulse animate__faster">
{{- $taxonomy := .Data.Singular -}}
{{- if eq $taxonomy "category" -}}
<i class="far fa-folder-open fa-fw"></i>&nbsp;{{ .Title }}
Expand Down Expand Up @@ -39,7 +39,7 @@ <h2 class="single-title animate__animated animate__pulse animate__faster">
{{- else -}}
{{- printf "%v - %v" (T $taxonomy | default $taxonomy) .Title -}}
{{- end -}}
</h2>
</h1>
{{- /* Introduction*/ -}}
{{- if .Content -}}
<div class="introduction">
Expand Down
8 changes: 4 additions & 4 deletions layouts/taxonomy/terms.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

<div class="page archive">
{{- /* Title */ -}}
<h2 class="single-title animate__animated animate__pulse animate__faster">
<h1 class="single-title animate__animated animate__pulse animate__faster">
{{- .Params.Title | default (T $taxonomies) | default $taxonomies | dict "Some" | T "allSome" -}}
</h2>
</h1>

{{- /* Categories Page */ -}}
{{- if eq $taxonomies "categories" -}}
Expand All @@ -22,11 +22,11 @@ <h2 class="single-title animate__animated animate__pulse animate__faster">
{{- with $.Site.GetPage "taxonomy" (printf "%v/%v" $type $term) -}}
<div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<h2 class="card-item-title">
<a href="{{ .RelPermalink }}">
<i class="far fa-folder fa-fw"></i>&nbsp;{{ .Page.Title }} <sup>{{- len $pages -}}</sup>
</a>
</h3>
</h2>
{{- range first 5 $pages -}}
<article class="archive-item">
<a href="{{ .RelPermalink }}" class="archive-item-link">
Expand Down

0 comments on commit 6cfcea5

Please sign in to comment.