-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fatimah
committed
Feb 20, 2024
1 parent
20f598e
commit b876f3e
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{# | ||
-*- coding: utf-8 -*- | ||
Copyright (C) 2023-2024 CERN. | ||
|
||
Invenio App RDM is free software; you can redistribute it and/or modify it | ||
under the terms of the MIT License; see LICENSE file for more details. | ||
#} | ||
|
||
<div class="footer-bottom sub-footer theme-default rel-p-1"> | ||
<div class="ui container"> | ||
<div class="ui grid"> | ||
{%- block footer_bottom_left %} | ||
<div | ||
class="four wide computer six wide tablet sixteen wide mobile column left middle aligned" | ||
> | ||
{% trans cern_data_center="http://information-technology.web.cern.ch/about/computer-centre" %}Powered by | ||
<a href="{{ cern_data_center }}">CERN Data Centre</a>{% endtrans %} | ||
</div> | ||
{%- endblock footer_bottom_left %} | ||
|
||
<div | ||
class="four wide computer four wide tablet sixteen wide mobile column centered middle aligned" | ||
> | ||
<i class="green check circle outline icon"></i> | ||
Verified community | ||
</div> | ||
<div | ||
class="four wide computer six wide tablet sixteen wide mobile column right aligned" | ||
> | ||
{%- block footer_bottom_right %} | ||
<div class="ui horizontal list"> | ||
<div class="item">Status</div> | ||
<div class="item">Privacy policy</div> | ||
<div class="item">Terms of use</div> | ||
<div class="item">Support</div> | ||
</div> | ||
{%- if config.I18N_LANGUAGES %} {% from | ||
"invenio_i18n/macros/language_selector.html" import language_selector_dropdown %} | ||
{{ language_selector_dropdown() }} | ||
{%- endif %} | ||
{%- endblock footer_bottom_right %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> |