Files
snikket-web-portal/snikket_web/templates/library.j2
2020-03-07 12:38:17 +01:00

11 lines
381 B
Django/Jinja

{% macro box(type, title, slim=False, caller=None) %}
<aside class="box{% if slim %} slim{% endif %} {{ type }}"><header>{{ title }}</header> {{ caller() }}</aside>
{% endmacro %}
{% macro avatar(from_, hash, caller=None) -%}
{%- if hash -%}
<div class="avatar" style="background-image: url('{{ url_for_avatar(from_, hash) }}');"></div>
{%- else -%}
{%- endif -%}
{%- endmacro %}