update main branch #47
File diff suppressed because one or more lines are too long
|
@ -1,60 +1,30 @@
|
||||||
<?php
|
<?php
|
||||||
//
|
|
||||||
// as for 2021 07 28 this template is not being used
|
|
||||||
// consider deleting it
|
|
||||||
//
|
|
||||||
$archiveSiteHelper = $this->getHelperPluginManager()->get('archiveSiteMeta');
|
$archiveSiteHelper = $this->getHelperPluginManager()->get('archiveSiteMeta');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<section class="collections-list">
|
|
||||||
|
|
||||||
<header>
|
<?php
|
||||||
<h2> Latest in collections</h2>
|
$collections = [];
|
||||||
</header>
|
foreach($sites as $site){
|
||||||
<main class="">
|
$site_data = $archiveSiteHelper->getSiteMetaValues($site);
|
||||||
<article class="">
|
$site_data['id'] = $site->id();
|
||||||
<ul class="accordion" data-responsive-accordion-tabs="accordion small-accordion" data-multi-expand="true" data-allow-all-closed="true" data-deep-link="true">
|
$site_data['url'] = $site->siteUrl();
|
||||||
<li class="accordion-item title" data-accordion-item disabled>
|
$site_data['title'] = $site->title();
|
||||||
<a href="#" class="accordion-title">
|
$site_data['summary'] = nl2br($this->escapeHtml($site->summary()));
|
||||||
<ul class="">
|
array_push($collections, $site_data);
|
||||||
<li class="title">Title</li>
|
}
|
||||||
<li class="curator">Artist</li>
|
//$collections = json_encode($collections, JSON_UNESCAPED_SLASHES);
|
||||||
<li class="collection-name">Collection</li>
|
//$collections = json_encode($collections, JSON_HEX_APOS);
|
||||||
<li class="date">Date</li>
|
//$collections = htmlspecialchars(json_encode($collections), ENT_QUOTES, 'UTF-8');
|
||||||
</ul>
|
//$collections = str_replace("'", "\'", $collections);
|
||||||
</a>
|
$collections = htmlentities(json_encode($collections, JSON_HEX_QUOT), ENT_QUOTES, 'UTF-8');
|
||||||
<div class="accordion-content" data-tab-content>
|
//$collections = json_encode($collections);
|
||||||
<figure>
|
?>
|
||||||
</figure>
|
|
||||||
<p>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<?php
|
<div data-vue-component="archive-list"
|
||||||
// read each omeka site to publish
|
data-collections='<?= $collections ?>'>
|
||||||
foreach($sites as $site):
|
</div>
|
||||||
$site_meta_values = $archiveSiteHelper->getSiteMetaValues($site);
|
|
||||||
// table body build file
|
|
||||||
echo $this->partial('common/site-list-entry', [
|
|
||||||
'site' => $site,
|
<script src="/themes/archive/asset/js/archive-list.js"></script>
|
||||||
'showSummary' => $summaries,
|
|
||||||
'site_meta_values' => $site_meta_values,
|
|
||||||
'archive_collections' => $archiveSiteHelper->getCollections(),
|
|
||||||
]);
|
|
||||||
endforeach;
|
|
||||||
?>
|
|
||||||
</ul>
|
|
||||||
</article>
|
|
||||||
</main>
|
|
||||||
<aside>
|
|
||||||
<nav>
|
|
||||||
<?php
|
|
||||||
if (1 == 0):
|
|
||||||
//if ($pagination):
|
|
||||||
echo $this->pagination();
|
|
||||||
endif;
|
|
||||||
?>
|
|
||||||
</nav>
|
|
||||||
</aside>
|
|
||||||
</section>
|
|
||||||
|
|
|
@ -27,8 +27,5 @@
|
||||||
<?= $this->site->title() ?>
|
<?= $this->site->title() ?>
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
<nav class="">
|
|
||||||
<?php echo $this->partial('common/search-form.phtml'); ?>
|
|
||||||
</nav>
|
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in New Issue