lugo/layouts/partials/footer.html

12 lines
478 B
HTML
Raw Normal View History

2024-02-07 23:08:16 +00:00
<hr>
<footer>
2024-04-01 16:43:35 +00:00
<p id="xmr" class="copy" onclick="copy()">wallet address here</p>
2024-04-01 14:45:44 +00:00
<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
{{- if .Param "showrss" }}<br><br><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>{{ end }}
2024-04-01 16:43:35 +00:00
</footer>
<script>
function copy() {
let copyText = document.getElementById("xmr");
navigator.clipboard.writeText(copyText.innerText);
}
</script>