Compare commits
No commits in common. "399dcfdcaf39140804cb61d206476094b03da61a" and "abb51ac63a6ddd4e6595f5994ee2b0e1129fc3a6" have entirely different histories.
399dcfdcaf
...
abb51ac63a
File diff suppressed because one or more lines are too long
|
@ -398,42 +398,12 @@ main {
|
||||||
aside {
|
aside {
|
||||||
background-color: $white;
|
background-color: $white;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-content: center;
|
||||||
h2 {
|
h2 {
|
||||||
margin: $global-margin;
|
margin: $global-margin;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.collections-all {
|
|
||||||
|
|
||||||
}
|
|
||||||
&.collection-single {
|
|
||||||
.slides{
|
|
||||||
background-color: unset;
|
|
||||||
.slide {
|
|
||||||
margin:0 auto;
|
|
||||||
height: unset;
|
|
||||||
width: 100vw;
|
|
||||||
max-height: 10rem;
|
|
||||||
@include breakpoint(large){
|
|
||||||
height: unset;
|
|
||||||
}
|
|
||||||
img,.arc-page-header-img {
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: contain;
|
|
||||||
width: 100vw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
aside {
|
|
||||||
nav {
|
|
||||||
width: 100vw;
|
|
||||||
border-top: $global-border-archive;
|
|
||||||
border-bottom: $global-border-archive;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//end hero
|
//end hero
|
||||||
|
|
||||||
|
|
|
@ -1,34 +1,34 @@
|
||||||
<section class="hero omeka collections-all">
|
<section class="hero omeka">
|
||||||
<main class="slides">
|
<main class="slides">
|
||||||
<?php if ($this->themeSetting('logo')): ?>
|
<?php if ($this->themeSetting('logo')): ?>
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<figure>
|
<figure>
|
||||||
<img src="<?php echo $this->themeSettingAssetUrl('logo'); ?>"
|
<img src="<?php echo $this->themeSettingAssetUrl('logo'); ?>"
|
||||||
title="<?php echo $site->title(); ?>"
|
|
||||||
alt="<?php echo $site->title(); ?>"
|
alt="<?php echo $site->title(); ?>"
|
||||||
|
title="<?php echo $site->title(); ?>"
|
||||||
class="logo" />
|
class="logo" />
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
|
<!-- <p>ARC-HIVE is a curatorial space that gathers artworks that work in the continuum of biomateriality, from DNA, proteins, and cells to full organisms. They can be manipulation, modification or (re)creation of life and living processes.</p> -->
|
||||||
<figure>
|
<figure>
|
||||||
<img src="<?php echo $this->assetUrl('img/ARC-HIVE-logo.svg');?>"
|
<img src="<?php echo $this->assetUrl('img/ARC-HIVE-logo.svg');?>"
|
||||||
|
class="logo"
|
||||||
title="an arc-hive project"
|
title="an arc-hive project"
|
||||||
alt="arc-hive logo"
|
alt="arc-hive logo" />
|
||||||
class="logo" />
|
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
<aside>
|
<aside>
|
||||||
<h2 class="site-title">
|
<h2>
|
||||||
<a href="<?= $this->site->url() ?>">
|
<a href="<?= $this->site->url() ?>">
|
||||||
<?= $this->site->title() ?>
|
<?= $this->site->title() ?>
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
<nav class="">
|
|
||||||
<?php echo $this->partial('common/search-form.phtml'); ?>
|
<?php echo $this->partial('common/search-form.phtml'); ?>
|
||||||
</nav>
|
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -1,21 +1,19 @@
|
||||||
<section class="hero omeka collection-single">
|
<section class="hero omeka">
|
||||||
<main class="slides">
|
<main class="slides">
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<figure>
|
<figure>
|
||||||
<img
|
<img class="arc-page-header-img"
|
||||||
title="an arc-hive project"
|
title="an arc-hive project"
|
||||||
alt="collection logo"
|
alt="collection logo" />
|
||||||
class="arc-page-header-img" />
|
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<aside>
|
<aside>
|
||||||
<h2 class="site-title">
|
<h2>
|
||||||
<a href="<?= $this->site->url() ?>">
|
<a href="<?= $this->site->url() ?>">
|
||||||
<?= $this->site->title() ?>
|
<?= $this->site->title() ?>
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
<nav class="">
|
|
||||||
<?php
|
<?php
|
||||||
echo $site->publicNav()
|
echo $site->publicNav()
|
||||||
->menu()
|
->menu()
|
||||||
|
@ -23,6 +21,7 @@
|
||||||
->renderPartialWithParams(['layout' => 'dropdown']);
|
->renderPartialWithParams(['layout' => 'dropdown']);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<?php echo $this->partial('common/search-form.phtml'); ?> </nav>
|
<?php echo $this->partial('common/search-form.phtml'); ?>
|
||||||
|
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in New Issue