mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
31 lines
980 B
HTML
31 lines
980 B
HTML
<hr/>
|
|
{{partial "graph.html" .}}
|
|
<div class="page-end">
|
|
<!-- <div class="backlinks-container">-->
|
|
<!-- {{partial "backlinks.html" .}}-->
|
|
<!-- </div>-->
|
|
<div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script defer>
|
|
(() => {
|
|
// remove [[ ]] from links
|
|
const links = document.querySelectorAll('.singlePage article a');
|
|
links.forEach(link => {
|
|
const content = link.textContent;
|
|
const parts = content.split('/');
|
|
const newContent = parts[parts.length - 1];
|
|
if (newContent.indexOf(']]') > -1) {
|
|
link.textContent = newContent.slice(0, -2);
|
|
} else {
|
|
link.textContent = newContent;
|
|
}
|
|
})
|
|
})()
|
|
</script>
|
|
{{partial "contact.html" .}}
|
|
<button class="newsletter-btn" data-tally-open="nrjOON" data-tally-emoji-text="💜" data-tally-emoji-animation="heart-beat">Dołącz do newslettera</button>
|
|
{{partial "newsletter.html" .}}
|