Skip to content

Commit

Permalink
Fix whitespace in template
Browse files Browse the repository at this point in the history
  • Loading branch information
hriebl committed Oct 29, 2024
1 parent 8b159f3 commit c1a584c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/staticat/templates/dataset.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
<li>
{% if distribution.local %}
<span><a href="{{ distribution.title | urlencode }}">{{ distribution.title }}</a></span>
{% else %}
{%- else -%}
<span><a href="{{ distribution.uri }}">{{ distribution.title }}</a></span>
{% endif %}
{% if distribution.modified %}
{%- endif -%}
{%- if distribution.modified -%}
<span>, aktualisiert am {{ distribution.modified.date() }}</span>
{% endif %}
{% if distribution.byte_size %}
{%- endif -%}
{%- if distribution.byte_size -%}
<span>, Dateigröße: {{ distribution.byte_size }} Bytes</span>
{% endif %}
</li>
Expand Down

0 comments on commit c1a584c

Please sign in to comment.