-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeaulieuSounds.html
127 lines (82 loc) · 3.02 KB
/
BeaulieuSounds.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Drogheda Arts Festival App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/themes/default/jquery.mobile-1.4.0.min.css">
<link rel="stylesheet" href="css/design.css">
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.4.0.min.js"></script>
<script>
function initialize() {
var mapOptions = {
zoom: 16,
center: new google.maps.LatLng(53.727693,-6.295166)
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(53.727693,-6.295166),
map: map,
title: 'Beaulieu House & Garden'
});
}
$(document).on("pageinit", function(event) { initialize(); });
</script>
<script src="js/script.js"></script> <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
</head>
<body>
<div data-role="page">
<!-- Header end -->
<div data-id="dojoheader" data-role="header" data-theme="b" class="ui-header ui-bar-a" style="background-color:#3300CC" data-position="fixed">
<div class="bannerbox" style="background-color:#3f8de0; height:109px">
<img id="logo" style="float:right;height:109px" src="DroghedaArtsLogo.png">
</div>
<h1 class="ui-title">Beaulieu: Sounds Beautiful</h1>
<a href="#left-panel" data-icon="bars" data-iconpos="notext" data-shadow="false" data-iconshadow="false">Menu</a>
<a data-icon="home" data-iconpos="notext" data-direction="reverse" href="index.html">Home</a>
</div>
<div role="main" class="ui-content">
<ul data-role="listview" data-inset="true">
<li><a href="events.html">Back</a></li>
</ul>
<p> <h3> Beaulieu: Sounds Beautiful </h3> </p>
<p> <h2> <img src="ArtsImages/ArtsImages_Page_16_Image_0001.jpg"/> </h2> </p>
<p>
SOLO is an afternoon of original song,
presented in the intimate setting of
Beaulieu House Chapel, and performed in
the most intimate way possible - through
unamplified solo performance.
</p>
<br>
<p>
Eugene Donegan, Dave Clark, SJ McArdle
and Shaz Oye perform their collective
repertoire encompassing folk, pop, blues
and more; each has been selected to take
full advantage of the chapel's unique,
unamplified atmosphere - each is truly at a
creative peak.
</p>
<br>
<p> Monday 5 May </p>
<p> Venue: Beaulieu House & Garden </p>
<p>Times: 1 - 5pm Mon 5 May</p>
<p> Tickets: Free with ticket to Beaulieu</p>
<p>
<a href="http://droghedaartsfestival.ticketsolve.com/shows/873513079/events?show_id=873513079"> <img src="icons/BookNow2.png" />
</p>
<br>
<div id="map-canvas"></div>
</div>
<div data-role="panel" id="left-panel">
<div class="panelhtml"></div>
</div><!-- /panel -->
</div>
</div>
<div data-role="footer">
</div>
</body>
</html>