Fries
4e17ef7dff
the stylesheet got a new update from my websites stylesheet with the bigger font sizes and i split the hyperlegible font face css into its own file and made the asset code cleaner.
16 lines
371 B
HTML
16 lines
371 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<h1>Meowy Webring</h1>
|
|
<h2>Sites</h2>
|
|
{% for site in sites %}
|
|
{% match site.name %}
|
|
{% when Some with (value) %}
|
|
<p><a href="https://{{ site.url }}">{{ value }}</a></p>
|
|
{% when None %}
|
|
<p><a href="https://{{ site.url }}">{{ site.url }}</a></p>
|
|
{% endmatch %}
|
|
{% endfor %}
|
|
</main>
|
|
{% endblock %}
|