Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
_
Browse files Browse the repository at this point in the history
  • Loading branch information
toavina committed Jul 23, 2024
1 parent ea3756c commit 08c0eab
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion ckanext/zarr/templates/header.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
{% ckan_extends %}

{% block header_title %}Zambia Research and<br/>Evaluation Repository{% endblock %}
{% block logo %}zarr_logo.png{% endblock %}

{% block logo %}zarr_logo.png{% endblock %}

{% block nav_items %}
{% if c.userobj %}
{{ h.build_nav_main(
('home.about', _('About')),
('dataset.search', _('Find Data')),
('activity.dashboard', _('My account'))
) }}
{% else %}
{{ h.build_nav_main(
('home.about', _('About')),
('dataset.search', _('Find Data')),
('user.login', _('Log in'))
) }}
{% endif %}
{% endblock %}

0 comments on commit 08c0eab

Please sign in to comment.