forked from leftypol/leftypol
Changes to add recent news to the Recent Posts Theme for the front page
This commit is contained in:
parent
4139277cff
commit
aa8eb39dab
4 changed files with 34 additions and 3 deletions
|
@ -33,7 +33,24 @@
|
|||
<div class="ban" id="global2"> <h2>CYBERPUNK IS DUCK</h2> Pour out the Soykaf, lurk, and read the <a href="https://lainchan.org/rules">rules</a> before posting! </div>
|
||||
<center> <img alt="mascot" class="lain_banner" src="static/duck.png"></center>
|
||||
<br>
|
||||
|
||||
<div class="ban" id="global3">
|
||||
<h2>Latest News</h2>
|
||||
{% if recent_news|count == 0 %}
|
||||
<p style="text-align:center" class="unimportant">(No news to show.)</p>
|
||||
{% else %}
|
||||
{% for entry in recent_news %}
|
||||
<h4 id="{{ entry.id }}">
|
||||
{% if entry.subject %}
|
||||
{{ entry.subject }}
|
||||
{% else %}
|
||||
<em>no subject</em>
|
||||
{% endif %}
|
||||
<span class="unimportant"> — by {{ entry.name }} at {{ entry.time|date(config.post_date, config.timezone) }}</span>
|
||||
</h4>
|
||||
<p>{{ entry.body }}</p>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="ban" id="global">
|
||||
<div class="box left">
|
||||
<h2>Recent Images</h2>
|
||||
|
@ -59,6 +76,7 @@
|
|||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box right">
|
||||
<h2>Stats</h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue