70 lines
2.0 KiB
HTML
70 lines
2.0 KiB
HTML
<footer class="footer wrapper">
|
|
|
|
<span class="footer_item"> </span>
|
|
{{ partial "hcard" . }}
|
|
|
|
<div class="footer_social-icons flex">
|
|
{{- partial "socialIcons.html" site.Params.socialIcons -}}
|
|
<p class="flex justify-center">
|
|
<a href='https://webring.xxiivv.com/#random' target='_blank'>
|
|
<img loading="lazy" width=" 30" height="30" src='https://webring.xxiivv.com/icon.white.svg' />
|
|
</a>
|
|
</p>
|
|
<p>
|
|
<a href="https://xn--sr8hvo.ws/previous">←</a>
|
|
<a href="https://xn--sr8hvo.ws">IndieWeb Webring</a>
|
|
<a href="https://xn--sr8hvo.ws/next">→</a>
|
|
</p>
|
|
<div class="webring">
|
|
<webring-css site="https://fundor333.com"></webring-css>
|
|
<script src="https://djangowebring.com/static/webring.js"></script>
|
|
</div>
|
|
</div>
|
|
<small class="footer_copyright">
|
|
© 2012 - {{ now.Format "2006" }} {{ .Site.Params.author.name }}.
|
|
{{ T "footer.disclaimer" | safeHTML }}
|
|
</small>
|
|
</footer>
|
|
|
|
{{- if .Site.Params.goToTop -}}
|
|
<a href="#" title="{{ T "footer.go_to_top" }}" id="totop">
|
|
{{ partial "svgs/arrowUp.svg" (dict "height" 48 "width" 48) . }}
|
|
</a>
|
|
{{- end -}}
|
|
|
|
{{- $flag := resources.Get "js/codecorner.js" -}}
|
|
<script type="text/javascript" src="{{ $flag.RelPermalink }}"></script>
|
|
|
|
<script defer
|
|
src="https://stats.fundor333.com/script.js"
|
|
data-domains="fundor333.com,www.fundor333.com"
|
|
data-website-id="b8ad3dd1-2f32-4e1a-9e85-2d254aa59fb2">
|
|
</script>
|
|
|
|
<script>
|
|
anchors.options = {
|
|
placement: 'left',
|
|
icon: '❡'
|
|
};
|
|
anchors.add('.e-content > p',);
|
|
</script>
|
|
|
|
<script>
|
|
$(window).on('load', function() {
|
|
// Seleziona tutte le immagini con la classe 'u-photo'
|
|
var images = $('img.u-photo');
|
|
|
|
// Itera su ogni immagine trovata
|
|
images.each(function() {
|
|
// 'this' si riferisce all'elemento immagine corrente
|
|
var currentImage = $(this);
|
|
|
|
// Prende l'altezza calcolata e la imposta come attributo 'height' del tag
|
|
var imageHeight = currentImage.height();
|
|
currentImage.attr('height', imageHeight);
|
|
});
|
|
});
|
|
</script>
|
|
|
|
{{ partial "ko-fi.html" . }}
|