-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
492ce58
commit 4f419e4
Showing
17 changed files
with
87 additions
and
137 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.logo-container svg { | ||
width: 10em; | ||
height: auto; | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<section class="events"> | ||
<ul class="tablesorter"> | ||
<?php foreach ($page->children()->listed() as $event) : ?> | ||
<li class="event"> | ||
<a href="<?= $event->url() ?>"> | ||
<?php if ($event->title()->isNotEmpty()) : ?> | ||
<span><?= $event->title()->esc() ?></span> | ||
<?php endif ?> | ||
</a> | ||
</li> | ||
<?php endforeach ?> | ||
</ul> | ||
</section> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,5 @@ | ||
<?php snippet('header') ?> | ||
|
||
<section class="events"> | ||
|
||
|
||
<?php if ($events = page('program')) : ?> | ||
<ul id="table-of-events" class="tablesorter"> | ||
|
||
<?php foreach ($events->children()->listed() as $event) : ?> | ||
|
||
<li class="event"> | ||
<a href="<?= $event->url() ?>"> | ||
<?php if ($event->title()->isNotEmpty()) : ?> | ||
<span><?= $event->title()->esc() ?></span> | ||
<?php endif ?> | ||
|
||
|
||
</a> | ||
</li> | ||
|
||
<?php endforeach ?> | ||
</ul> | ||
<?php endif ?> | ||
|
||
</section> | ||
<?php snippet('events') ?> | ||
|
||
<?php snippet('footer') ?> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
<?php snippet('header') ?> | ||
|
||
<h1><?= $page->title()->html() ?></h1> | ||
|
||
<a href="<?= $page->emailSignupLink()->url() ?>">Sign up for our Email Newsletter</a> | ||
<br> | ||
<a href="<?= $page->smsSignupLink()->url() ?>">Sign up for our SMS Newsletter</a> | ||
|
||
<main> | ||
<section class="text"> | ||
<div class="signup"> | ||
<a href="<?= $page->emailSignupLink()->url() ?>">Sign up for our Email Newsletter</a> | ||
</div> | ||
<div class="signup"> | ||
<a href="<?= $page->smsSignupLink()->url() ?>">Sign up for our SMS Newsletter</a> | ||
</div> | ||
</section> | ||
</main> | ||
<?php snippet('footer') ?> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,5 @@ | ||
<?php snippet('header') ?> | ||
|
||
<script> | ||
let string_dylan = | ||
"let me say this about Justine — she was 5 ft 2 & had Hungarian eyes — her belief was that if she could make it with Bo Diddley— she could get herself straight— now Ruthy— she was different— she always wanted to see a cock fight & went to Mexico City when she was 17 & a runaway castoff— she met Zonk when she was 18— Zonk came from her home town— at least that 's what he said when he met her — when they busted up, he said he never heard of the place but that 's beside the point—anyway these three—they make up the Realm Crew...i met them exactly at their table & they took 2 years of sanction from me but i never talk much about it myself— Justine was always trying to prove she existed as if she really needed proof— Ruthy— she was always trying to prove that Bo Diddley existed & Zonk he was trying to prove that he existed just for Ruthy but later on said that he was just trying to prove he existed to himself— me ? i started wondering about whether anybody existed but i never pushed it too much— especially when Zonk was around— Zonk hated himself & when he got too high he thought everybody was a mirror"; | ||
<?php snippet('events') ?> | ||
|
||
|
||
function pathOnDiv(text, pos) { | ||
// Get the coordinates of the point that is the fraction 'pos' along the path | ||
var path = document.getElementById("mypath"); | ||
var pathLength = path.getTotalLength(); | ||
var loc = path.getPointAtLength(pos * pathLength); | ||
|
||
|
||
|
||
|
||
// Make a div | ||
var div = document.createElement("div"); | ||
div.textContent = text; | ||
div.setAttribute("class", "pathDiv"); | ||
div.style.left = loc.x + "px"; | ||
div.style.top = loc.y + "px"; | ||
div.style.position = "absolute"; | ||
document.body.appendChild(div); | ||
} | ||
var slider = document.getElementById("slider"); | ||
|
||
|
||
function moveSlider() { | ||
let sliderVal = slider.value / 100; | ||
console.log(sliderVal) | ||
pathOnDiv(sliderVal, 0.1); | ||
} | ||
var path = document.getElementById("mypath"); | ||
|
||
console.log(path.getTotalLength()); | ||
|
||
for (var i = 0; i < 500; i++) { | ||
let sliderVal = i / 500; | ||
var pathLength = path.getTotalLength(); | ||
console.log(sliderVal) | ||
|
||
pathOnDiv(string_dylan.charAt(i), sliderVal); | ||
var pathLength = path.getTotalLength(); | ||
|
||
} | ||
</script> | ||
<?php snippet('footer') ?> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php snippet('header') ?> | ||
|
||
<main> | ||
<section class="text"> | ||
<div> | ||
<?= kt($page->description()) ?> | ||
</div> | ||
</section> | ||
|
||
<section class="logos"> | ||
|
||
<h2>Funding Support</h2> | ||
<?php foreach ($page->fundingSupport()->toFiles() as $logo) : ?> | ||
<img src="<?= $logo->resize(200)->url() ?>" alt="Funding Support Logo"> | ||
<?php endforeach; ?> | ||
|
||
<h2>Commissioning Partners</h2> | ||
<?php foreach ($page->commissioningPartners()->toFiles() as $logo) : ?> | ||
<img src="<?= $logo->resize(200)->url() ?>" alt="Commissioning Partner Logo"> | ||
<?php endforeach; ?> | ||
|
||
<h2>Presenting Partners</h2> | ||
<?php foreach ($page->presentingPartners()->toFiles() as $logo) : ?> | ||
<img src="<?= $logo->resize(200)->url() ?>" alt="Presenting Partner Logo"> | ||
<?php endforeach; ?> | ||
</section> | ||
</main> | ||
|
||
<?php snippet('footer') ?> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?php | ||
// Redirect to homepage if accessed directly | ||
go('/'); |