26 lines
540 B
HTML
26 lines
540 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Meowy Webring</title>
|
|
<link rel="stylesheet" href="/public/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<h1>Welcome</h1>
|
|
<h2>Sites</h2>
|
|
{% for site in sites %}
|
|
{% match site.name %}
|
|
{% when Some with (value) %}
|
|
<p><a href="{{ site.url }}">{{ value }}</a></p>
|
|
{% when None %}
|
|
<p><a href="{{ site.url }}">{{ site.url }}</a></p>
|
|
{% endmatch %}
|
|
{% endfor %}
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|