iseal-core/site/layouts/_default/home.html
Alan Orth 48d91378d1
layouts/_default/home.html: update intro blurb
Use some text from the draft ISEAL Core proposal.
2021-11-07 21:02:31 +02:00

65 lines
3.8 KiB
HTML

{{ define "title" }}{{ .Site.Title }}{{ end }}
{{ define "main" }}
<body data-bs-spy="scroll" data-bs-target="#navbar-navigation">
<div class="container-fluid">
<div class="row">
<!-- only show menu on large devices -->
<div class="col-lg-2 d-none d-lg-block">
<div class="sticky-top">
<nav id="navbar-navigation" class="navbar navbar-light bg-light flex-column align-items-start p-3">
<a class="navbar-brand" href="#">Navigation</a>
<nav class="nav nav-pills flex-column">
<a class="nav-link" href="#metadata">Metadata</a>
<nav class="nav nav-pills flex-column">
<a class="nav-link ms-3 my-1" href="#required-metadata">Required Metadata</a>
<a class="nav-link ms-3 my-1" href="#optional-metadata">Optional Metadata</a>
</nav>
<a class="nav-link" href="#feedback">Feedback</a>
</nav>
</nav>
</div>
</div>
<!-- main content is 10 columns on large devices, 12 on all others -->
<main class="col-lg-10">
<h1>ISEAL Core Metadata Set Specification</h1>
<p class="lead">This page provides a reference specification for the ISEAL Core Metadata set (ISEAL Core).</p>
<p>ISEAL Core is a set of structured terms and vocabularies that can be used as metadata to describe, share, and reuse different digital resources across the ISEAL Community and broader set of stakeholders. The resources described using the ISEAL are those that sustainability systems typically collect, curate, manage, use, publish and archive. They may be datasets, published research, certificates, videos, images, maps, or other organizational documentation.</p>
<h2 id="metadata">Metadata</h2>
<p>ISEAL Core currently uses elements from the following standard metadata schemas:</p>
<ul>
<li><a href="https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-3">Dublin Core Elements</a> with the <code>dc</code> namespace prefix. These were <a href="http://www.dlib.org/dlib/July95/07weibel.html">originally designated in 1995</a> and are considered deprecated and superseded by Dublin Core Terms. Due to legacy code in the DSpace software we must still use some of these.</li>
<li><a href="https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-2">Dublin Core Terms</a> with the <code>dcterms</code> namespace prefix. These contain the original Dublin Core Terms and add others. As of 2008 these supercede the original Dublin Core Elements.</li>
</ul>
<p>General guidelines for metadata using ISEAL Core:</p>
<ul>
<li><strong>Encoding</strong>: metadata should be encoded in UTF-8 to ensure correct representation of international characters.</li>
<li><strong>Applicability</strong>: metadata should describe what the item is, <em>not what it isn't</em>. If a metadata element is not applicable you should not use it. Do not enter "N/A"!</li>
</ul>
<h3 id="required-metadata">Required Metadata</h3>
{{ range where (where site.RegularPages "Type" "terms") "Params.required" "==" true }}
<div class="col">
{{ .Render "term" }}
</div>
{{ end }}
<h3 id="optional-metadata">Optional Metadata</h3>
<p>These elements are optional, but we strongly suggest that you include as many as you can.</p>
{{ range where (where site.RegularPages "Type" "terms") "Params.required" "==" false }}
<div class="col">
{{ .Render "term" }}
</div>
{{ end }}
<h2 id="feedback">Feedback</h2>
<p>If you have questions/comments please contact ____.</p>
</main>
</div><!-- end .row -->
</div><!-- end .container-fluid -->
{{ end }}
{{- /* vim: set ts=2 sw=2 et: */}}