Просмотр исходного кода

Recent articles should be under single list

Talha Mansoor лет назад: 11
Родитель
Сommit
167c15732d
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      templates/index.html

+ 2 - 2
templates/index.html

@@ -46,19 +46,19 @@
             <header>
             <header>
             <h1 id="recent-posts">Recent Posts <a id="allposts" href="{{ SITEURL }}/archives.html">all posts</a></h1>
             <h1 id="recent-posts">Recent Posts <a id="allposts" href="{{ SITEURL }}/archives.html">all posts</a></h1>
             </header>
             </header>
+            <ul class="list-all-articles">
             {% for article in articles %}
             {% for article in articles %}
             {% if not RECENT_ARTICLES_COUNT %}
             {% if not RECENT_ARTICLES_COUNT %}
             {% set RECENT_ARTICLES_COUNT = 10 %}
             {% set RECENT_ARTICLES_COUNT = 10 %}
             {% endif %}
             {% endif %}
             {% if loop.index0 < RECENT_ARTICLES_COUNT %}
             {% if loop.index0 < RECENT_ARTICLES_COUNT %}
-            <ul class="list-all-articles">
                 <li>
                 <li>
                 <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a> 
                 <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a> 
                 <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
                 <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
                 </li>
                 </li>
-            </ul>
             {% endif %}
             {% endif %}
             {% endfor %}
             {% endfor %}
+            </ul>
         </div>
         </div>
     </div>
     </div>
     {% endif %}
     {% endif %}