garden/_layouts/home.html
2020-06-25 16:37:36 +01:00

13 lines
234 B
HTML

---
layout: default
---
{{ content }}
<script type="text/javascript">
// Hack: Replace page-link with "Page Title"
document.querySelectorAll(".markdown-body a[title]").forEach((a) => {
a.innerText = a.title;
});
</script>