Digital archives + collections are a curated set of items pertaining to a specific topic, often described with some form of standardized metadata, that are shared for use with a public user base. These kinds of projects are among the earliest examples of Digital Humanities work, and generally tend to make public otherwise unavailable material, especially in projects focused on marginalized or silenced voices. In addition to gathering historical materials, digital collections can also actively request first-person accounts and materials in response to specific events.
- Omeka S
- "Connect to the semantic web. Publish items with linked open data."
- WordPress
- Jekyll
- lod_generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php foreach ($elementsForDisplay as $setName => $setElements): ?> | |
<div class="element-set"> | |
<?php if ($showElementSetHeadings): ?> | |
<h2><?php echo html_escape(__($setName)); ?></h2> | |
<?php endif; ?> | |
<?php foreach ($setElements as $elementName => $elementInfo): ?> | |
<div id="<?php echo text_to_id(html_escape("$setName $elementName")); ?>" class="element"> | |
<?php | |
$label = html_escape(__($elementName)); | |
$item_type_name = metadata('item', 'item_type_name'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once dirname(__FILE__) . '/functions.php'; | |
add_filter( | |
array('Display', 'Item', 'Dublin Core', 'Title'), | |
'filter_dc_description' | |
); | |
add_filter( | |
array('Display', 'Item', 'Dublin Core', 'Subject'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#introduction { | |
min-height: 15vh; | |
background-size: contain; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- The following returns all of the files associated with an item. --> | |
<?php if (metadata('item', 'has files')): ?> | |
<div id="itemfiles" class="element"> | |
<h3><?php echo __('Files'); ?></h3> | |
<div class="element-text"><?php echo files_for_item(); ?></div> | |
</div> | |
<?php endif; ?> | |
<?php echo all_element_texts('item'); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Caveats | |
# I'm no shell expert | |
# This is in Bash on a Mac running Mojave | |
# You may need to read the whole thing before using | |
# | |
# Explanation | |
# (hopefully intelligible to the advanced beginner or low intermediate Bash user) | |
# | |
# * Slashes at the line ends tell the shell to consider the next line part of the command | |
# |