Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

24 рядки
708 B

  1. {% block content %}
  2. <div class="container content">
  3. <h2 id="blog-title">{{ blog_title }}</h2>
  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. {% include 'templates/includes/blog_footer.html' %}
  21. <script>
  22. {% include "templates/includes/blog.js" %}
  23. </script>
  24. {% endblock %}