選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

27 行
737 B

  1. {% block title %}{{ blog_title or "Blog" }}{% endblock %}
  2. {% block script %}
  3. window.category = null;
  4. {% endblock %}
  5. {% block content %}
  6. <div class="blog-list-content">
  7. {% if blog_introduction %}
  8. <p class="blog-introduction">{{ blog_introduction }}</p>
  9. {% endif %}
  10. <h3 id="blot-subtitle" class="hide"></h3>
  11. <div id="blog-list">
  12. {% include "templates/includes/list/list.html" %}
  13. </div>
  14. <div class="blog-footer">
  15. <p class="blog-message text-muted"></p>
  16. <div class="text-center">
  17. <button id="next-page" class="btn btn-default"
  18. style="display:none;">More...</button>
  19. </div>
  20. </div>
  21. </div>
  22. {% endblock %}
  23. {% block footer %}{% include 'templates/includes/blog/blog_footer.html' %}{% endblock %}