fix: drop author names

This commit is contained in:
Cory Dransfeldt 2023-05-05 13:12:28 -07:00
parent e60b109020
commit bc5b15962a
No known key found for this signature in database
2 changed files with 2 additions and 4 deletions

View file

@ -124,8 +124,7 @@ layout: main
{% for article in articles | reverse %}
<li class="mt-1.5 mb-2">
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
{{ article.content.title | escape }}{% if article.content.author.name %}
by {{ article.content.author.name | escape }}{% endif %}
{{ article.content.title | escape }}
</a>
</li>
{% endfor %}

View file

@ -41,8 +41,7 @@ By following Federico's steps we can obtain a bearer token to access the API whi
{% for article in articles | reverse %}
<li class="mt-1.5 mb-2">
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
{{ article.content.title | escape }}{% if article.content.author.name %}
by {{ article.content.author.name | escape }}{% endif %}
{{ article.content.title | escape }}
</a>
</li>
{% endfor %}