oe7drt-website/layouts/partials/extend-footer.html

76 lines
1.9 KiB
HTML
Raw Normal View History

2023-11-15 22:25:12 +01:00
<div class="flex items-center justify-between">
<div>
<p class="text-xs text-neutral-500 dark:text-neutral-400">
Served> with
<a
class="hover:underline hover:decoration-primary-400 hover:text-primary-500"
href="https://archlinux.org/"
target="_blank"
rel="noopener noreferrer"
>Arch Linux</a
>
and
<a
class="hover:underline hover:decoration-primary-400 hover:text-primary-500"
href="https://httpd.apache.org/"
target="_blank"
rel="noopener noreferrer"
>Apache httpd</a
>
<a
class="hover:underline hover:decoration-primary-400 hover:text-primary-500"
href="/feed.xml"
target="_blank"
rel="noopener"
>Atom feed</a
>
<a
class="hover:underline hover:decoration-primary-400 hover:text-primary-500"
href="/feed.json"
target="_blank"
rel="noopener"
>Json feed</a
>
</p>
</div>
2023-11-15 22:25:12 +01:00
</div>
{{ with resources.Get "js/lightbox.js" }} {{ if hugo.IsDevelopment }} {{ with .
| js.Build }}
<script
defer
type="text/javascript"
src="{{ .RelPermalink }}"
data-copy="Copy"
data-copied="Copied"
></script>
{{ end }} {{ else }} {{ $opts := (dict "minify" true "targetPath"
"js/lightbox.js") }} {{ with . | js.Build $opts | fingerprint }}
<script
defer
type="text/javascript"
src="{{ .RelPermalink }}"
data-copy="Copy"
data-copied="Copied"
integrity="{{ .Data.Integrity }}"
></script>
{{ end }} {{ end }} {{ end }} {{ with resources.Get "css/lightbox.css" }} {{ if
hugo.IsDevelopment }} {{ with . }}
<link
type="text/css"
rel="stylesheet"
media="screen,print"
href="{{ .RelPermalink }}"
/>
{{ end }} {{ else }} {{ with . | fingerprint }}
<link
type="text/css"
rel="stylesheet"
media="screen,print"
href="{{ .RelPermalink }}"
integrity="{{ .Data.Integrity }}"
/>
{{ end }} {{ end }} {{ end }}