Add blog posts to home screen, make template for webrings, add footer, remove unused stuff
This commit is contained in:
parent
6ce63b3e74
commit
d3d284c9ce
92 changed files with 172 additions and 361 deletions
|
|
@ -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 %}
|
||||
Loading…
Reference in a new issue