Compare commits

..

2 Commits

Author SHA1 Message Date
Christoph Ladurner
c8035571be release v4.11.3 2023-06-07 23:36:30 +02:00
Christoph Ladurner
6aba6bcaa0 fix: frontpage upload buttons small monitor 2023-06-07 23:36:08 +02:00
3 changed files with 30 additions and 20 deletions

View File

@@ -8,6 +8,11 @@
Changes
=======
Version v4.11.3 (release 2023-06-07)
- fix: frontpage upload buttons small monitor
Version v4.11.2 (release 2023-06-01)
- frontpage: layout changes

View File

@@ -10,6 +10,6 @@
from .ext import InvenioThemeTugraz
__version__ = "4.11.2"
__version__ = "4.11.3"
__all__ = ("__version__", "InvenioThemeTugraz")

View File

@@ -109,25 +109,30 @@
<div class="ui segment" style="padding-bottom: 10px;">
<h4>{{ _("You can upload different types of records:") }}</h4>
<p style="margin: 14px">
<span class="ui left floated" style="text-align: justify; width:260px; display:inline-block;">
{{ _("Visibility of uploaded content is maximized through synchronization with data hubs (DataCite).") }}
</span>
<a class="ui positive right floated button" style="width:250px; display:inline-block;" href="me/uploads" title="Research Data">
<i aria-hidden="true" class="upload icon"></i>
{{ _("Upload Research Output") }}
</a>
</p>
<p style="margin: 14px;">
<span class="ui left floated" style="text-align: justify; width:260px; display:inline-block;">
{{ _("Open Educational Resources (OER) will be visible on various discovery tools like the OERhub.") }}
</span>
<a class="ui positive right floated button" style="width:250px; display:inline-block;" href="lom/uploads" title="Open Educational Resources">
<i aria-hidden="true" class="upload icon"></i>
{{ _("Upload OER") }}
</a>
</p>
<div class="ui grid">
<div class="sixteen wide mobile eight wide computer column">
<span>
{{ _("Visibility of uploaded content is maximized through synchronization with data hubs (DataCite).") }}
</span>
</div>
<div class="sixteen wide mobile eight wide computer column">
<a class="ui fluid positive button" href="me/uploads" title="Research Data">
<i aria-hidden="true" class="upload icon"></i>
{{ _("Upload Research Output") }}
</a>
</div>
<div class="sixteen wide mobile eight wide computer column">
<span>
{{ _("Open Educational Resources (OER) will be visible on various discovery tools like the OERhub.") }}
</span>
</div>
<div class="sixteen wide mobile eight wide computer column">
<a class="ui fluid positive button" href="lom/uploads" title="Open Educational Resources">
<i aria-hidden="true" class="upload icon"></i>
{{ _("Upload OER") }}
</a>
</div>
</div>
</div>
<!--contact us-->