-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
39 lines (34 loc) · 993 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: template1
---
<h1><img src="{{ site.baseurl }}{{ site.avatar }}" alt="UH Logo" style="width:50px;height:50px;"> Bayou City DAMS</h1>
<h2>Metadata Application Profile</h2>
<hr>
<p><b>Descriptive:</b>
{% for field in site.data.order.descriptive %}
{% assign element = site.data.elements[field] %}
{% include toc.html %}
{% endfor %}
</p>
<p><b>Administrative:</b>
{% for field in site.data.order.administrative %}
{% assign element = site.data.elements[field] %}
{% include toc.html %}
{% endfor %}
</p>
<hr>
<h3>Descriptive Metadata</h3>
<table class="floating-header" cellspacing="0">
{% for field in site.data.order.descriptive %}
{% assign element = site.data.elements[field] %}
{% include table.html %}
{% endfor %}
</table>
<h3>Administrative Metadata</h3>
<table class="floating-header" cellspacing="0">
{% for field in site.data.order.administrative %}
{% assign element = site.data.elements[field] %}
{% include table.html %}
{% endfor %}
</table>
<br>