Skip to content

Commit

Permalink
Merge pull request #4 from huantianad/language-params-fix
Browse files Browse the repository at this point in the history
fix: change use of .Site.Language.Params.params -> .Site.Params
  • Loading branch information
clente authored Sep 29, 2023
2 parents 6f2e7d0 + d14c9c0 commit 64583d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion layouts/partials/footer.html
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
<small> {{ .Site.Copyright }} | {{ markdownify .Site.Params.madeWith }} </small>
<small>
{{ .Site.Copyright }} | {{ markdownify .Site.Params.madeWith }}
</small>
2 changes: 1 addition & 1 deletion layouts/partials/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{{ with .Site.Social.email }}
<a href='mailto:{{ . }}?subject={{ i18n "email-subject" }}"{{ default $.Site.Title $.Page.Title }}"'>Email</a>
{{ end }}
<a href="{{ .Site.Language.Params.params.blogPath }}/index.xml">RSS</a>
<a href="{{ .Site.Params.blogPath }}/index.xml">RSS</a>

<!-- Convert this page's translations into a dict -->
{{ $translations := dict }}
Expand Down

0 comments on commit 64583d8

Please sign in to comment.