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.
 
 
 
 
 
 

27 lines
758 B

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