Skip to content

Commit

Permalink
Improved styling in lists of feasts
Browse files Browse the repository at this point in the history
  • Loading branch information
jftsang committed Feb 21, 2022
1 parent 24ba94f commit 84a3c21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion templates/feastDetails.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ <h2>Communion</h2>
{% for f in feasts %}
<li>
<a href="{{ url_for('feast_detail_view', name=f.name) }}"
class="link-info text-decoration-none">
class="{% if f.name == feast.name %}link-info{% else %}link-secondary{% endif %}
text-decoration-none">
{{ f.name }}
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion templates/feasts.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% block title %}Feasts{% endblock %}
{% block content %}
<h1>Feasts</h1>
<ul>
<ul class="list-unstyled">
{% for feast in feasts %}
<li>
<a href="{{ url_for('feast_detail_view', name=feast.name) }}"
Expand Down

0 comments on commit 84a3c21

Please sign in to comment.