adds arc-hive logo
This commit is contained in:
parent
18e68ce308
commit
4cdcfcf443
|
@ -0,0 +1,8 @@
|
|||
|
||||
|
||||
.archive-logo {
|
||||
width: 80px;
|
||||
}
|
||||
.archive-page-title {
|
||||
text-align: center;
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 241 KiB |
|
@ -20,6 +20,7 @@ $this->headScript()->prependFile($this->assetUrl('js/global.js', 'Omeka'));
|
|||
$this->headScript()->prependFile($this->assetUrl('js/expand-site-list-item.js'));
|
||||
|
||||
$this->headScript()->prependFile($this->assetUrl('vendor/jquery/jquery.min.js', 'Omeka'));
|
||||
$this->headLink()->prependStylesheet($this->assetUrl("css/archive.css"));
|
||||
$this->trigger('view.layout');
|
||||
$title = $this->pageTitle($site->title());
|
||||
$userBar = $this->userBar();
|
||||
|
@ -29,11 +30,12 @@ $this->htmlElement('body')->appendAttribute('class', $navLayout . '-menu');
|
|||
if ($userBar) {
|
||||
$this->htmlElement('body')->appendAttribute('class', 'user-bar');
|
||||
}
|
||||
|
||||
/*
|
||||
$logo = $this->themeSettingAssetUrl('logo');
|
||||
if ($logo):
|
||||
$title = '<img src="' . $this->escapeHtml($logo) . '">';
|
||||
endif;
|
||||
*/
|
||||
?>
|
||||
<?php echo $this->doctype(); ?>
|
||||
<?php echo $this->htmlElement('html'); ?>
|
||||
|
@ -58,8 +60,18 @@ endif;
|
|||
<a id="skipnav" href="#content"><?php echo $this->translate('Skip to main content'); ?></a>
|
||||
<?php echo $userBar; ?>
|
||||
|
||||
<a href="http://arc-hive.zone">
|
||||
<img class="archive-logo"
|
||||
src="<?= $this->assetUrl("img/arc-hive-logo.jpg") ?>"
|
||||
/>
|
||||
</a>
|
||||
|
||||
<img id="archive_header_img" />
|
||||
|
||||
<h1 id="archive_page_title"
|
||||
class="archive-page-title">
|
||||
</h1>
|
||||
|
||||
<?php
|
||||
//echo $page;
|
||||
//echo $this->container;
|
||||
|
|
|
@ -47,7 +47,7 @@ $collections = $archiveSiteHelper->getCollections();
|
|||
<thead>
|
||||
<tr>
|
||||
<th>Site</th>
|
||||
<th>Curator</th>
|
||||
<th>Artist</th>
|
||||
<th>Collection</th>
|
||||
<th>Date</th>
|
||||
</tr>
|
||||
|
|
|
@ -31,7 +31,6 @@ if ($img_src) {
|
|||
|
||||
<div class="resource-title">
|
||||
<?php echo $this->pageTitle($item->displayTitle(), 2); ?>
|
||||
<h3 class="label"><?php echo $translate('Item'); ?></h3>
|
||||
</div>
|
||||
|
||||
<div class="grid-x">
|
||||
|
|
|
@ -26,7 +26,15 @@ if ($img_src) {
|
|||
</style>
|
||||
<?php } ?>
|
||||
|
||||
<?php /* echo $page->id(); */ ?>
|
||||
<script>
|
||||
$("#archive_page_title").html('<?= $site->title(); ?>');
|
||||
</script>
|
||||
|
||||
<?php /*
|
||||
echo $page->id();
|
||||
$this->pageTitle($page->title());
|
||||
*/
|
||||
?>
|
||||
|
||||
<?php
|
||||
$nav = $site->publicNav();
|
||||
|
|
Loading…
Reference in New Issue