Skip to content

Commit 7fabe94

Browse files
author
delphidabbler
committed
Add flag glyph to notes that item is mothballed
1 parent 0f41f1a commit 7fabe94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

codelib.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h3>{{ item.title | escape }}</h3>
2222
</div>
2323
<div class="panel-body">
2424
<p>{{ item.summary | escape }}</p>
25-
{% if item.mothballed %}<p class="text-warning"><strong>Note:</strong> this item is mothballed. It is being neither developed nor supported.</p>{% endif %}
25+
{% if item.mothballed %}<p class="text-warning"><span class="fa fa-flag" aria-hidden="true"></span><span class="sr-only">Note</span> This item is mothballed. It is being neither developed nor supported.</p>{% endif %}
2626
</div>
2727
<div class="panel-footer text-right">
2828
<a href="{{ item.more-info }}" class="btn btn-default">More info&hellip;</a>

programs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h3>{{ program.title | escape }}</h3>
2121
</div>
2222
<div class="panel-body">
2323
<p>{{ program.summary | escape }}</p>
24-
{% if program.mothballed %}<p class="text-warning"><strong>Note:</strong> this program is mothballed. It is being neither developed nor supported.</p>{% endif %}
24+
{% if program.mothballed %}<p class="text-warning"><span class="fa fa-flag" aria-hidden="true"></span><span class="sr-only">Note</span> This program is mothballed. It is being neither developed nor supported.</p>{% endif %}
2525
</div>
2626
<div class="panel-footer text-right">
2727
<a href="{{ program.more-info }}" class="btn btn-default">More info&hellip;</a>

0 commit comments

Comments
 (0)