mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-22 20:51:58 +00:00
Fixed conflicting embedded quotes
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
<img
|
||||
width="400px"
|
||||
alt="Research Results"
|
||||
src="{{ url_for("static", filename="images/diamond.svg") }}"
|
||||
src="{{ url_for('static', filename='images/diamond.svg') }}"
|
||||
/>
|
||||
</a>
|
||||
<div class="ui right floated text">
|
||||
@@ -48,7 +48,7 @@
|
||||
<img
|
||||
width="400px"
|
||||
alt="Communities"
|
||||
src="{{ url_for("static", filename="images/group-discussion.svg") }}"
|
||||
src="{{ url_for('static', filename='images/group-discussion.svg') }}"
|
||||
/>
|
||||
</a>
|
||||
<div>Overview: Description of Communities</div>
|
||||
@@ -61,7 +61,7 @@
|
||||
<img
|
||||
width="400px"
|
||||
alt="Requests"
|
||||
src="{{ url_for("static", filename="images/umbrella.svg") }}"
|
||||
src="{{ url_for('static', filename='images/umbrella.svg') }}"
|
||||
/>
|
||||
</a>
|
||||
<div>Overview: Description of Requests</div>
|
||||
@@ -112,7 +112,7 @@
|
||||
<img
|
||||
width="400px"
|
||||
alt="Research Results"
|
||||
src="{{ url_for("static", filename="images/diamond.svg") }}"
|
||||
src="{{ url_for('static', filename='images/diamond.svg') }}"
|
||||
/>
|
||||
</div>
|
||||
<div class="ui right floated text">
|
||||
@@ -129,7 +129,7 @@
|
||||
<img
|
||||
width="400px"
|
||||
alt="Publications"
|
||||
src="{{ url_for("static", filename="images/library-book-svgrepo-com.svg") }}"
|
||||
src="{{ url_for('static', filename='images/library-book-svgrepo-com.svg') }}"
|
||||
/>
|
||||
</a>
|
||||
<div>Overview: Description for publications</div>
|
||||
@@ -143,7 +143,7 @@
|
||||
<img
|
||||
width="400px"
|
||||
alt="Open Educational Resources"
|
||||
src="{{ url_for("static", filename="images/play.svg") }}"
|
||||
src="{{ url_for('static', filename='images/play.svg') }}"
|
||||
/>
|
||||
</a>
|
||||
<div>Overview: Description for open educational resources</div>
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
|
||||
{% if records %}
|
||||
<div class="ui centered grid">
|
||||
<a class="ui button more" href="{{ url_for("invenio_search_ui.search") }}">More</a>
|
||||
<a class="ui button more" href="{{ url_for('invenio_search_ui.search') }}">More</a>
|
||||
</div>
|
||||
{%- endif %}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user