trusty-festivity-extension 2.3.26 → 2.3.27

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6275fac951a8b1ed88a73f2d3ea85a019df6931
4
- data.tar.gz: 8c91c0a6730500f605df81d08674a667ae1af98a
3
+ metadata.gz: 7b52ffa43139d3f703b74c39d0612dbfd7936bf9
4
+ data.tar.gz: f83143e41658968fa2ed1339d421606867804607
5
5
  SHA512:
6
- metadata.gz: 006598a9b9ef31fe826e196c2976afc25cdbdec816a47a8d0fd4ed0417fed3ecea016ad2cedc90b8e24746654d5e25304ae84ada5694a5a8629ffa960d1963d0
7
- data.tar.gz: 101e50301cb40e8957d39f55f81aa76dad16fd40b144bcedaf59d8f1ce396f2cb604d4296f0d28583a41ae4e8b0dd27a1e8d924f552f815f2409b9cec6af09cf
6
+ metadata.gz: b29146634c6a700a97ff296532651beb05cae0263e461ca37b3a8b091900c08c17189d5ed76cad4b5945e6af0ad30258e5897a2fec1a39559d0fb5b3c74b6998
7
+ data.tar.gz: 20a24d44a4158dc23f3b4ec3920765c4efe953b0240f47179a1a36a58c91ac09d38ee8cb434ad3e16cd330c94a8a5b1b1a98e04cbed06c2fcbb769933545c9fc
@@ -0,0 +1,51 @@
1
+ .location-content {
2
+ @include pie-clearfix;
3
+
4
+
5
+ .location-header {
6
+ background-color: #F1F1F2;
7
+
8
+ @include breakpoint($breakpoint-l) {
9
+ @include column(12);
10
+ @include last-col3;
11
+ border-bottom: 0 none;
12
+ padding-bottom: 0;
13
+ margin-bottom: 2em;
14
+ }
15
+
16
+ .location-info {
17
+ @include breakpoint($breakpoint-l) {
18
+ @include column(8);
19
+ border-bottom: 0 none;
20
+ padding-bottom: 0;
21
+ }
22
+ .location-title{
23
+ padding-top: 4em;
24
+ }
25
+ .location-title, .location-address {
26
+ margin-left: 1em;
27
+ }
28
+
29
+ .button {
30
+ @include button-subtle-list;
31
+ background-color: white;
32
+ }
33
+
34
+ }
35
+
36
+ .location-media{
37
+ img {
38
+ width: 100%;
39
+ }
40
+ @include breakpoint($breakpoint-l) {
41
+ @include column(4);
42
+ margin-bottom: 0;
43
+ margin-right: 0;
44
+ border-bottom: 0 none;
45
+ padding-bottom: 0;
46
+ }
47
+ }
48
+
49
+ }
50
+
51
+ }
@@ -18,6 +18,7 @@
18
18
  @import "contexts/site-footer";
19
19
  @import "contexts/events-list";
20
20
  @import "contexts/event-detail";
21
+ @import "contexts/location";
21
22
  @import "contexts/related-events";
22
23
  @import "contexts/callouts";
23
24
 
@@ -16,6 +16,7 @@
16
16
  @import "contexts/site-footer";
17
17
  @import "contexts/events-list";
18
18
  @import "contexts/event-detail";
19
+ @import "contexts/location";
19
20
  @import "contexts/related-events";
20
21
  @import "contexts/callouts";
21
22
 
@@ -24,3 +25,4 @@
24
25
  @import "modules/event";
25
26
  @import "modules/toggler";
26
27
  @import "modules/callout";
28
+
@@ -15,7 +15,7 @@
15
15
  %img{src: @event.image, alt: "Lead Image"}
16
16
 
17
17
  .event-body
18
- .event-body-text
18
+ .event-body-text.event-long-description
19
19
  = @event.body
20
20
 
21
21
  %ul.event-tools
@@ -1,22 +1,26 @@
1
1
  - cache(@location, base_domain: current_site.base_domain) do
2
- %header.page-header
3
- %h1.page-title
4
- = @location.title
5
- %h3.page-subtitle
6
- =link_to area_path(id: @location.parent.slug) do
7
- = @location.parent.title
8
- .content-wrapper
9
- %section.primary-content
10
- %h4.tertiary-title
11
- = @location.festivity_address
12
- %br
13
- = "#{@location.festivity_city}, #{@location.festivity_state} #{@location.festivity_zip}"
14
- - unless @location.festivity_directions_url.blank?
15
- %p
16
- = link_to "Directions", "#{@location.festivity_directions_url}", class: 'btn btn-default', target: '_blank'
17
- .event-media
2
+ .location-content
3
+ %header.location-header
4
+ .location-info
5
+ .location-title
6
+ %h1.page-title
7
+ = @location.title
8
+ %h3.tertiary-title
9
+ =link_to area_path(id: @location.parent.slug) do
10
+ = @location.parent.title
11
+ .location-address
12
+
13
+ %h4.tertiary-title
14
+ = @location.festivity_address
15
+ %br
16
+ = "#{@location.festivity_city}, #{@location.festivity_state} #{@location.festivity_zip}"
17
+ - unless @location.festivity_directions_url.blank?
18
+ = link_to "Directions", "#{@location.festivity_directions_url}", class: 'button', target: '_blank'
19
+ .location-media
18
20
  %img{src: @location.image, alt: "Lead Image"}
19
21
 
22
+ .content-wrapper
23
+ %section.primary-content
20
24
  - if @location_events.events.any?
21
25
  %section.related-events
22
26
  %h3
@@ -1,5 +1,5 @@
1
1
  module TrustyFestivityExtension
2
- VERSION = "2.3.26"
2
+ VERSION = "2.3.27"
3
3
  SUMMARY = "Festival microsite engine for Trusty CMS"
4
4
  DESCRIPTION = "Event management for arts festivals."
5
5
  URL = "http://github.com/pgharts/trusty-festivity-extension"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-festivity-extension
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.26
4
+ version: 2.3.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Sipple
@@ -472,6 +472,7 @@ files:
472
472
  - app/assets/stylesheets/contexts/_callouts.scss
473
473
  - app/assets/stylesheets/contexts/_event-detail.scss
474
474
  - app/assets/stylesheets/contexts/_events-list.scss
475
+ - app/assets/stylesheets/contexts/_location.scss
475
476
  - app/assets/stylesheets/contexts/_related-events.scss
476
477
  - app/assets/stylesheets/contexts/_site-footer.scss
477
478
  - app/assets/stylesheets/contexts/_site-header.scss