18 lines
779 B
HTML
18 lines
779 B
HTML
{% macro root() %}{% if depth == 0 %}.{% else %}..{% endif %}{{ '/..' * (depth-1) }}{% endmacro %}
|
|
{% macro index() %}{% if not noindex %}index.html{% endif %}{% endmacro %}
|
|
{% macro urlcat(s) %}{{ s | replace('/', ' ') | urlencode }}{% endmacro %}
|
|
|
|
{% macro card(work) %}
|
|
<div class="card">
|
|
<a href="{{ root() }}/works/{{ work['id'] }}/{{ index() }}">
|
|
<img src="{{ root() }}/{{ work['thumbnail_path'] }}">
|
|
<div class="card-creators">
|
|
[{% if work['circle'] %}{{ work['circle'] }}{% endif %}{% if work['circle'] and work['authors'] %} ({% endif %}{{ ', '.join(work['authors']) }}{% if work['circle'] and work['authors'] %}){% endif %}]
|
|
</div>
|
|
<div class="card-title">
|
|
{{ work['title'] }}
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{% endmacro %}
|