summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/breadcrumbs.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/templates/gstudio/tags/breadcrumbs.html')
-rw-r--r--gstudio/templates/gstudio/tags/breadcrumbs.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/gstudio/templates/gstudio/tags/breadcrumbs.html b/gstudio/templates/gstudio/tags/breadcrumbs.html
new file mode 100644
index 0000000..c7a5361
--- /dev/null
+++ b/gstudio/templates/gstudio/tags/breadcrumbs.html
@@ -0,0 +1,7 @@
+{% for crumb in breadcrumbs %}
+{% if not forloop.last %}
+<a href="{{ crumb.url }}" title="{{ crumb.name }}">{{ crumb.name }}</a> {{ separator }}
+{% else %}
+ {{ crumb.name }}
+{% endif %}
+{% endfor %}