ckanext-d4science_theme/ckanext/d4science_theme/templates/footer.html

21 lines
988 B
HTML

{% block header_hide_container_content %}
{% set hideParameter = h.get_request_param('hh', None) %}
{% set hide = h.get_cookie_value('ckan_hide_header') %}
<footer class="site-footer-d4science">
{% if hide=='true' %}
{# Updated and unified the footer, see #18126 #}
<div>
<a href="http://www.gcube-system.org" target="_blank" title="gCube System">gCube</a> Catalogue powered by <a href="http://ckan.org" target="_blank" title="CKAN">CKAN</a>
&nbsp|&nbsp
Access this catalogue using the <a href="https://wiki.gcube-system.org/gcube/GCat_Service" target="_blank" title="gCat Service">gCat APIs</a>
</div>
{% else %}
<div>
<a href="http://www.gcube-system.org" target="_blank" title="gCube System">gCube</a> Catalogue powered by <a href="http://ckan.org" target="_blank" title="CKAN">CKAN</a>
&nbsp|&nbsp
Access this catalogue using the <a href="https://wiki.gcube-system.org/gcube/GCat_Service" target="_blank" title="gCat Service">gCat APIs</a>
</div>
{% endif %}
</footer>
{% endblock %}