forked from aarongillett/chomkorosier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheart-of-a-king.php
36 lines (31 loc) · 1.82 KB
/
heart-of-a-king.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php // this is a very basic include which pulls in the same file everytime this is printed. ?>
<?php include 'includes/header.php' ?>
<?php
// ok here we are setting the current page, this will do various things around the website.
$current_page = "heart-of-a-king";
// would you like a slideshow on this page? if so please open up.... includes / slideshow.php
$include_slideshow = false;
?>
<div class="container">
<div class="row">
<?php // include a sidebar on all pages, you'll need to go in to this sidebar file and make a little change ?>
<?php include 'includes/sidebar.php' ?>
<div class="columns ten offset-by-one-and-a-bit">
<div id="content">
<?php include ('includes/slideshow.php') ?>
<div class="content-main columns offset-by-one ten">
<h1>A Haptic Prototype Visitor Experience For Historic Royal Palaces, London</h1>
<!--
<h2>Client: value</h2>
<h2>Location: value</h2>
<h2>Attribute: value</h2>
<h2>Attribute: value</h2>
-->
<p>Heart of a King places visitors in the footsteps and emotional state of Charles I on the day of his execution in 1649. Visitors received a wooden, heart-shaped totem. The heart creates a haptic heartbeat that acts as a compass, increasing in strength when pointed to Charles' path. Following this compass, visitors trace Charles' final journey through St James Park and Whitehall, arriving in front of Banqueting House, the place of his execution where the heart ceases to beat.</p>
<p>Chomko & Rosier have now been selected to develop The Lost Palace; an automated visitor experience recreating the Palace of Whitehall on the streets of central London in Summer 2016.</p>
</div>
</div>
<?php include 'includes/footer.php' ?>
</div>
</div>
</div>