diff options
author | ubq323 <ubq323> | 2021-06-23 16:25:51 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-06-23 16:25:51 +0000 |
commit | ddc62e940d7c521801b9d00167acc0b0392e951a (patch) | |
tree | 35c921c6b7d531ce020eb557f9b8fc8b6cadbeb7 /apioforum/templates/view_thread.html | |
parent | 47f78d820a3b31929c146a9952136c4ca9f39ce2 (diff) | |
parent | d6b4dcbf7699543335666c43393f6a25b23815e7 (diff) |
on second thoughts it might be easier to have this all on one branch
Diffstat (limited to 'apioforum/templates/view_thread.html')
-rw-r--r-- | apioforum/templates/view_thread.html | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/apioforum/templates/view_thread.html b/apioforum/templates/view_thread.html index ded2d52..dd41d87 100644 --- a/apioforum/templates/view_thread.html +++ b/apioforum/templates/view_thread.html @@ -1,15 +1,8 @@ -{% from 'common.html' import disp_post,tag %} +{% from 'common.html' import disp_post,tag,thread_breadcrumb %} {% extends 'base.html' %} {% block header %} <h1>{%block title %}{{thread.title}}{% endblock %}</h1> -<nav aria-label="Breadcrumb"> -<ol class="breadcrumbs"> - <li><a href="{{url_for('index')}}">apioforum</a></li> - <li><a href="#">the</a></li> - <li>the</li> -</ol> -</nav> - +{{ thread_breadcrumb(thread) }} {% endblock %} {%block content%} |