summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/partials/plugin
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2021-02-18 21:44:01 +0100
committerChristoph Cullmann <cullmann@kde.org>2021-02-18 21:44:01 +0100
commite9ec93a471d9a753db01b682e75c52b32adf16f2 (patch)
tree5f6d9a2b7d90852965b6d24f9db6a9198570c03b /themes/LoveIt/layouts/partials/plugin
parentbcafaafff80184537a3116de5341a8caa24d63f4 (diff)
use LoveIt theme, self hosted
Diffstat (limited to 'themes/LoveIt/layouts/partials/plugin')
-rw-r--r--themes/LoveIt/layouts/partials/plugin/analytics.html22
-rw-r--r--themes/LoveIt/layouts/partials/plugin/compatibility.html22
-rw-r--r--themes/LoveIt/layouts/partials/plugin/icon.html13
-rw-r--r--themes/LoveIt/layouts/partials/plugin/image.html38
-rw-r--r--themes/LoveIt/layouts/partials/plugin/link.html9
-rw-r--r--themes/LoveIt/layouts/partials/plugin/script.html25
-rw-r--r--themes/LoveIt/layouts/partials/plugin/share.html199
-rw-r--r--themes/LoveIt/layouts/partials/plugin/social.html11
-rw-r--r--themes/LoveIt/layouts/partials/plugin/style.html31
9 files changed, 370 insertions, 0 deletions
diff --git a/themes/LoveIt/layouts/partials/plugin/analytics.html b/themes/LoveIt/layouts/partials/plugin/analytics.html
new file mode 100644
index 0000000..c4c21fa
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/analytics.html
@@ -0,0 +1,22 @@
+{{- $analytics := .Scratch.Get "analytics" | default dict -}}
+
+{{- if $analytics.enable -}}
+ {{- /* Google Analytics */ -}}
+ {{- with $analytics.google.id -}}
+ <script type="text/javascript">
+ window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());
+ gtag('config', '{{ . }}'{{ if $analytics.google.anonymizeIP }}, { 'anonymize_ip': true }{{ end }});
+ </script>
+ {{- printf "https://www.googletagmanager.com/gtag/js?id=%v" . | dict "Async" true "Source" | partial "plugin/script.html" -}}
+ {{- end -}}
+
+ {{- /* Fathom Analytics */ -}}
+ {{- with $analytics.fathom.id -}}
+ <script type="text/javascript">
+ window.fathom=window.fathom||function(){(fathom.q=fathom.q||[]).push(arguments);};
+ fathom('set', 'siteId', '{{ . }}');
+ fathom('trackPageview');
+ </script>
+ {{- dict "Source" ($analytics.fathom.server | default "cdn.usefathom.com" | printf "https://%v/tracker.js") "Async" true "Attr" "id=fathom-script" | partial "plugin/script.html" -}}
+ {{- end -}}
+{{- end -}}
diff --git a/themes/LoveIt/layouts/partials/plugin/compatibility.html b/themes/LoveIt/layouts/partials/plugin/compatibility.html
new file mode 100644
index 0000000..b460f18
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/compatibility.html
@@ -0,0 +1,22 @@
+{{- $compatibility := .Site.Params.compatibility | default dict -}}
+{{- $cdn := .Scratch.Get "cdn" | default dict -}}
+{{- $fingerprint := .Scratch.Get "fingerprint" -}}
+
+{{- /* Polyfill.io */ -}}
+{{- if $compatibility.polyfill -}}
+ {{- $features := slice -}}
+ {{- range resources.Get "data/polyfill.yml" | transform.Unmarshal -}}
+ {{- range . -}}
+ {{- $features = $features | append . -}}
+ {{- end -}}
+ {{- end -}}
+ {{- with $features | uniq -}}
+ {{- delimit . "%2C" | printf "https://polyfill.io/v3/polyfill.min.js?features=%v" | dict "Source" | dict "Scratch" $.Scratch "Data" | partial "scratch/script.html" -}}
+ {{- end -}}
+{{- end -}}
+
+{{- /* object-fit-images */ -}}
+{{- if $compatibility.objectFit -}}
+ {{- $source := $cdn.objectFitImagesJS | default "lib/object-fit-images/ofi.min.js" -}}
+ {{- dict "Source" $source "Fingerprint" $fingerprint | dict "Scratch" .Scratch "Data" | partial "scratch/script.html" -}}
+{{- end -}}
diff --git a/themes/LoveIt/layouts/partials/plugin/icon.html b/themes/LoveIt/layouts/partials/plugin/icon.html
new file mode 100644
index 0000000..5bc2a11
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/icon.html
@@ -0,0 +1,13 @@
+{{- with .Class -}}
+ <i class="{{ . }}"></i>
+{{- else -}}
+ {{- $src := .Src -}}
+ {{- with .Simpleicons -}}
+ {{- $prefix := $.Prefix | default "lib/simple-icons/icons" | strings.TrimSuffix "/" -}}
+ {{- $src = printf "%v/%v.svg" $prefix . -}}
+ {{- end -}}
+ {{- if (urls.Parse $src).Host | not -}}
+ {{- $src = (resources.Get $src | minify).RelPermalink -}}
+ {{- end -}}
+ <i data-svg-src="{{ $src }}"></i>
+{{- end -}}
diff --git a/themes/LoveIt/layouts/partials/plugin/image.html b/themes/LoveIt/layouts/partials/plugin/image.html
new file mode 100644
index 0000000..84a61b3
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/image.html
@@ -0,0 +1,38 @@
+{{- /* lazysizes and lightgallery.js */ -}}
+{{- $src := .Src -}}
+{{- with dict "Path" .Src "Resources" .Resources | partial "function/resource.html" -}}
+ {{- $src = .RelPermalink -}}
+{{- end -}}
+
+{{- $small := .SrcSmall | default $src -}}
+{{- with dict "Path" .SrcSmall "Resources" .Resources | partial "function/resource.html" -}}
+ {{- $small = .RelPermalink -}}
+{{- end -}}
+
+{{- $large := .SrcLarge | default $src -}}
+{{- with dict "Path" .SrcLarge "Resources" .Resources | partial "function/resource.html" -}}
+ {{- $large = .RelPermalink -}}
+{{- end -}}
+
+{{- $alt := .Alt | default $src -}}
+{{- $loading := resources.Get "svg/loading.svg" | minify -}}
+{{- if .Linked -}}
+ <a class="lightgallery" href="{{ $large | safeURL }}" title="{{ .Title | default $alt }}" data-thumbnail="{{ $small | safeURL }}"{{ with .Caption }} data-sub-html="<h2>{{ . }}</h2>{{ with $.Title }}<p>{{ . }}</p>{{ end }}"{{ end }}{{ with .Rel }} rel="{{ . }}"{{ end }}>
+ <img
+ class="lazyload{{ with .Class }} {{ . }}{{ end }}"
+ src="{{ $loading.RelPermalink }}"
+ data-src="{{ .Src | safeURL }}"
+ data-srcset="{{ $small | safeURL }}, {{ .Src | safeURL }} 1.5x, {{ $large | safeURL }} 2x"
+ data-sizes="auto"
+ alt="{{ $alt }}"{{ with .Height }} height="{{ . }}"{{ end }}{{ with .Width }} width="{{ . }}"{{ end }} />
+ </a>
+{{- else -}}
+ <img
+ class="lazyload{{ with .Class }} {{ . }}{{ end }}"
+ src="{{ $loading.RelPermalink }}"
+ data-src="{{ .Src | safeURL }}"
+ data-srcset="{{ $small | safeURL }}, {{ .Src | safeURL }} 1.5x, {{ $large | safeURL }} 2x"
+ data-sizes="auto"
+ alt="{{ $alt }}"
+ title="{{ .Title | default $alt }}"{{ with .Height }} height="{{ . }}"{{ end }}{{ with .Width }} width="{{ . }}"{{ end }} />
+{{- end -}}
diff --git a/themes/LoveIt/layouts/partials/plugin/link.html b/themes/LoveIt/layouts/partials/plugin/link.html
new file mode 100644
index 0000000..ceaefc6
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/link.html
@@ -0,0 +1,9 @@
+{{- $rel := "" -}}
+<a href="{{ .Destination | safeURL }}"{{ with .Title }} title="{{ . }}"{{ end }}{{ if (urls.Parse .Destination).Host | or .Newtab }}{{ $rel = "noopener noreffer" }} target="_blank"{{ end }} rel="{{ $rel }}{{ with .Rel }} {{ . }}{{ end }}"{{ with .Class }} class="{{ . }}"{{ end }}>
+ {{- with .Icon -}}
+ {{- partial "plugin/icon.html" . -}}
+ {{- end -}}
+ {{- with .Content -}}
+ {{- . | safeHTML -}}
+ {{- end -}}
+</a> \ No newline at end of file
diff --git a/themes/LoveIt/layouts/partials/plugin/script.html b/themes/LoveIt/layouts/partials/plugin/script.html
new file mode 100644
index 0000000..e12e74e
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/script.html
@@ -0,0 +1,25 @@
+{{- if .Content -}}
+ <script type="text/javascript">
+ {{- .Content | safeJS -}}
+ </script>
+{{- else if strings.HasPrefix .Source "<script" -}}
+ {{- safeHTML .Source -}}
+{{- else -}}
+ {{- $src := .Source -}}
+ {{- $integrity := .Integrity -}}
+ {{- if (urls.Parse $src).Host | not -}}
+ {{- $resource := resources.Get $src -}}
+ {{- with .Template -}}
+ {{- $resource = $resource | resources.ExecuteAsTemplate . $.Context -}}
+ {{- end -}}
+ {{- if .Minify -}}
+ {{- $resource = $resource | minify -}}
+ {{- end -}}
+ {{- with .Fingerprint -}}
+ {{- $resource = $resource | fingerprint . -}}
+ {{- $integrity = $resource.Data.Integrity -}}
+ {{- end -}}
+ {{- $src = $resource.RelPermalink -}}
+ {{- end -}}
+ <script type="text/javascript" src="{{ $src }}"{{ if .Crossorigin }} crossorigin="anonymous"{{ end }}{{ with $integrity }} integrity="{{ . }}"{{ end }}{{ if .Async }} async{{ end }}{{ if .Defer }} defer{{ end }}{{ with .Attr }} {{ . | safeHTMLAttr }}{{ end }}></script>
+{{- end -}}
diff --git a/themes/LoveIt/layouts/partials/plugin/share.html b/themes/LoveIt/layouts/partials/plugin/share.html
new file mode 100644
index 0000000..941647c
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/share.html
@@ -0,0 +1,199 @@
+{{- $share := (.Scratch.Get "params").share | default dict -}}
+
+{{- if $share.enable -}}
+ {{- /* 001: Twitter */ -}}
+ {{- if $share.Twitter -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Twitter" data-sharer="twitter" data-url="{{ .Permalink }}" data-title="{{ .Title }}"{{ with .Site.Params.Social.Twitter }} data-via="{{ . }}"{{ end }}{{ with .Params.tags }} data-hashtags="{{ delimit . `,` }}"{{ end }}>
+ {{- dict "Class" "fab fa-twitter fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 002: Facebook */ -}}
+ {{- if $share.Facebook -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Facebook" data-sharer="facebook" data-url="{{ .Permalink }}"{{ with .Params.tags }} data-hashtag="{{ index . 0 }}"{{ end }}>
+ {{- dict "Class" "fab fa-facebook-square fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 003: Linkedin */ -}}
+ {{- if $share.Linkedin -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Linkedin" data-sharer="linkedin" data-url="{{ .Permalink }}">
+ {{- dict "Class" "fab fa-linkedin fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 004: WhatsApp */ -}}
+ {{- if $share.Whatsapp -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} WhatsApp" data-sharer="whatsapp" data-url="{{ .Permalink }}" data-title="{{ .Title }}" data-web>
+ {{- dict "Class" "fab fa-whatsapp fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 005: Viber */ -}}
+ {{- if $share.Viber -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Viber" data-sharer="viber" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-viber fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 006: Pinterest */ -}}
+ {{- if $share.Pinterest -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Pinterest" data-sharer="pinterest" data-url="{{ .Permalink }}"{{ with .Description }} data-description="{{ . }}"{{ end }}{{ with .Params.featuredImage }} data-image="{{ . }}"{{ end }}>
+ {{- dict "Class" "fab fa-pinterest fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 007: Tumblr */ -}}
+ {{- if $share.Tumblr -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Tumblr" data-sharer="tumblr" data-url="{{ .Permalink }}" data-title="{{ .Title }}"{{ with .Description }} data-caption="{{ . }}"{{ end }}{{ with .Params.tags }} data-tags="{{ delimit . `,` }}"{{ end }}>
+ {{- dict "Class" "fab fa-tumblr fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 008: Hacker News */ -}}
+ {{- if $share.Hackernews -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Hacker News" data-sharer="hackernews" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-hacker-news fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 009: Reddit */ -}}
+ {{- if $share.Reddit -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Reddit" data-sharer="reddit" data-url="{{ .Permalink }}">
+ {{- dict "Class" "fab fa-reddit fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 010: VK */ -}}
+ {{- if $share.VK -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} VK" data-sharer="vk" data-url="{{ .Permalink }}" data-title="{{ .Title }}"{{ with .Description }} data-caption="{{ . }}"{{ end }}{{ with .Params.featuredImage }} data-image="{{ . }}"{{ end }}>
+ {{- dict "Class" "fab fa-vk fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 011: Buffer */ -}}
+ {{- if $share.Buffer -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Buffer" data-sharer="buffer" data-url="{{ .Permalink }}" data-title="{{ .Title }}"{{ with .Site.Params.Social.Twitter }} data-via="{{ . }}"{{ end }}{{ with .Params.featuredImage }} data-picture="{{ . }}"{{ end }}>
+ {{- dict "Class" "fab fa-buffer fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 012: Xing */ -}}
+ {{- if $share.Xing -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Xing" data-sharer="xing" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-xing fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 013: Line */ -}}
+ {{- if $share.Line -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Line" data-sharer="line" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Simpleicons" "line" "Prefix" (.Scratch.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 014: Instapaper */ -}}
+ {{- if $share.Instapaper -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Instapaper" data-sharer="instapaper" data-url="{{ .Permalink }}" data-title="{{ .Title }}" data-description="{{ .Description }}">
+ {{- dict "Simpleicons" "instapaper" "Prefix" (.Scratch.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 015: Pocket */ -}}
+ {{- if $share.Pocket -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Pocket" data-sharer="pocket" data-url="{{ .Permalink }}">
+ {{- dict "Class" "fab fa-get-pocket fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 016: Digg */ -}}
+ {{- if $share.Digg -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Digg" data-sharer="digg" data-url="{{ .Permalink }}">
+ {{- dict "Class" "fab fa-digg fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 017: StumbleUpon */ -}}
+ {{- if $share.Stumbleupon -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} StumbleUpon" data-sharer="stumbleupon" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-stumbleupon fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 018: Flipboard */ -}}
+ {{- if $share.Flipboard -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Flipboard" data-sharer="flipboard" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-flipboard fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 019: 微博 */ -}}
+ {{- if $share.Weibo -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} 微博" data-sharer="weibo" data-url="{{ .Permalink }}" data-title="{{ .Title }}"{{ with .Params.featuredImage }} data-image="{{ . }}"{{ end }}{{ with .Site.Params.Social.Weibo }} data-ralateuid="{{ . }}"{{ end }}>
+ {{- dict "Class" "fab fa-weibo fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 020: 人人 */ -}}
+ {{- if $share.Renren -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} 人人" data-sharer="renren" data-url="{{ .Permalink }}">
+ {{- dict "Class" "fab fa-renren fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 021: Myspace */ -}}
+ {{- if $share.Myspace -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Myspace" data-sharer="myspace" data-url="{{ .Permalink }}" data-title="{{ .Title }}" data-description="{{ .Description }}">
+ {{- dict "Simpleicons" "myspace" "Prefix" (.Scratch.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 022: Blogger */ -}}
+ {{- if $share.Blogger -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Blogger" data-sharer="blogger" data-url="{{ .Permalink }}" data-title="{{ .Title }}" data-description="{{ .Description }}">
+ {{- dict "Class" "fab fa-blogger fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 023: 百度 */ -}}
+ {{- if $share.Baidu -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} 百度" data-sharer="baidu" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Simpleicons" "baidu" "Prefix" (.Scratch.Get "cdn" | default dict).simpleIconsPrefix | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 024: OK.RU */ -}}
+ {{- if $share.Odnoklassniki -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} OK.RU" data-sharer="okru" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-odnoklassniki fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 025: Evernote */ -}}
+ {{- if $share.Evernote -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Evernote" data-sharer="evernote" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-evernote fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 026: Skype */ -}}
+ {{- if $share.Skype -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Skype" data-sharer="skype" data-url="{{ .Permalink }}" data-title="{{ .Title }}">
+ {{- dict "Class" "fab fa-skype fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 027: Trello */ -}}
+ {{- if $share.Trello -}}
+ <a href="javascript:void(0);" title="{{ T `shareOn` }} Trello" data-sharer="trello" data-url="{{ .Permalink }}" data-title="{{ .Title }}" data-description="{{ .Description }}">
+ {{- dict "Class" "fab fa-trello fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+
+ {{- /* 028: Mix */ -}}
+ {{- if $share.Mix -}}
+ <a href="//mix.com/add?url={{ .Permalink }}&amp;description={{ .Title }}" target="_blank" title="{{ T `shareOn` }} Mix">
+ {{- dict "Class" "fab fa-mix fa-fw" | partial "plugin/icon.html" -}}
+ </a>
+ {{- end -}}
+{{- end -}}
diff --git a/themes/LoveIt/layouts/partials/plugin/social.html b/themes/LoveIt/layouts/partials/plugin/social.html
new file mode 100644
index 0000000..e6d2005
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/social.html
@@ -0,0 +1,11 @@
+{{- $destination := "" -}}
+{{- with .Url -}}
+ {{- $destination = . | relLangURL -}}
+{{- else -}}
+ {{- $template := .Template | default "%v" -}}
+ {{- with .Prefix -}}
+ {{- $template = . | strings.TrimSuffix "/" | printf "%v/%%v" -}}
+ {{- end -}}
+ {{- $destination = printf (string $template) .Id -}}
+{{- end -}}
+{{- dict "Destination" $destination "Rel" "me" | merge . | partial "plugin/link.html" -}}
diff --git a/themes/LoveIt/layouts/partials/plugin/style.html b/themes/LoveIt/layouts/partials/plugin/style.html
new file mode 100644
index 0000000..9c9c989
--- /dev/null
+++ b/themes/LoveIt/layouts/partials/plugin/style.html
@@ -0,0 +1,31 @@
+{{- if strings.HasPrefix .Source "<link" -}}
+ {{- safeHTML .Source -}}
+{{- else -}}
+ {{- $href := .Source -}}
+ {{- $integrity := .Integrity -}}
+ {{- $resource := 0 -}}
+ {{- if $href | and (not (urls.Parse $href).Host) -}}
+ {{- $resource = resources.Get $href -}}
+ {{- end -}}
+ {{- with .Content -}}
+ {{- $resource = resources.FromString $.Path . -}}
+ {{- end -}}
+ {{- if $resource -}}
+ {{- with .Template -}}
+ {{- $resource = $resource | resources.ExecuteAsTemplate . $.Context -}}
+ {{- end -}}
+ {{- with .ToCSS -}}
+ {{- $options := . | merge (dict "outputStyle" "compressed") -}}
+ {{- $resource = $resource | toCSS $options -}}
+ {{- end -}}
+ {{- if .Minify -}}
+ {{- $resource = $resource | minify -}}
+ {{- end -}}
+ {{- with .Fingerprint -}}
+ {{- $resource = $resource | fingerprint . -}}
+ {{- $integrity = $resource.Data.Integrity -}}
+ {{- end -}}
+ {{- $href = $resource.RelPermalink -}}
+ {{- end -}}
+ <link rel="stylesheet" href="{{ $href }}"{{ if .Crossorigin }} crossorigin="anonymous"{{ end }}{{ with $integrity }} integrity="{{ . }}"{{ end }}{{ with .Attr }} {{ . | safeHTMLAttr }}{{ end }}>
+{{- end -}}