diff options
author | Frederick Muriuki Muriithi | 2025-04-28 02:11:25 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-04-28 02:37:45 -0500 |
commit | 4a16f580a25aba122a4990a61e0e96f4692b833c (patch) | |
tree | eb3fd65bad0f4bbaa033a0444edb0f0f18d474a7 /uploader/templates/publications/base.html | |
parent | 77f18b73276d2bf57b52703b48e3b44b3c89c516 (diff) | |
download | gn-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.html | 12 |
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%} |