Compare commits

5 Commits
Author SHA1 Message Date
Neil Hanlon 1d8c53242f fix: RelPermalink for override scss 2025-08-08 14:07:49 -04:00
Neil Hanlon 4331b32265 update to fa 6 2025-06-21 18:02:20 -04:00
Neil Hanlon 626e3a9004 fix sass deprecation 2025-06-21 18:00:59 -04:00
Neil Hanlon 575d8e1276 drop twitter add bsky, signal, keybase 2025-06-21 17:53:10 -04:00
neil 81aee6df4e add kofi button 2025-06-21 17:49:11 -04:00
3 changed files with 20 additions and 2 deletions
+2 -2
View File
@@ -16,8 +16,8 @@
<link rel="stylesheet" href="{{ $.Site.BaseURL}}{{ . }}"> <link rel="stylesheet" href="{{ $.Site.BaseURL}}{{ . }}">
{{ end }} {{ end }}
{{ range .Site.Params.custom_scss }} {{ range .Site.Params.custom_scss }}
{{ $style := resources.Get . | resources.ToCSS }} {{ $style := resources.Get . | css.Sass }}
<link rel="stylesheet" href="{{ $style.Permalink }}"> <link rel="stylesheet" href="{{ $style.RelPermalink }}">
{{ end }} {{ end }}
{{ `<!--[if lt IE 9]> {{ `<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
+10
View File
@@ -10,3 +10,13 @@
{{- range .Site.Params.custom_js -}} {{- range .Site.Params.custom_js -}}
<script src="{{ $.Site.BaseURL }}{{ . }}"></script> <script src="{{ $.Site.BaseURL }}{{ . }}"></script>
{{ end }} {{ end }}
<script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
<script>
kofiWidgetOverlay.draw('kneel', {
'type': 'floating-chat',
'floating-chat.donateButton.text': 'Support me',
'floating-chat.donateButton.background-color': '#fcbf47',
'floating-chat.donateButton.text-color': '#323842'
});
</script>
+8
View File
@@ -12,6 +12,14 @@
<li><a href="https://bsky.app/profile/{{ . }}"><i class="fa-brands fa-bluesky"></i></a></li> <li><a href="https://bsky.app/profile/{{ . }}"><i class="fa-brands fa-bluesky"></i></a></li>
{{ end }} {{ end }}
{{ with .Site.Params.Social.Signal }}
<li><a href="https://signal.me/#eu/{{ . }}"><i class="fa-brands fa-signal-messenger"></i></a></li>
{{ end }}
{{ with .Site.Params.Social.Keybase }}
<li><a href="https://keybase.io/{{ . }}"><i class="fa-brands fa-keybase"></i></a></li>
{{ end }}
{{ with .Site.Params.Social.LinkedIn }} {{ with .Site.Params.Social.LinkedIn }}
<li><a href="https://linkedin.com/in/{{ . }}"><i class="fa-brands fa-linkedin"></i></a></li> <li><a href="https://linkedin.com/in/{{ . }}"><i class="fa-brands fa-linkedin"></i></a></li>
{{ end }} {{ end }}