*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit 4695f2c1 authored by Moser, Maximilian's avatar Moser, Maximilian
Browse files

Remove page_cover.html

* our version was ancient and less useful than the upstream version
parent c6248424
No related branches found
No related tags found
1 merge request!82Basic compatibility with InvenioRDM v9
......@@ -57,7 +57,6 @@ INSTANCE_THEME_FILE = "less/invenio_theme_tuw/theme.less"
# Override the Invenio-OAuthClient login form
OAUTHCLIENT_SIGNUP_TEMPLATE = "invenio_theme_tuw/login/signup.html"
OAUTHCLIENT_LOGIN_USER_TEMPLATE = "invenio_theme_tuw/login/login_user.html"
ACCOUNTS_COVER_TEMPLATE = "invenio_theme_tuw/login/page_cover.html"
# Flask-WebpackExt
......
{# -*- coding: utf-8 -*-
Copyright (C) 2017-2021 CERN.
Copyright (C) 2020-2022 TU Wien.
Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
#}
{%- extends config.THEME_BASE_TEMPLATE %}
{%- set html_css_classes = ['cover-page'] %}
{%- set body_css_classes = ['ui grid doubling middle center aligned cover-page'] %}
{%- block body %}
<div class="column centered">
{%- block flashmessages %}
{%- from "invenio_theme/macros/messages.html" import flashed_messages with context %}
{{- flashed_messages() }}
{%- endblock flashmessages %}
{%- block page_header %}
<div class="ui basic very padded segment">
{%- block brand %}
{%- if config.THEME_LOGO %}
<a href="/">
<img class="ui centered medium image rdm-logo"
src="{{ url_for('static', filename=config.THEME_LOGO) }}"
alt="{{ _(config.THEME_SITENAME) }}"/>
</a>
{%- elif config.THEME_SITENAME %}
<a href="/" class="text-center">
{{ _(config.THEME_SITENAME) }}
</a>
{%- endif %}
{%- endblock brand %}
</div>
{%- endblock page_header %}
{%- block page_body %}
<div class="container">
<div class="row panel-container">
{%- block panel %}
<div class="column three wide"></div>
<div class="column six wide">
<div class="panel panel-default">
<div class="panel-body">
{%- block panel_content %}
<h3 class="centered panel-free-title">{{ panel_title }}</h3>
{%- endblock panel_content %}
</div>
</div>
</div>
{%- endblock panel %}
</div>
</div>
{%- endblock page_body %}
{%- block page_footer %}
{%- endblock page_footer %}
</div>
{%- endblock body %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment