Add blog posts to home screen, make template for webrings, add footer, remove unused stuff

This commit is contained in:
天クマ 2026-07-03 14:23:21 -03:00
commit d3d284c9ce
92 changed files with 172 additions and 361 deletions

View file

@ -40,4 +40,17 @@
<p>{{ projectDescription }}</p>
</div>
</div>
{% endmacro %}
{% macro webring(opts) %}
<div class="webringGeneric"
style="{% if opts.image %}background-image:url('{{ opts.image | url }}');{% endif %}
{% if opts.color %}background-color:{{ opts.color }};{% endif %}">
<p>{{ opts.text }}</p>
<div class="webringButtons">
{% for link in opts.links %}
{{ link | safe }}
{% endfor %}
</div>
</div>
{% endmacro %}