Skip to content
Snippets Groups Projects
Select Git revision
  • 4df946e981d7657cc041c73afaaf323d03be15c1
  • master default
  • prez
3 results

recent_posts.html

Blame
  • user avatar
    mazenovi authored
    4df946e9
    History
    recent_posts.html 598 B
    {% if DISPLAY_RECENT_POSTS_ON_SIDEBAR %}
      {% from 'includes/sidebar/macros.jinja' import title %}
      {% if RECENT_POST_COUNT is not defined %}
        {% set RECENT_POST_COUNT = 5 %}
      {% endif %}
    
    <!-- Sidebar/Recent Posts -->
    <li class="list-group-item">
      <h4>{{ title(_('Recent Posts'), DISABLE_SIDEBAR_TITLE_ICONS) }}</h4>
      <ul class="list-group" id="recentposts">
        {% for article in articles[:RECENT_POST_COUNT] %}
        <li class="list-group-item">
          {%- include 'includes/sidebar/article-li.html' -%}
        </li>
        {% endfor %}
      </ul>
    </li>
    <!-- End Sidebar/Recent Posts -->
    {% endif %}