Skip to content

Commit

Permalink
Fix spacing after article title
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie committed May 8, 2024
1 parent e52abdd commit 3597552
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions magazine/templates/magazine/magazine_issue.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ <h2 class="h3 ms-4">Featured Articles</h2>
<ul class="list-unstyled">
{% for featured_article in page.featured_articles.all %}
<li class="ms-5 mb-2">
<a href="{% pageurl featured_article %}" class="fw-bold">
{{ featured_article.title }}
</a>
by
<a href="{% pageurl featured_article %}" class="fw-bold">{{ featured_article.title }}</a>
&nbsp;by
{% for author in featured_article.authors.all %}
{% if author.author.live %}
<a href="{% pageurl author.author %}">{{ author.author }}</a>{% if not forloop.last %},{% endif %}
Expand Down

0 comments on commit 3597552

Please sign in to comment.