diff options
-rw-r--r-- | themes/hugo-pt2021/layouts/projects/list.html | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/themes/hugo-pt2021/layouts/projects/list.html b/themes/hugo-pt2021/layouts/projects/list.html index 3d4de89..52d5c7a 100644 --- a/themes/hugo-pt2021/layouts/projects/list.html +++ b/themes/hugo-pt2021/layouts/projects/list.html @@ -12,11 +12,6 @@ <div class='content'> {{- $rows := union (where .Pages "Params.active" true) (where .Pages "Params.active" nil) -}} {{- if len $rows -}} - <h3 - title='Current projects that are actively maintained.' - aria-label='Current projects that are actively maintained.' - >Current Projects</h3> - <ul> {{- range $rows.ByTitle -}} {{- if (default true .Params.show) -}} @@ -28,10 +23,10 @@ {{- $rows := where .Pages.ByTitle "Params.active" false -}} {{- if len $rows -}} - <h3 + <h4 title='Old projects that are no longer maintained.' aria-label='Old projects that are no longer maintained.' - >Legacy Projects</h3> + >Old Stuff</h4> <ul> {{- range $rows.ByTitle -}} |