minor
This commit is contained in:
parent
dade89cd8a
commit
3a3c633e4f
|
@ -42,7 +42,7 @@
|
|||
<td style="width:250px; background-color:#f7bd00; color:#fff; padding:10px;">
|
||||
<p style="font-size:16px; text-align:center; text-transform:uppercase; font-family:'Century Gothic', Arial, Helvetica, sans-serif;">Web Links</p>
|
||||
{% for weblink in weblinks %}
|
||||
<p style="font-size:13px; font-family:Arial, Helvetica, sans-serif; padding-left:6px; padding-right:6px;">• {{ weblink.box_title }}</p>
|
||||
<p style="font-size:13px; font-family:Arial, Helvetica, sans-serif; padding-left:6px; padding-right:6px;">• {{ weblink.box_title|truncatewords:12 }}</p>
|
||||
{% endfor %}
|
||||
<p style="text-align:right;"><a href="#weblinks" style="color:#fff; text-decoration:none; font-size:12px;">More »</a></p>
|
||||
</td>
|
||||
|
@ -51,7 +51,7 @@
|
|||
<td style="width:250px; background-color:#f7bd00; color:#fff; padding:10px;">
|
||||
<p style="font-size:16px; text-align:center; text-transform:uppercase; font-family:'Century Gothic', Arial, Helvetica, sans-serif;">Bulletin Board</p>
|
||||
{% for bbitem in bbitems %}
|
||||
<p style="font-size:13px; font-family:Arial, Helvetica, sans-serif; padding-left:6px; padding-right:6px;">• {{ bbitem.box_title }}</p>
|
||||
<p style="font-size:13px; font-family:Arial, Helvetica, sans-serif; padding-left:6px; padding-right:6px;">• {{ bbitem.box_title|truncatewords:12 }}</p>
|
||||
{% endfor %}
|
||||
<p style="text-align:right;"><a href="#bbitems" style="color:#fff; text-decoration:none; font-size:12px;">More »</a></p>
|
||||
</td>
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<div class="contentBoxes">
|
||||
<h1>WEB LINKS</h1>
|
||||
{% for weblink in weblinks %}
|
||||
<p>• {{ weblink.box_title }}</p>
|
||||
<p>• {{ weblink.box_title|truncatewords:12 }}</p>
|
||||
{% endfor %}
|
||||
<p class="contentBoxesMore"><a href="#weblinks">More »</a></p>
|
||||
</div><!-- CONTENT BOXES CLOSING -->
|
||||
|
@ -44,7 +44,7 @@
|
|||
<div class="contentBoxes">
|
||||
<h1>BULLETIN BOARD</h1>
|
||||
{% for bbitem in bbitems %}
|
||||
<p>• {{ bbitem.box_title }}</p>
|
||||
<p>• {{ bbitem.box_title|truncatewords:12 }}</p>
|
||||
{% endfor %}
|
||||
<p class="contentBoxesMore"><a href="#bbitems">More »</a></p>
|
||||
</div><!-- CONTENT BOXES CLOSING -->
|
||||
|
|
Loading…
Reference in New Issue
Block a user