54 lines
No EOL
1.3 KiB
Markdown
54 lines
No EOL
1.3 KiB
Markdown
Type: Template
|
|
Title: Landing Page Template
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{weblog-title}</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/styles.css?v0.0.3">
|
|
{feeds}
|
|
</head>
|
|
<body>
|
|
|
|
<div class="header">
|
|
<header>
|
|
<img class="avatar" src="https://cdn.some.pics/deathau/663da4619fdb6.svg" alt="My avatar — A pixelated self-portrait in the style of the 'bitizens' in the mobile game Tiny Tower">
|
|
<h1 class="weblog-title"><a href="{base-path}">{weblog-title}</a></h1>
|
|
{navigation}
|
|
</header>
|
|
</div>
|
|
|
|
<main class="landing">
|
|
|
|
{body}
|
|
|
|
<nav>
|
|
{previous-page}
|
|
{next-page}
|
|
</nav>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<p>Made with <a href="https://weblog.lol">weblog.lol</a>.</p>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/luxon/build/global/luxon.min.js" crossorigin="anonymous"></script>
|
|
<script src="/share.js"></script>
|
|
<script>
|
|
document.querySelectorAll('time:not(.dt-start):not(.dt-end)').forEach(time => {
|
|
const datetime = luxon.DateTime.fromISO(time.getAttribute('datetime'))
|
|
time.innerText = datetime.toRelative()
|
|
});
|
|
document.querySelectorAll("a.external_url:not([href='{external_url}'])").forEach(el => {
|
|
el.addEventListener('click', e => {
|
|
e.preventDefault()
|
|
share(el.href)
|
|
})
|
|
})
|
|
</script>
|
|
|
|
</body>
|
|
</html> |