Skip to content

Commit e573c1b

Browse files
committed
Handle missing author url
1 parent 2a60eec commit e573c1b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

templates/stuff.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ <h3>
6666
</h3>
6767
<p>
6868
This app was made by
69-
<a href="{{ this.author_url }}">
69+
{% if this.author_url %}<a href="{{ this.author_url }}">{% endif %}
7070
{{ this.author }}
71-
</a>
71+
{% if this.author_url %}</a>{% endif %}
7272
{% if this.author2 %}
7373
and
74-
<a href="{{ this.author2_url }}">
75-
{{ this.author2 }}
76-
</a>
74+
{% if this.author2_url %}<a href="{{ this.author2_url }}">{% endif %}
75+
{{ this.author2 }}
76+
{% if this.author2_url %}</a>{% endif %}
7777
{% endif %}
7878
from
7979
<a href="{{ this.space_url }}">

0 commit comments

Comments
 (0)