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