Skip to content

Commit

Permalink
feat: uppercase headings on overview pages
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderdavide committed Mar 3, 2022
1 parent 62ea796 commit c14fb1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions assets/scss/partials/components/_archive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
&-title {
display: inline-block;
flex: 0.96;
text-transform: uppercase;

@include themed() {
color: t('primary');
Expand Down
2 changes: 1 addition & 1 deletion layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h2>{{ .Params.mainSectionsTitle }}</h2>

{{ end }}
<div class="post__content">
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<h3><a href="{{ .RelPermalink }}">{{ upper .Title }}</a></h3>
{{ if .Site.Params.fullPostContent }}
{{ .Content }}

Expand Down

0 comments on commit c14fb1e

Please sign in to comment.