diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index f3e30c4..1e64f79 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,33 +1,40 @@
-
- {{- range $name, $path := .Site.Params.social }}
- {{- if $path }}
- {{- $realName := slicestr $name 2 }}
-
- {{- end }}
- {{- end }}
-
+
+ {{ partial "social_links.html" . }}
Powered by Hugo
-
{{- $current := now.Format "2006" }}
- ©
+ ©
{{ if ne .Site.Params.since $current }}
- {{ .Site.Params.since }} -
+ {{ .Site.Params.since }} -
{{ end }}
{{- $current }}
-
+ {{/* icon heart */}}
+
+ {{ partial "svg/heart.svg" }}
+
- {{if .Site.Copyright }}{{ .Site.Copyright | safeHTML }}{{ else }}{{ .Site.Author.name | safeHTML }}{{ end }}
-
+ {{- if or .Site.Copyright .Site.Author.name -}}
+
+ {{if .Site.Copyright }}{{ .Site.Copyright | safeHTML }}
+ {{ else }}{{ .Site.Author.name | safeHTML }}
+ {{ end }}
+
This work by Salar Rahmanian is licensed under a Creative Commons Attribution 4.0 International License.
Please attribute properly and link back.
-
+ {{- end -}}
+
+
+ {{ if .Site.Params.customFooter }}
+
+ {{ .Site.Params.customFooter | safeHTML }}
+
+ {{ end }}