25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
501 B

  1. <div class="container content">
  2. <hr />
  3. {% if categories %}
  4. <h5>Explore posts by categories</h5>
  5. <ul class="breadcrumb" style="background-color: transparent; padding-left: 20px;">
  6. {% for category in webnotes.conn.sql_list("select name from `tabBlog Category` order by name") %}
  7. <li><a href="blog?category={{ category }}">{{ category }}</a>
  8. {% endfor %}
  9. </ul>
  10. <br><br>
  11. {% endif %}
  12. <p>Show posts by <a href="blog">everyone</a>. Meet the <a href="writers">writers</a> of this blog</p>
  13. </div>