trusty-festivity-extension 2.5.2 → 2.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/images/skins/pghkids/header.png +0 -0
- data/app/assets/images/skins/pghkids/header_mobile.png +0 -0
- data/app/assets/images/skins/traf/traf-bottom-wave.png +0 -0
- data/app/assets/images/skins/traf/traf-thin-wave.png +0 -0
- data/app/assets/stylesheets/contexts/_site-header.scss +2 -1
- data/app/assets/stylesheets/skins/traf/contexts/_homepage.scss +32 -8
- data/app/assets/stylesheets/skins/traf/contexts/_social_feed.scss +3 -0
- data/app/views/festivity_events/show.html.haml +1 -1
- data/app/views/festivity_markets/show.html.haml +1 -5
- data/db/content/layouts/FirstNighPGH/base.html +229 -0
- data/db/content/layouts/FirstNighPGH/normal.html +5 -0
- data/db/content/layouts/PGHkids/base.html +174 -0
- data/db/content/layouts/PGHkids/normal.html +5 -0
- data/db/content/layouts/TRAF/base.html +221 -0
- data/db/content/layouts/TRAF/cms_home.html +113 -0
- data/db/content/layouts/TRAF/normal.html +3 -0
- data/db/content/snippets/FirstNightPGH/first_night_footer_logo.html +508 -0
- data/db/content/snippets/FirstNightPGH/first_night_logo.html +595 -0
- data/db/content/snippets/FirstNightPGH/first_night_logo_sm.html +448 -0
- data/db/content/snippets/TRAF/traf_footer_logo.html +509 -0
- data/db/content/snippets/TRAF/traf_logo.html +1 -0
- data/lib/trusty-festivity-extension.rb +3 -3
- metadata +17 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b5ebad4be263360c517d20a43eb0511fbbd7626
|
4
|
+
data.tar.gz: 1a15ef416a2d02879f3978e178028f51df16db42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb1f66dadc1c9d9e2a90c7776087288f32d638b29daf040f611649bcca6d54a52efed975e530b7287faaf98a9cc14912bc4b82e997863ba6f4cb97ec9a826999
|
7
|
+
data.tar.gz: 69e3f116668f35e825973033ede7fa160fa4732bd993c8f6068238082ff8fee89b09f38e68f418fc0eedecc629813e5c8c3edbe1b9e231ea669a7882ec6b4d27
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,6 +1,7 @@
|
|
1
1
|
.site-header {
|
2
2
|
@include pie-clearfix;
|
3
|
-
|
3
|
+
//this will need moved to gallery crawl
|
4
|
+
//background: url('gc-header-bg.svg') repeat-x $link-color;
|
4
5
|
|
5
6
|
@include breakpoint($breakpoint-nav) {
|
6
7
|
padding-bottom: 1em;
|
@@ -3,10 +3,13 @@
|
|
3
3
|
width: 100%;
|
4
4
|
max-width: 100%;
|
5
5
|
.traf-intro-background {
|
6
|
-
height:
|
6
|
+
height: 550px;
|
7
7
|
background: url(traf-background.png) no-repeat top center;
|
8
8
|
background-color: $background-color-alt;
|
9
9
|
background-size: cover;
|
10
|
+
@include breakpoint($breakpoint-nav) {
|
11
|
+
height: 850px;
|
12
|
+
}
|
10
13
|
}
|
11
14
|
}
|
12
15
|
|
@@ -22,13 +25,20 @@
|
|
22
25
|
}
|
23
26
|
}
|
24
27
|
.headline-2 {
|
25
|
-
|
28
|
+
font-size: 1em;
|
29
|
+
@include breakpoint($breakpoint-nav) {
|
30
|
+
@include heading-3;
|
31
|
+
}
|
26
32
|
}
|
27
33
|
.headline-3 {
|
28
|
-
|
34
|
+
font-size: 1.5em;
|
35
|
+
@include breakpoint($breakpoint-nav) {
|
36
|
+
@include heading-1;
|
37
|
+
}
|
29
38
|
}
|
30
39
|
.buttons {
|
31
40
|
.button-wrapper {
|
41
|
+
margin-right: 1em;
|
32
42
|
.icon-chevron-right {
|
33
43
|
height: 15px;
|
34
44
|
margin-left: 2em;
|
@@ -41,13 +51,18 @@
|
|
41
51
|
}
|
42
52
|
}
|
43
53
|
.announcements {
|
44
|
-
|
45
|
-
background:
|
46
|
-
|
54
|
+
background: url(traf-bottom-wave.png) no-repeat;
|
55
|
+
background-color: $text-color;
|
56
|
+
padding-top: 2em;
|
57
|
+
margin-bottom: 6em;
|
58
|
+
border-bottom: 5em;
|
59
|
+
border-image: url(traf-thin-wave.png) 0 27 75 repeat;
|
60
|
+
border-image-outset: 1;
|
47
61
|
.announcements-container {
|
48
62
|
@include container;
|
49
63
|
width: 95%;
|
50
|
-
|
64
|
+
margin-bottom: -4em;
|
65
|
+
padding-top: 4em;
|
51
66
|
|
52
67
|
.announcements-header {
|
53
68
|
@include breakpoint($breakpoint-nav) {
|
@@ -83,13 +98,22 @@
|
|
83
98
|
}
|
84
99
|
}
|
85
100
|
}
|
101
|
+
&::after {
|
102
|
+
clear: both;
|
103
|
+
content: " ";
|
104
|
+
display: block;
|
105
|
+
}
|
86
106
|
}
|
87
107
|
|
88
108
|
}
|
89
109
|
|
90
110
|
.traf-bubbles {
|
91
111
|
background: url(traf-bubbles.png) no-repeat top center;
|
92
|
-
|
112
|
+
background-size: cover;
|
113
|
+
height: 75px;
|
114
|
+
@include breakpoint($breakpoint-nav) {
|
115
|
+
height: 100px;
|
116
|
+
}
|
93
117
|
}
|
94
118
|
|
95
119
|
}
|
@@ -28,7 +28,7 @@
|
|
28
28
|
.modal-content
|
29
29
|
%button.close-btn
|
30
30
|
%span.icon-close{:data => {'grunticon-embed' => true}}
|
31
|
-
=
|
31
|
+
= raw @event.video.try(:html_safe)
|
32
32
|
- if @event.single_location?
|
33
33
|
%li
|
34
34
|
%a{target: "_blank", href: "#{@event.locations.first.festivity_directions_url}"}
|
@@ -0,0 +1,229 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
3
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
|
4
|
+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
5
|
+
<!--[if gt IE 8]><!-->
|
6
|
+
<html class='no-js' lang='en'>
|
7
|
+
<!--<![endif]-->
|
8
|
+
<html>
|
9
|
+
<head>
|
10
|
+
<meta charset="utf-8"/>
|
11
|
+
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
|
12
|
+
<r:festivity_meta />
|
13
|
+
<meta content='width=device-width, initial-scale=1' name='viewport'>
|
14
|
+
<link rel="stylesheet" media="all" href="/assets/first-night.css">
|
15
|
+
<script src="/assets/festivity_app.js"></script>
|
16
|
+
<script>
|
17
|
+
(function(d) {
|
18
|
+
var config = {
|
19
|
+
kitId: 'yrs0lfn',
|
20
|
+
scriptTimeout: 3000,
|
21
|
+
async: true
|
22
|
+
},
|
23
|
+
h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,"")+" wf-inactive";},config.scriptTimeout),tk=d.createElement("script"),f=false,s=d.getElementsByTagName("script")[0],a;h.className+=" wf-loading";tk.src='https://use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!="complete"&&a!="loaded")return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
|
24
|
+
})(document);
|
25
|
+
</script>
|
26
|
+
|
27
|
+
<script>
|
28
|
+
/*! grunt-grunticon Stylesheet Loader - v2.1.6 | https://github.com/filamentgroup/grunticon | (c) 2015 Scott Jehl, Filament Group, Inc. | MIT license. */
|
29
|
+
!function(){function e(e,n,t){"use strict";var o=window.document.createElement("link"),r=n||window.document.getElementsByTagName("script")[0],a=window.document.styleSheets;return o.rel="stylesheet",o.href=e,o.media="only x",r.parentNode.insertBefore(o,r),o.onloadcssdefined=function(e){for(var n,t=0;t<a.length;t++)a[t].href&&a[t].href===o.href&&(n=!0);n?e():setTimeout(function(){o.onloadcssdefined(e)})},o.onloadcssdefined(function(){o.media=t||"all"}),o}function n(e,n){e.onload=function(){e.onload=null,n&&n.call(e)},"isApplicationInstalled"in navigator&&"onloadcssdefined"in e&&e.onloadcssdefined(n)}!function(t){var o=function(r,a){"use strict";if(r&&3===r.length){var i=t.navigator,c=t.document,s=t.Image,d=!(!c.createElementNS||!c.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect||!c.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image","1.1")||t.opera&&-1===i.userAgent.indexOf("Chrome")||-1!==i.userAgent.indexOf("Series40")),l=new s;l.onerror=function(){o.method="png",o.href=r[2],e(r[2])},l.onload=function(){var t=1===l.width&&1===l.height,i=r[t&&d?0:t?1:2];t&&d?o.method="svg":t?o.method="datapng":o.method="png",o.href=i,n(e(i),a)},l.src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==",c.documentElement.className+=" grunticon"}};o.loadCSS=e,o.onloadCSS=n,t.grunticon=o}(this),function(e,n){"use strict";var t=n.document,o="grunticon:",r=function(e){if(t.attachEvent?"complete"===t.readyState:"loading"!==t.readyState)e();else{var n=!1;t.addEventListener("readystatechange",function(){n||(n=!0,e())},!1)}},a=function(e){return n.document.querySelector('link[href$="'+e+'"]')},i=function(e){var n,t,r,a,i,c,s={};if(n=e.sheet,!n)return s;t=n.cssRules?n.cssRules:n.rules;for(var d=0;d<t.length;d++)r=t[d].cssText,a=o+t[d].selectorText,i=r.split(");")[0].match(/US\-ASCII\,([^"']+)/),i&&i[1]&&(c=decodeURIComponent(i[1]),s[a]=c);return s},c=function(e){var n,r,a,i;a="data-grunticon-embed";for(var c in e){i=c.slice(o.length);try{n=t.querySelectorAll(i)}catch(s){continue}r=[];for(var d=0;d<n.length;d++)null!==n[d].getAttribute(a)&&r.push(n[d]);if(r.length)for(d=0;d<r.length;d++)r[d].innerHTML=e[c],r[d].style.backgroundImage="none",r[d].removeAttribute(a)}return r},s=function(n){"svg"===e.method&&r(function(){c(i(a(e.href))),"function"==typeof n&&n()})};e.embedIcons=c,e.getCSS=a,e.getIcons=i,e.ready=r,e.svgLoadedCallback=s,e.embedSVG=s}(grunticon,this)}();
|
30
|
+
grunticon(["/assets/grunticon/production/icons.data.svg.css", "/assets/grunticon/production/icons.data.png.css", "/assets/grunticon/production/icons.fallback.css"], grunticon.svgLoadedCallback);
|
31
|
+
</script>
|
32
|
+
<noscript>
|
33
|
+
<link href="/assets/grunticon/production/icons.fallback.css" rel="stylesheet"></link>
|
34
|
+
</noscript>
|
35
|
+
</head>
|
36
|
+
<body class="first-night <r:festivity_body_class />">
|
37
|
+
<div class="overflow-wrapper">
|
38
|
+
<div class="menu-content-wrapper">
|
39
|
+
<r:festivity_mobile_menus />
|
40
|
+
<header class="site-header">
|
41
|
+
<div class="container">
|
42
|
+
<section class="first-night-mark">
|
43
|
+
<a class="first-night-logo" href="/">
|
44
|
+
<h1 class="site-name visually-hidden">First Night</h1>
|
45
|
+
<r:snippet name="first_night_logo" />
|
46
|
+
<r:snippet name="first_night_logo_sm" />
|
47
|
+
</a>
|
48
|
+
</section>
|
49
|
+
<div class="mobile-navigation">
|
50
|
+
<button class="menu-trigger">
|
51
|
+
<div class="iconmenu-button x">
|
52
|
+
<span class="iconmenu"></span>
|
53
|
+
</div>
|
54
|
+
<span class="trigger-text">Menu</span>
|
55
|
+
</div>
|
56
|
+
<div class="nav-wrapper">
|
57
|
+
<form action="/search" class="site-search">
|
58
|
+
<label for="site-search">
|
59
|
+
<span class="visually-hidden">
|
60
|
+
Search
|
61
|
+
</span>
|
62
|
+
</label>
|
63
|
+
<input id="site-search" name="q" placeholder="Search..." type="text"></input>
|
64
|
+
<button class="search-submit" type="submit">
|
65
|
+
<span class="icon-search" data-grunticon-embed="true"></span>
|
66
|
+
<span class="visually-hidden">
|
67
|
+
Search
|
68
|
+
</span>
|
69
|
+
</button>
|
70
|
+
</form>
|
71
|
+
<nav class="utility-navigation" role="navigation">
|
72
|
+
<ul>
|
73
|
+
<li>
|
74
|
+
<a href="/fn_home/contact">Contact Us</a>
|
75
|
+
</li>
|
76
|
+
<li>
|
77
|
+
<a href="/events">Schedule</a>
|
78
|
+
</li>
|
79
|
+
<li>
|
80
|
+
<a href="/fn_home/visit/map">Map</a>
|
81
|
+
</li>
|
82
|
+
<li>
|
83
|
+
<a href="/fn_home/visit/event-guide">Event Guide</a>
|
84
|
+
</li>
|
85
|
+
</ul>
|
86
|
+
|
87
|
+
</nav>
|
88
|
+
|
89
|
+
<nav class="primary-navigation" role="navigation">
|
90
|
+
<ul>
|
91
|
+
<li>
|
92
|
+
<a href="/events">Events</a>
|
93
|
+
</li>
|
94
|
+
<li>
|
95
|
+
<a href="/fn_home/visit/admission/">Admission</a>
|
96
|
+
</li>
|
97
|
+
<li>
|
98
|
+
<a href="/fn_home/visit">Plan</a>
|
99
|
+
</li>
|
100
|
+
<li>
|
101
|
+
<a href="/fn_home/get-involved">Get Involved</a>
|
102
|
+
</li>
|
103
|
+
|
104
|
+
<li>
|
105
|
+
<a href="/fn_home/about">About</a>
|
106
|
+
</li>
|
107
|
+
</ul>
|
108
|
+
</nav>
|
109
|
+
|
110
|
+
</div>
|
111
|
+
</div>
|
112
|
+
</header>
|
113
|
+
|
114
|
+
<main class="main-content" role="main">
|
115
|
+
<div class="container">
|
116
|
+
<r:content_for_layout/>
|
117
|
+
</div>
|
118
|
+
</main>
|
119
|
+
<footer class="social-footer">
|
120
|
+
<div class="container">
|
121
|
+
<h3 class="title">Connect with us:</h3>
|
122
|
+
<ul class="social-link-item-group">
|
123
|
+
<li class="social-link-item">
|
124
|
+
<a href="https://www.instagram.com/firstnightpgh/">
|
125
|
+
<span class="icon-instagram" data-grunticon-embed="true"></span>
|
126
|
+
<span class="visually-hidden">
|
127
|
+
Follow First Night Pittsburgh on Instagram
|
128
|
+
</span>
|
129
|
+
</a>
|
130
|
+
</li>
|
131
|
+
<li class="social-link-item">
|
132
|
+
<a href="https://www.facebook.com/FirstNightPGH/">
|
133
|
+
<span class="icon-facebook" data-grunticon-embed="true"></span>
|
134
|
+
<span class="visually-hidden">
|
135
|
+
Follow First Night Pittsburgh on Facebook
|
136
|
+
</span>
|
137
|
+
</a>
|
138
|
+
</li>
|
139
|
+
<li class="social-link-item">
|
140
|
+
<a href="https://twitter.com/firstnightpgh">
|
141
|
+
<span class="icon-twitter" data-grunticon-embed="true"></span>
|
142
|
+
<span class="visually-hidden">
|
143
|
+
Follow First Night Pittsburgh on Twitter
|
144
|
+
</span>
|
145
|
+
</a>
|
146
|
+
</li>
|
147
|
+
<li class="social-link-item">
|
148
|
+
<a href="http://clicks.skem1.com/signup/?c=vNHhx&lid=43">
|
149
|
+
<span class="icon-envelope" data-grunticon-embed="true"></span>
|
150
|
+
<span class="visually-hidden">
|
151
|
+
Sign up for the First Night Pittsburgh Email Newsletter
|
152
|
+
</span>
|
153
|
+
</a>
|
154
|
+
</li>
|
155
|
+
</ul>
|
156
|
+
|
157
|
+
</div>
|
158
|
+
</footer>
|
159
|
+
<footer class="site-footer">
|
160
|
+
<div class="container">
|
161
|
+
<nav class="footer-navigation" role="navigation">
|
162
|
+
<ul class="general">
|
163
|
+
<a class="cultural-trust-logo" href="http://www.trustarts.org">
|
164
|
+
<h4 class="visually-hidden">Pittsburgh Cultural Trust</h4>
|
165
|
+
<r:snippet name="first_night_footer_logo" />
|
166
|
+
</a>
|
167
|
+
<li>
|
168
|
+
<a href="http://www.trustarts.org/about">About the Trust</a>
|
169
|
+
</li>
|
170
|
+
<li>
|
171
|
+
<a href="http://pressroom.trustarts.org/">Press Room</a>
|
172
|
+
</li>
|
173
|
+
<li>
|
174
|
+
<a href="http://www.trustarts.org/about/privacy-policy">Privacy Policy</a>
|
175
|
+
</li>
|
176
|
+
<li>
|
177
|
+
<a href="http://www.trustarts.org/connect/contact_us/">Contact Us</a>
|
178
|
+
</li>
|
179
|
+
|
180
|
+
</ul>
|
181
|
+
<ul class="attending">
|
182
|
+
<h4>Attending</h4>
|
183
|
+
<li>
|
184
|
+
<a href="/fn_home/visit/parking-transportation/">Parking and Transportation</a>
|
185
|
+
</li>
|
186
|
+
<li>
|
187
|
+
<a href="/fn_home/visit/food-drinks/">Food</a>
|
188
|
+
</li>
|
189
|
+
<li>
|
190
|
+
<a href="/fn_home/visit/accessibility/">Accessibility</a>
|
191
|
+
</li>
|
192
|
+
</ul>
|
193
|
+
<ul class="artists">
|
194
|
+
<h4>Get Involved </h4>
|
195
|
+
<li>
|
196
|
+
<a href="/fn_home/get-involved/sing-off/">Sing Off</a>
|
197
|
+
</li>
|
198
|
+
<li>
|
199
|
+
<a href="/fn_home/get-involved/parade-workshops/">Parade Workshops</a>
|
200
|
+
</li>
|
201
|
+
<li>
|
202
|
+
<a href="/fn_home/get-involved/volunteer/">Volunteer</a>
|
203
|
+
</li>
|
204
|
+
<li>
|
205
|
+
<a href="/fn_home/about/current-supporters">Current Supporters</a>
|
206
|
+
</li>
|
207
|
+
|
208
|
+
</ul>
|
209
|
+
<ul class="Blog">
|
210
|
+
<h4>Blog </h4>
|
211
|
+
<li>
|
212
|
+
<a href="/fn_home/blog/new-facebook-twitter-and-instagram">NEW Facebook, Twitter and Instagram</a>
|
213
|
+
</li>
|
214
|
+
<li>
|
215
|
+
<a href="/fn_home/blog/admission-buttons-now-on-sale">Admission buttons now on sale</a>
|
216
|
+
</li>
|
217
|
+
</ul>
|
218
|
+
</nav>
|
219
|
+
<p class="copyright">
|
220
|
+
Copyright ©2015 Pittsburgh Cultural Trust. All rights reserved.
|
221
|
+
</p>
|
222
|
+
</div>
|
223
|
+
</footer>
|
224
|
+
</div>
|
225
|
+
</div>
|
226
|
+
<script src="https://s3.amazonaws.com/festivity-prod/omniture/firstnight/AppMeasurement.js" type="text/javascript"></script>
|
227
|
+
<r:omniture_vars />
|
228
|
+
</body>
|
229
|
+
</html>
|
@@ -0,0 +1,174 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8" />
|
5
|
+
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
|
6
|
+
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
7
|
+
<r:festivity_meta />
|
8
|
+
<title>
|
9
|
+
<r:title />
|
10
|
+
</title>
|
11
|
+
<link href="http://festivity-prod.s3.amazonaws.com/production/assets/skins/pghkids/skin.css" rel="stylesheet" type="text/css" />
|
12
|
+
<!--<link href="/assets/skins/pghkids/skin.css" rel="stylesheet" type="text/css" />-->
|
13
|
+
<!--http://festivity-prod.s3.amazonaws.com/production-->
|
14
|
+
<script src="/assets/festivity_app.js" type="text/javascript"></script>
|
15
|
+
<!--HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries-->
|
16
|
+
<!--WARNING: Respond.js doesn't work if you view the page via file://-->
|
17
|
+
<!--[if lt IE 9]
|
18
|
+
| <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script
|
19
|
+
| <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script-->
|
20
|
+
<script>
|
21
|
+
/*! grunt-grunticon Stylesheet Loader - v2.1.6 | https://github.com/filamentgroup/grunticon | (c) 2015 Scott Jehl, Filament Group, Inc. | MIT license. */
|
22
|
+
!function(){function e(e,n,t){"use strict";var o=window.document.createElement("link"),r=n||window.document.getElementsByTagName("script")[0],a=window.document.styleSheets;return o.rel="stylesheet",o.href=e,o.media="only x",r.parentNode.insertBefore(o,r),o.onloadcssdefined=function(e){for(var n,t=0;t<a.length;t++)a[t].href&&a[t].href===o.href&&(n=!0);n?e():setTimeout(function(){o.onloadcssdefined(e)})},o.onloadcssdefined(function(){o.media=t||"all"}),o}function n(e,n){e.onload=function(){e.onload=null,n&&n.call(e)},"isApplicationInstalled"in navigator&&"onloadcssdefined"in e&&e.onloadcssdefined(n)}!function(t){var o=function(r,a){"use strict";if(r&&3===r.length){var i=t.navigator,c=t.document,s=t.Image,d=!(!c.createElementNS||!c.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect||!c.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image","1.1")||t.opera&&-1===i.userAgent.indexOf("Chrome")||-1!==i.userAgent.indexOf("Series40")),l=new s;l.onerror=function(){o.method="png",o.href=r[2],e(r[2])},l.onload=function(){var t=1===l.width&&1===l.height,i=r[t&&d?0:t?1:2];t&&d?o.method="svg":t?o.method="datapng":o.method="png",o.href=i,n(e(i),a)},l.src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==",c.documentElement.className+=" grunticon"}};o.loadCSS=e,o.onloadCSS=n,t.grunticon=o}(this),function(e,n){"use strict";var t=n.document,o="grunticon:",r=function(e){if(t.attachEvent?"complete"===t.readyState:"loading"!==t.readyState)e();else{var n=!1;t.addEventListener("readystatechange",function(){n||(n=!0,e())},!1)}},a=function(e){return n.document.querySelector('link[href$="'+e+'"]')},i=function(e){var n,t,r,a,i,c,s={};if(n=e.sheet,!n)return s;t=n.cssRules?n.cssRules:n.rules;for(var d=0;d<t.length;d++)r=t[d].cssText,a=o+t[d].selectorText,i=r.split(");")[0].match(/US\-ASCII\,([^"']+)/),i&&i[1]&&(c=decodeURIComponent(i[1]),s[a]=c);return s},c=function(e){var n,r,a,i;a="data-grunticon-embed";for(var c in e){i=c.slice(o.length);try{n=t.querySelectorAll(i)}catch(s){continue}r=[];for(var d=0;d<n.length;d++)null!==n[d].getAttribute(a)&&r.push(n[d]);if(r.length)for(d=0;d<r.length;d++)r[d].innerHTML=e[c],r[d].style.backgroundImage="none",r[d].removeAttribute(a)}return r},s=function(n){"svg"===e.method&&r(function(){c(i(a(e.href))),"function"==typeof n&&n()})};e.embedIcons=c,e.getCSS=a,e.getIcons=i,e.ready=r,e.svgLoadedCallback=s,e.embedSVG=s}(grunticon,this)}();
|
23
|
+
grunticon(["/assets/grunticon/production/icons.data.svg.css", "/assets/grunticon/production/icons.data.png.css", "/assets/grunticon/production/icons.fallback.css"], grunticon.svgLoadedCallback);
|
24
|
+
</script>
|
25
|
+
<noscript>
|
26
|
+
<link href="/assets/grunticon/production/icons.fallback.css" rel="stylesheet"></link>
|
27
|
+
</noscript>
|
28
|
+
</head>
|
29
|
+
<body class="pghkids <r:festivity_body_class />">
|
30
|
+
<div class="overflow-wrapper">
|
31
|
+
<div class="menu-content-wrapper">
|
32
|
+
<r:festivity_mobile_menus />
|
33
|
+
<header class="site-header">
|
34
|
+
<a href="/kids" title="home">
|
35
|
+
<div class="logolink">
|
36
|
+
</div>
|
37
|
+
</a>
|
38
|
+
<div class="container">
|
39
|
+
<div class="mobile-navigation">
|
40
|
+
<button class="menu-trigger">
|
41
|
+
<div class="iconmenu-button x">
|
42
|
+
<span class="iconmenu"></span>
|
43
|
+
</div>
|
44
|
+
</button>
|
45
|
+
</div>
|
46
|
+
<div class="nav-wrapper">
|
47
|
+
<div class="search-form site-search">
|
48
|
+
<form action="/search" method="get">
|
49
|
+
<div class="form-group">
|
50
|
+
<div class="input-group">
|
51
|
+
<input class="form-control" placeholder="Search ..." type="text" name="q" />
|
52
|
+
<button class="search-submit" type="submit">
|
53
|
+
<span class="icon-search"></span>
|
54
|
+
<span class="visually-hidden">Search</span>
|
55
|
+
</button>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
</form>
|
59
|
+
</div>
|
60
|
+
<nav class="utility-navigation">
|
61
|
+
<ul class="list-inline">
|
62
|
+
<li><a href="/kids/plan-your-visit/faq">FAQ</a></li>
|
63
|
+
|
64
|
+
<li><a href="/kids/about/contact-us">Contact Us</a></li>
|
65
|
+
|
66
|
+
</ul>
|
67
|
+
</nav>
|
68
|
+
<nav class="primary-navigation">
|
69
|
+
<ul class="list-inline">
|
70
|
+
<li><a href="/events">Events</a></li>
|
71
|
+
<li><a href="/kids/plan-your-visit">Plan Your Visit</a></li>
|
72
|
+
<li><a href="/kids/get-involved">Get Involved</a></li>
|
73
|
+
<li><a href="/kids/groups">Groups</a></li>
|
74
|
+
<li><a href="/kids/about">About</a></li>
|
75
|
+
</ul>
|
76
|
+
</nav>
|
77
|
+
</div>
|
78
|
+
<div class="visually-hidden">
|
79
|
+
<!--<a href="/kids">-->
|
80
|
+
<h1 class="logo">EQT CHILDREN'S THEATER FESTIVAL</h1>
|
81
|
+
<!--</a>-->
|
82
|
+
</div>
|
83
|
+
</div>
|
84
|
+
|
85
|
+
</header>
|
86
|
+
<main class="main-content" role="main">
|
87
|
+
<div class="container">
|
88
|
+
<r:content_for_layout/>
|
89
|
+
</div>
|
90
|
+
</main>
|
91
|
+
<div class="footer-banner"><span id="image"><span id="image-inner"></span></span></div>
|
92
|
+
<footer class="social-footer">
|
93
|
+
<div class="container">
|
94
|
+
<h3 class="title">Connect with us:</h3>
|
95
|
+
<ul class="social-link-item-group">
|
96
|
+
<li class="social-link-item">
|
97
|
+
<a href="https://www.instagram.com/culturaltrust/">
|
98
|
+
<span class="icon-instagram" data-grunticon-embed="true"></span>
|
99
|
+
<span class="visually-hidden">
|
100
|
+
Follow EQT CHILDREN'S THEATER FESTIVAL on Instagram
|
101
|
+
</span>
|
102
|
+
</a>
|
103
|
+
</li>
|
104
|
+
<li class="social-link-item">
|
105
|
+
<a href="https://www.facebook.com/culturaltrust/">
|
106
|
+
<span class="icon-facebook" data-grunticon-embed="true"></span>
|
107
|
+
<span class="visually-hidden">
|
108
|
+
Follow EQT CHILDREN'S THEATER FESTIVAL on Facebook
|
109
|
+
</span>
|
110
|
+
</a>
|
111
|
+
</li>
|
112
|
+
<li class="social-link-item">
|
113
|
+
<a href="https://twitter.com/culturaltrust">
|
114
|
+
<span class="icon-twitter" data-grunticon-embed="true"></span>
|
115
|
+
<span class="visually-hidden">
|
116
|
+
Follow EQT CHILDREN'S THEATER FESTIVAL on Twitter
|
117
|
+
</span>
|
118
|
+
</a>
|
119
|
+
</li>
|
120
|
+
<li class="social-link-item">
|
121
|
+
<a href="http://clicks.skem1.com/signup/?c=vNHhx&lid=45">
|
122
|
+
<span class="icon-envelope" data-grunticon-embed="true"></span>
|
123
|
+
<span class="visually-hidden">
|
124
|
+
Sign up for the EQT CHILDREN'S THEATER FESTIVAL Email Newsletter
|
125
|
+
</span>
|
126
|
+
</a>
|
127
|
+
</li>
|
128
|
+
</ul>
|
129
|
+
|
130
|
+
</div>
|
131
|
+
</footer>
|
132
|
+
<footer class="site-footer">
|
133
|
+
<div class="container">
|
134
|
+
<nav class="footer-navigation" role="navigation">
|
135
|
+
<ul class="general">
|
136
|
+
<a class="cultural-trust-logo" href="http://www.trustarts.org">
|
137
|
+
<img src="http://festivity-prod.s3.amazonaws.com/production/assets/pct-black.png" alt="Trust logo" />
|
138
|
+
<h4 class="visually-hidden">Pittsburgh Cultural Trust</h4>
|
139
|
+
</a>
|
140
|
+
<li><a href="http://pressroom.trustarts.org/">Press Room</a></li>
|
141
|
+
<li><a href="http://trustarts.org/about/privacy-policy">Privacy Policy</a></li>
|
142
|
+
<li><a href="/kids/about/contact-us">Contact Us</a></li>
|
143
|
+
<li><a href="http://trustarts.org/about/privacy-policy">Legal</a></li>
|
144
|
+
</ul>
|
145
|
+
<ul class="attending">
|
146
|
+
<li class="footer-navigation-header">Attending</li>
|
147
|
+
<li><a href="/kids/plan-your-visit/parking-transportation/">Parking and Transportation</a></li>
|
148
|
+
<li><a href="/kids/plan-your-visit/festival-food/">Food</a></li>
|
149
|
+
<li><a href="/kids/plan-your-visit/restrooms/">Restrooms</a></li>
|
150
|
+
<li><a href="/kids/plan-your-visit/accessibility/">Accessibility</a></li>
|
151
|
+
<li><a href="/kids/plan-your-visit/faq">FAQ</a></li>
|
152
|
+
</ul>
|
153
|
+
<!--- <ul class="artists">
|
154
|
+
<li class="footer-navigation-header">Download</li>
|
155
|
+
<li><a href="/kids/plan-your-visit/maps/">Maps</a></li>
|
156
|
+
<li><a href="/kids/pages/schedule">Schedule</a></li>
|
157
|
+
<li><a href="/kids/plan-your-visit/brochure-pdf/">Brochure</a></li>
|
158
|
+
</ul>--->
|
159
|
+
<ul class="Blog">
|
160
|
+
<li class="footer-navigation-header">Blog</li>
|
161
|
+
<li><a href="/kids/blog/welcome-to-the-cultural-district">Welcome to the Cultural District </a></li>
|
162
|
+
</ul>
|
163
|
+
</nav>
|
164
|
+
<p class="copyright">
|
165
|
+
© 2016 EQT CHILDREN'S THEATER FESTIVAL – Pittsburgh, PA – A production of the Pittsburgh Cultural Trust.
|
166
|
+
</p>
|
167
|
+
</div>
|
168
|
+
</footer>
|
169
|
+
<script src="https://s3.amazonaws.com/festivity-prod/omniture/kids/AppMeasurement.js" type="text/javascript"></script>
|
170
|
+
<r:omniture_vars />
|
171
|
+
</div>
|
172
|
+
</div>
|
173
|
+
</body>
|
174
|
+
</html>
|