2025-05-03 22:46:59 -05:00

38 lines
1.4 KiB
Plaintext

@args articles: Zmpl.Array, allowed: bool
<html>
<head>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/styles.css" />
<title> {{.title}} </title
</head>
<body>
<div class="mx-auto max-w-3xl mt-sm">
<h1 class="text-3xl font-bold mb-4">Hello, I like doing things.</h1>
<p class="text-lg mb-6">I created this website using Jetzig in order to store things I do.</p>
<div class="mb-8">
<a href="/blogs" class="text-blue-500 hover:underline">Blog</a>
@if ($.allowed)
<a href="/logout" class="text-blue-500 hover:underline ml-4">Logout</a>
@else
<a href="/login" class="text-blue-500 hover:underline ml-4">Login</a>
@end
<a href="#" class="text-blue-500 hover:underline ml-4">Gitea instance</a>
<a href="#" class="text-blue-500 hover:underline ml-4">IRC</a>
<a href="#" class="text-blue-500 hover:underline ml-4">Tor url</a>
<a href="#" class="text-blue-500 hover:underline ml-4">RSS feed</a>
<a href="mailto:me@yuzucchii.xyz" class="text-blue-500 hover:underline ml-4">E-mail</a>
</div>
@for (.articles) |article| {
@partial root/article_blob(title: article.title, blob: article.content)
}
</div>
</body>
</html>