Compare commits
33 Commits
abb51ac63a
...
0ce8f05c6f
Author | SHA1 | Date |
---|---|---|
jorge | 0ce8f05c6f | |
jorge | a0352f8762 | |
jorge | 8bf5006643 | |
chris | f26a558ff1 | |
jorge | f68954df1c | |
jorge | b7a482a8a3 | |
jorge | ac6adfb403 | |
jorge | a061cc3275 | |
jorge | cbb5293728 | |
chris | d3407f57c6 | |
jorge | 72b5c09f28 | |
jorge | ae78aa260f | |
jorge | 990f8398b8 | |
chris | 323fd10438 | |
jorge | 59bc76ac9f | |
jorge | 43043f018b | |
jorge | 08af72a7ba | |
jorge | bab1d5c65d | |
jorge | f10e176744 | |
jorge | c99ef34eaf | |
jorge | c32fcdc520 | |
jorge | d3580b8d75 | |
jorge | 74accb190f | |
jorge | 329d78f6dc | |
jorge | e658789359 | |
jorge | 80caa7c4c4 | |
jorge | d08179aa3b | |
jorge | 399dcfdcaf | |
jorge | 1e52ccf4e4 | |
jorge | 006aeba509 | |
jorge | 9224fb9463 | |
jorge | bb99a4653f | |
jorge | 43326144af |
File diff suppressed because one or more lines are too long
Binary file not shown.
After Width: | Height: | Size: 97 KiB |
|
@ -1,3 +1,33 @@
|
||||||
.card {
|
.card {
|
||||||
padding: $global-padding;
|
padding: $global-padding;
|
||||||
}
|
}
|
||||||
|
.collection-card {
|
||||||
|
ul {
|
||||||
|
&.arc-site-meta {
|
||||||
|
list-style: none;
|
||||||
|
margin: $global-margin 0;
|
||||||
|
li {
|
||||||
|
&:before{
|
||||||
|
content:'';
|
||||||
|
display: inline-block;
|
||||||
|
width: rem-calc(150);
|
||||||
|
min-height: rem-calc($global-lineheight);
|
||||||
|
}
|
||||||
|
&.artist:before {
|
||||||
|
content:'Artist';
|
||||||
|
}
|
||||||
|
&.date:before {
|
||||||
|
content: 'Year';
|
||||||
|
}
|
||||||
|
&.collection:before {
|
||||||
|
content: 'Collection';
|
||||||
|
}
|
||||||
|
&.tech-document-link:before {
|
||||||
|
//content: 'Keywords';
|
||||||
|
display:inline;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
//@include foundation-switch;
|
//@include foundation-switch;
|
||||||
@include foundation-table;
|
@include foundation-table;
|
||||||
// Basic components
|
// Basic components
|
||||||
@include foundation-badge;
|
//@include foundation-badge;
|
||||||
@include foundation-breadcrumbs;
|
@include foundation-breadcrumbs;
|
||||||
@include foundation-callout;
|
@include foundation-callout;
|
||||||
@include foundation-card;
|
@include foundation-card;
|
||||||
|
@ -82,6 +82,7 @@
|
||||||
|
|
||||||
// global project styles
|
// global project styles
|
||||||
|
|
||||||
|
@import "global/print-pdf";
|
||||||
@import "global/wp-overrides"; //errors
|
@import "global/wp-overrides"; //errors
|
||||||
@import "global/wp-admin"; //errors
|
@import "global/wp-admin"; //errors
|
||||||
@import "global/typography";
|
@import "global/typography";
|
||||||
|
|
|
@ -66,14 +66,17 @@ body:not(.browse) #content {
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// line breaks generated by omekas
|
||||||
.break {
|
.break {
|
||||||
// width: 100%;
|
width: 100%;
|
||||||
// margin: (2 * $global-margin) 0;
|
margin: (2 * $global-margin) 0;
|
||||||
// clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.break.opaque {
|
.break.opaque {
|
||||||
// border-top: 1px solid $light-gray;
|
border-top: 1px solid $body-background;
|
||||||
|
}
|
||||||
|
.break.transparent {
|
||||||
|
border-top: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Styles for vertical menu layout */
|
/* Styles for vertical menu layout */
|
||||||
|
|
|
@ -68,32 +68,25 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// page category
|
//
|
||||||
|
// .contain selector for max-width
|
||||||
//--------------
|
//--------------
|
||||||
.index{
|
.contain-width {
|
||||||
main {
|
|
||||||
article {
|
|
||||||
header {
|
|
||||||
.entry-title {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
section {
|
|
||||||
}
|
|
||||||
.entry-content,.omekas-entry-content {
|
.entry-content,.omekas-entry-content {
|
||||||
@include breakpoint(small){
|
@include breakpoint(small){
|
||||||
}
|
}
|
||||||
@include breakpoint(medium){
|
@include breakpoint(medium){
|
||||||
max-width: unset;
|
max-width: 50rem;
|
||||||
}
|
}
|
||||||
@include breakpoint(xlarge){
|
@include breakpoint(xlarge){
|
||||||
max-width: unset;
|
max-width: 50rem;
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// news category
|
// news category
|
||||||
//--------------
|
//--------------
|
||||||
|
@ -398,12 +391,42 @@ main {
|
||||||
aside {
|
aside {
|
||||||
background-color: $white;
|
background-color: $white;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-content: center;
|
align-items: 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,4 +1,8 @@
|
||||||
<?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');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,8 @@ $hasResults = false;
|
||||||
<?php
|
<?php
|
||||||
$img_src = $this->getHelperPluginManager()->get('archiveSiteMeta')->getSiteImage($this->site);
|
$img_src = $this->getHelperPluginManager()->get('archiveSiteMeta')->getSiteImage($this->site);
|
||||||
if (!$img_src) {
|
if (!$img_src) {
|
||||||
$img_src = '/themes/archive/asset/img/default-header-image.jpg';
|
//$img_src = '/themes/archive/asset/img/default-header-image.jpg';
|
||||||
|
$img_src = $this->assetUrl('img/ARC-HIVE-logo.svg');
|
||||||
}
|
}
|
||||||
if ($this->site->title() == "Collections") {
|
if ($this->site->title() == "Collections") {
|
||||||
$image_height = "300px";
|
$image_height = "300px";
|
||||||
|
|
|
@ -17,14 +17,6 @@
|
||||||
</main>
|
</main>
|
||||||
<nav>
|
<nav>
|
||||||
<menu class="">
|
<menu class="">
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Este menu no lo genera Omeka.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Creo que emula el menu del wordpress.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<?php /*
|
<?php /*
|
||||||
echo $site->publicNav()
|
echo $site->publicNav()
|
||||||
->menu()
|
->menu()
|
||||||
|
|
|
@ -11,23 +11,23 @@
|
||||||
title="an arc-hive project"
|
title="an arc-hive project"
|
||||||
alt="arc-hive logo" />
|
alt="arc-hive logo" />
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<h1 class="site-name"><?php echo $site->title(); ?></h1>
|
<h1 class="site-name">
|
||||||
<h2 class="site-description">an integrative digital bio-art platform</h2>
|
<?php echo $site->title(); ?>
|
||||||
|
</h1>
|
||||||
|
<h2 class="site-description">
|
||||||
|
an integrative digital bio-art platform
|
||||||
|
</h2>
|
||||||
</a>
|
</a>
|
||||||
</main>
|
</main>
|
||||||
<nav>
|
<nav>
|
||||||
<menu class="">
|
<menu class="">
|
||||||
<ul>
|
<?php //
|
||||||
<li>
|
// Segun el diseño, este menu no existe
|
||||||
Segun el diseño, este menu no existe
|
// ----------
|
||||||
</li>
|
// echo $site->publicNav()
|
||||||
</ul>
|
// ->menu()
|
||||||
<?php /*
|
// ->setPartial('common/foundation-navigation.phtml')
|
||||||
echo $site->publicNav()
|
// ->renderPartialWithParams(['layout' => 'dropdown']);
|
||||||
->menu()
|
|
||||||
->setPartial('common/foundation-navigation.phtml')
|
|
||||||
->renderPartialWithParams(['layout' => 'dropdown']);
|
|
||||||
*/
|
|
||||||
?>
|
?>
|
||||||
</menu>
|
</menu>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
@ -1,34 +1,34 @@
|
||||||
<section class="hero omeka">
|
<section class="hero omeka collections-all">
|
||||||
<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'); ?>"
|
||||||
alt="<?php echo $site->title(); ?>"
|
|
||||||
title="<?php echo $site->title(); ?>"
|
title="<?php echo $site->title(); ?>"
|
||||||
|
alt="<?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>
|
<h2 class="site-title">
|
||||||
<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,19 +1,21 @@
|
||||||
<section class="hero omeka">
|
<section class="hero omeka collection-single">
|
||||||
<main class="slides">
|
<main class="slides">
|
||||||
<section class="slide">
|
<section class="slide">
|
||||||
<figure>
|
<figure>
|
||||||
<img class="arc-page-header-img"
|
<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>
|
<h2 class="site-title">
|
||||||
<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()
|
||||||
|
@ -21,7 +23,6 @@
|
||||||
->renderPartialWithParams(['layout' => 'dropdown']);
|
->renderPartialWithParams(['layout' => 'dropdown']);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<?php echo $this->partial('common/search-form.phtml'); ?>
|
<?php echo $this->partial('common/search-form.phtml'); ?> </nav>
|
||||||
|
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -11,7 +11,7 @@ $showPagePagination = $this->siteSetting('show_page_pagination', true);
|
||||||
$img_src = null;
|
$img_src = null;
|
||||||
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage($page);
|
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage($page);
|
||||||
if (!$img_src) {
|
if (!$img_src) {
|
||||||
$img_src = $this->assetUrl('img/ARC-HIVE-logo.svg');
|
$img_src = $this->assetUrl('img/default-ARC-HIVE-hero-image.jpg');
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in New Issue