Browse Source

dataset view

master
rdrew 2 years ago
parent
commit
3bab2cd839
  1. 9
      templates/content/node--islandora-rdm-dataset.html.twig

9
templates/content/node--islandora-rdm-dataset.html.twig

@ -78,24 +78,31 @@ set node_classes = [
<div>{{ content.field_subjects }}</div> <div>{{ content.field_subjects }}</div>
</td> </td>
</tr> </tr>
{% if content.field_rdm_field_of_research[0] is not empty %}
<tr id="research_field"> <tr id="research_field">
<th class="label" scope="row">Field of Research</th> <th class="label" scope="row">Field of Research</th>
<td> <td>
<div>{{ content.field_rdm_field_of_research }}</div> <div>{{ content.field_rdm_field_of_research }}</div>
</td> </td>
</tr> </tr>
{% endif %}
{% if content.field_rdm_publication_title[0] is not empty %}
<tr id="title"> <tr id="title">
<th class="label" scope="row">Title</th> <th class="label" scope="row">Publication Title</th>
<td> <td>
<div>{{ content.field_rdm_publication_title }}</div> <div>{{ content.field_rdm_publication_title }}</div>
</td> </td>
</tr> </tr>
{% endif %}
{% if content.field_rdm_gemini_uri[0] is not empty %}
<tr id="uri"> <tr id="uri">
<th class="label" scope="row">URI</th> <th class="label" scope="row">URI</th>
<td> <td>
<div>{{ content.field_rdm_gemini_uri }}</div> <div>{{ content.field_rdm_gemini_uri }}</div>
</td> </td>
</tr> </tr>
{% endif %}
{% if content.field_rdm_publication_link[0] is not empty %}
<tr id="publication_link"> <tr id="publication_link">
<th class="label" scope="row">Publication Link</th> <th class="label" scope="row">Publication Link</th>
<td> <td>

Loading…
Cancel
Save