Skip to content

Commit

Permalink
update stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
ianrussel committed Mar 7, 2021
1 parent c5f15fa commit cbf557c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/partials/copyright.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{ with .Site.Params.copyright.url }}<a href="{{ . }}" target="_blank">{{ end }}
{{ .Site.Params.copyright.name }}
{{ with .Site.Params.copyright.url }}</a>{{ end }}
<span id="thisyear">2021 [email protected]</span>
<span id="thisyear"> </span>
{{ with .Site.Params.Copyright.Suffix }}
| {{ . | markdownify }}
{{end}}
Expand Down
6 changes: 6 additions & 0 deletions layouts/partials/scripts.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
document.getElementById('thisyear').innerHTML = new Date().getFullYear();
};
</script> -->
<script>
function ThisYear() {
document.getElementById('thisyear').innerHTML = new Date().getFullYear() + ' contact me: [email protected] This site is coded in Golang with love';
};
ThisYear();
</script>
{{- range .Site.Params.customJS }}
<script src="{{ . | relURL }}"></script>
{{- end }}

0 comments on commit cbf557c

Please sign in to comment.