File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,13 @@ <h2 class="mb-3">{{ page.title }}
3232 < div class ="col-12 col-md-10 " id ="metadata ">
3333
3434 {%- assign fields = site.data.config-metadata | where_exp: 'item', 'item.display_name != nil' -%}
35- < div id ="item-metadata ">
36- < dl >
35+ < div id ="item-metadata " class ="table-responsive ">
36+ < table class ="table align-middle ">
37+ < tbody >
3738 {% for f in fields %}{% if page[f.field] %}
38- < dt class ="field "> {{ f.display_name }}:</ dt >
39- < dd class ="field-value ">
39+ < tr >
40+ < th class ="field "> {{ f.display_name }}:</ th >
41+ < td style ="word-wrap: break-word;min-width: 160px;max-width: 160px; " class ="field-value ">
4042 {% if f.browse_link == "true" %}
4143 {% assign topics = page[f.field] | split: ";" %}
4244 {% for t in topics %}
@@ -46,9 +48,11 @@ <h2 class="mb-3">{{ page.title }}
4648 < a href ="{{ page[f.field] }} " target ="_blank " rel ="noopener "> {{ page[f.field] }}</ a >
4749 {% else %}
4850 {{ page[f.field] | replace: '""','"' }}{% endif %}
49- </ dd >
51+ </ td >
52+ </ tr >
5053 {% endif %}{% endfor %}
51- </ dl >
54+ </ tbody >
55+ </ table >
5256 </ div >
5357
5458 {% include item/contact-btn.html %}
You can’t perform that action at this time.
0 commit comments