fix: drop author names
This commit is contained in:
parent
e60b109020
commit
bc5b15962a
2 changed files with 2 additions and 4 deletions
|
@ -124,8 +124,7 @@ layout: main
|
||||||
{% for article in articles | reverse %}
|
{% for article in articles | reverse %}
|
||||||
<li class="mt-1.5 mb-2">
|
<li class="mt-1.5 mb-2">
|
||||||
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
|
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
|
||||||
{{ article.content.title | escape }}{% if article.content.author.name %}
|
{{ article.content.title | escape }}
|
||||||
by {{ article.content.author.name | escape }}{% endif %}
|
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -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 %}
|
{% for article in articles | reverse %}
|
||||||
<li class="mt-1.5 mb-2">
|
<li class="mt-1.5 mb-2">
|
||||||
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
|
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
|
||||||
{{ article.content.title | escape }}{% if article.content.author.name %}
|
{{ article.content.title | escape }}
|
||||||
by {{ article.content.author.name | escape }}{% endif %}
|
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Reference in a new issue