Skip to content

Commit

Permalink
Magazine article titles (#1062)
Browse files Browse the repository at this point in the history
* Article titles font-weight-bold

* Use correct class
  • Loading branch information
brylie committed May 8, 2024
1 parent 8216f0a commit e52abdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions magazine/templates/magazine/magazine_issue.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <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 %}">
<a href="{% pageurl featured_article %}" class="fw-bold">
{{ featured_article.title }}
</a>
by
Expand All @@ -49,7 +49,7 @@ <h2 class="h3 ms-4">
<ul class="list-unstyled ms-5">
{% for article in department.list %}
<li class="mb-2">
<a href="{% pageurl article %}">
<a href="{% pageurl article %}" class="fw-bold">
{{ article }} {% if article.is_featured %}(featured){% endif %}
</a>
by
Expand Down

0 comments on commit e52abdd

Please sign in to comment.