Homebrewserver.club website https://homebrewserver.club/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
1.4 KiB

{% extends "base.html" %}
{% block content %}
<section id="content">
{% block content_title %}
{% endblock %}
<ol id="post-list">
{% for article in articles_page.object_list if not article.title | lower == 'introduction' %}
<ul class="post-item"><article class="hentry">
<header>
<div class="index-entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></div>
</header>
<div class="post-info">
<time class="published" datetime="{{ article.date.isoformat() }}"> <sup>{{ article.locale_date }}</sup> </time>
<address class="vcard author">
By {% for author in article.authors %}
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
{% endfor %}
</address>
</div><!-- /.post-info -->
<div class="entry-content">
{{ article.summary }}</div>
<!-- /.entry-content -->
<!--<div id="moaaar"><a href="{{SITEURL}}/{{ article.url }}">moaaar</a></div> -->
</article></ul>
{% endfor %}
</ol><!-- /#posts-list -->
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
</section><!-- /#content -->
{% endblock content %}