about summary refs log tree commit diff
path: root/uploader/templates/publications/base.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-04-28 02:11:25 -0500
committerFrederick Muriuki Muriithi2025-04-28 02:37:45 -0500
commit4a16f580a25aba122a4990a61e0e96f4692b833c (patch)
treeeb3fd65bad0f4bbaa033a0444edb0f0f18d474a7 /uploader/templates/publications/base.html
parent77f18b73276d2bf57b52703b48e3b44b3c89c516 (diff)
downloadgn-uploader-4a16f580a25aba122a4990a61e0e96f4692b833c.tar.gz
Initialise entry-point for managing publications.
Diffstat (limited to 'uploader/templates/publications/base.html')
-rw-r--r--uploader/templates/publications/base.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/uploader/templates/publications/base.html b/uploader/templates/publications/base.html
new file mode 100644
index 0000000..db80bfa
--- /dev/null
+++ b/uploader/templates/publications/base.html
@@ -0,0 +1,12 @@
+{%extends "base.html"%}
+
+{%block lvl1_breadcrumbs%}
+<li {%if activelink=="publications"%}
+    class="breadcrumb-item active"
+    {%else%}
+    class="breadcrumb-item"
+    {%endif%}>
+  <a href="{{url_for('publications.index')}}">Publications</a>
+</li>
+{%block lvl2_breadcrumbs%}{%endblock%}
+{%endblock%}