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

30 行
908 B

  1. {% block title %}{{ blog_title or "Blog" }}{% endblock %}
  2. {% block header %}<h2>{{ blog_title or "Blog" }}</h2>{% endblock %}
  3. {% block content %}
  4. <div class="blog-list-content">
  5. {% if blog_introduction %}
  6. <p>{{ blog_introduction }}</p>
  7. {% endif %}
  8. <h3 id="blot-subtitle" style="display:none;"></h3>
  9. <br>
  10. <div class="progress progress-striped active">
  11. <div class="progress-bar progress-bar-info" style="width: 100%;"></div>
  12. </div>
  13. <div id="blog-list">
  14. <!-- blog list will be generated dynamically -->
  15. </div>
  16. <div style="text-align: center;">
  17. <button id="next-page" class="btn btn-default"
  18. style="display:none;">More...</button>
  19. </div>
  20. </div>
  21. <script>
  22. {% include "templates/includes/blog.js" %}
  23. </script>
  24. {% endblock %}
  25. {% block footer %}{% include 'templates/includes/blog_footer.html' %}{% endblock %}
  26. {% block sidebar %}{% include "templates/includes/sidebar.html" %}{% endblock %}