forever_style_guide 3.0.18 → 3.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/forever_style_guide/modules/_footer.scss +31 -103
- data/app/helpers/forever_style_guide/application_helper.rb +4 -0
- data/app/views/forever_style_guide/sections/components/_footer.erb +1 -12
- data/app/views/forever_style_guide/sections/components/footer/_footer.erb +55 -128
- data/lib/forever_style_guide/version.rb +1 -1
- data/test/dummy/log/development.log +604 -0
- data/test/dummy/tmp/cache/assets/development/sass/1fccdb6be9da19cc345d4b92b55eb0d4fbf7c363/_checkbox.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/1fccdb6be9da19cc345d4b92b55eb0d4fbf7c363/_footer.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/1fccdb6be9da19cc345d4b92b55eb0d4fbf7c363/_hero_simple.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/b7a4a2cc1ae6dd8beea9163f40226a4c9c3e7926/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/74ee448666a16d19f05d144192a607fd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/93ba27aa64423f74732b1f2b12b84118 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b7c77fa9ddbae9998b1339d6c2c3eef0 +0 -0
- metadata +2 -3
- data/app/views/forever_style_guide/sections/components/footer/_footer_demo.erb +0 -143
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48b4974cee2b7137d29d0e05a04a0eda9a56775e
|
|
4
|
+
data.tar.gz: ed237123efa3903b575672357a3169f5f28f79b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59f8883de686fb334c767caa1a7c81c8111a9f4b1e7b72125f879e4ad3e53184ceb471d4ba9b6262875f515bc2721acf47c55ba21b55ac07ab9edbb55f92a29c
|
|
7
|
+
data.tar.gz: ab3510feca52b59d42cf2b0a13b20f285a8ac4134d31fec575795ce4e0816ede6b9ab03404f7820995bc931d27faf338c5dde9b6dcd41d9fde89f32308deca83
|
|
@@ -1,119 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
.footer {
|
|
4
|
-
background-color: color('white');
|
|
5
|
-
@extend %footer-shadow;
|
|
1
|
+
.footer-header {
|
|
2
|
+
font-weight: 500;
|
|
6
3
|
}
|
|
7
|
-
.footer-
|
|
8
|
-
|
|
4
|
+
.footer-main_block {
|
|
5
|
+
margin-top: 10px;
|
|
9
6
|
|
|
10
|
-
@media (min-width: $screen-
|
|
11
|
-
|
|
12
|
-
padding-left: 15px;
|
|
7
|
+
@media (min-width: $screen-md) {
|
|
8
|
+
margin-top: 20px;
|
|
13
9
|
}
|
|
14
|
-
}
|
|
15
|
-
.footer-products-item {
|
|
16
|
-
padding-top: $padding-default-vertical;
|
|
17
|
-
padding-bottom: $padding-default-vertical;
|
|
18
|
-
|
|
19
|
-
&:first-child {
|
|
20
|
-
margin-top: 3px; //visual alignment for logos
|
|
21
|
-
|
|
22
|
-
@media (min-width: $screen-md-min) {
|
|
23
|
-
text-align: left;
|
|
24
|
-
}
|
|
25
|
-
@media (min-width: $screen-lg-min) {
|
|
26
|
-
margin-top: 5px
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
&:last-child {
|
|
30
|
-
@media (min-width: $screen-md-min) {
|
|
31
|
-
text-align: right;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.footer-links {
|
|
37
|
-
background-color: color('gray-800');
|
|
38
10
|
|
|
39
|
-
.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
color: color('gray-400');
|
|
43
|
-
line-height: 1.2;
|
|
44
|
-
border: 1px solid color('gray-600');
|
|
45
|
-
border-radius: $border-radius-large;
|
|
46
|
-
a {
|
|
47
|
-
display: block;
|
|
48
|
-
}
|
|
49
|
-
&.is_top {
|
|
50
|
-
margin-top: 0;
|
|
51
|
-
}
|
|
11
|
+
.footer-link {
|
|
12
|
+
color: color('gray-300');
|
|
13
|
+
font-size: $font-size-200;
|
|
52
14
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
float: left;
|
|
15
|
+
|
|
16
|
+
.footer-link-dark {
|
|
56
17
|
color: color('gray-400');
|
|
57
|
-
font-size: $font-size-600;
|
|
58
|
-
}
|
|
59
|
-
.security_assurance-text {
|
|
60
|
-
width: 80%;
|
|
61
|
-
float: left;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
.footer-links-ambassadors {
|
|
65
|
-
@media (min-width: $screen-sm-min) {
|
|
66
|
-
margin-top: $padding-large-vertical;
|
|
67
|
-
padding-top: $padding-large-vertical;
|
|
68
|
-
text-align: center;
|
|
69
|
-
border-top: 1px solid color('gray-600');
|
|
70
|
-
p {
|
|
71
|
-
max-width: 300px;
|
|
72
|
-
margin-right: auto;
|
|
73
|
-
margin-left: auto;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
@media (min-width: $screen-md-min) {
|
|
77
|
-
margin-top: 0;
|
|
78
|
-
padding-top: 0;
|
|
79
|
-
text-align: left;
|
|
80
|
-
border: 0;
|
|
81
|
-
}
|
|
82
|
-
@media (min-width: $screen-lg-min) {
|
|
83
|
-
padding-right: 40px;
|
|
84
18
|
}
|
|
85
19
|
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
color: color('white');
|
|
90
|
-
text-align: center;
|
|
91
|
-
background-color: color('gray-800');
|
|
20
|
+
.footer-title {
|
|
21
|
+
font-size: $font-size-300;
|
|
22
|
+
margin-bottom: 5px;
|
|
92
23
|
}
|
|
93
24
|
.footer-social_icons {
|
|
94
|
-
|
|
95
|
-
|
|
25
|
+
margin-top: 10px;
|
|
26
|
+
margin-bottom: 10px;
|
|
96
27
|
|
|
97
|
-
|
|
98
|
-
|
|
28
|
+
.fa-feature_bullet:hover {
|
|
29
|
+
color: color('gray-500');
|
|
99
30
|
}
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
}
|
|
111
|
-
}
|
|
31
|
+
}
|
|
32
|
+
.footer-divider {
|
|
33
|
+
margin-top: 0;
|
|
34
|
+
margin-bottom: 5px;
|
|
35
|
+
border-top: 1px solid $color-gray-500;
|
|
36
|
+
}
|
|
37
|
+
.footer-copyright {
|
|
38
|
+
@media (max-width: $screen-sm) {
|
|
39
|
+
margin-bottom: 0;
|
|
40
|
+
margin-top: 5px;
|
|
112
41
|
}
|
|
113
42
|
}
|
|
114
|
-
.footer-
|
|
115
|
-
@media (min-width: $screen-
|
|
116
|
-
text-align:
|
|
117
|
-
border-top: 1px solid color('gray-600');
|
|
43
|
+
.footer-policy_links {
|
|
44
|
+
@media (min-width: $screen-md) {
|
|
45
|
+
text-align: right;
|
|
118
46
|
}
|
|
119
47
|
}
|
|
@@ -295,6 +295,10 @@ module ForeverStyleGuide
|
|
|
295
295
|
"https://play.google.com/store/apps/details?id=com.forever.forever"
|
|
296
296
|
end
|
|
297
297
|
|
|
298
|
+
def careers_url
|
|
299
|
+
"http://forever.theresumator.com/apply"
|
|
300
|
+
end
|
|
301
|
+
|
|
298
302
|
def help_center_url
|
|
299
303
|
"https://forever1.zendesk.com/hc/en-us"
|
|
300
304
|
end
|
|
@@ -1,17 +1,6 @@
|
|
|
1
1
|
<div class="style-guide-partial" id="footer">
|
|
2
2
|
<div class="style-guide-partial-content">
|
|
3
|
-
<p>The
|
|
3
|
+
<p>The complete, fully-responsive footer is available as a <%= link_to "Fullscreen Demo.", demo_link('footer') %>
|
|
4
4
|
</p>
|
|
5
|
-
<div class="footer-sample l-section">
|
|
6
|
-
<%= render partial: "forever_style_guide/sections/components/footer/footer_demo" %>
|
|
7
|
-
</div>
|
|
8
|
-
<div class="style-guide-toggle">
|
|
9
|
-
<input id="style-guide-toggle-nav_basic" class="style-guide-toggle-input" type="checkbox" />
|
|
10
|
-
<label for="style-guide-toggle-nav_basic" class="style-guide-toggle-label">
|
|
11
|
-
<pre class="style-guide-toggle-source prettyprint linenums"><%= escape_erb_for_display("forever_style_guide/sections/components/footer/_footer.erb") %></pre>
|
|
12
|
-
<div class="style-guide-toggle-show">Show source code</div>
|
|
13
|
-
<div class="style-guide-toggle-hide">Hide source code</div>
|
|
14
|
-
</label>
|
|
15
|
-
</div>
|
|
16
5
|
</div>
|
|
17
6
|
</div>
|
|
@@ -1,142 +1,69 @@
|
|
|
1
|
-
<footer class="footer">
|
|
2
|
-
<div class="
|
|
3
|
-
<
|
|
4
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
5
|
-
<%= link_to "https://store.forever.com/pricing", :title => "Forever Permanent Storage" do %>
|
|
6
|
-
<%= image_tag("forever_style_guide/forever-logo.png", alt: "Forever Logo", title: "Forever Permanent Storage", class: "footer-product-img") %>
|
|
7
|
-
<% end %>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
10
|
-
<%= link_to "https://forever.com/artisan", :title => "Forever Artisan" do %>
|
|
11
|
-
<%= image_tag("forever_style_guide/artisan-logo-sm.png", alt: "Forever Artisan Logo", title: "Forever Artisan", class: "footer-product-img") %>
|
|
12
|
-
<% end %>
|
|
13
|
-
</div>
|
|
14
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
15
|
-
<%= link_to "https://forever.com/historian", :title => "Forever Historian" do %>
|
|
16
|
-
<%= image_tag("forever_style_guide/historian-logo-sm.png", alt: "Forever Historian Logo", title: "Forever Historian", class: "footer-product-img") %>
|
|
17
|
-
<% end %>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
20
|
-
<%= link_to "https://store.forever.com/digitization-services", :title => "Forever Services" do %>
|
|
21
|
-
<%= image_tag("forever_style_guide/services-logo-sm.png", alt: "Forever Services Logo", title: "Forever Services", class: "footer-product-img") %>
|
|
22
|
-
<% end %>
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
1
|
+
<footer class="footer color_block-gray-700">
|
|
2
|
+
<div class="container-fluid color_block-services-dark">
|
|
3
|
+
<h4 class="color-white text-center footer-header">Collect, curate, and celebrate your memories now and for generations.</h4>
|
|
25
4
|
</div>
|
|
26
5
|
|
|
27
|
-
<div class="footer-
|
|
28
|
-
<div class="
|
|
29
|
-
<div class="row">
|
|
30
|
-
<div class="col-xs-6 col-sm-8 col-md-6">
|
|
31
|
-
<div class="row">
|
|
32
|
-
<div class="hidden-xs col-sm-4 col-md-3">
|
|
33
|
-
<ul class="list-unstyled">
|
|
34
|
-
<li><a href="#" title="Print Shop">Print Shop</a></li>
|
|
35
|
-
<li><a href="#" title="Digital Art">Digital Art</a></li>
|
|
36
|
-
<li><a href="#" title="Gift Certificates">Gift Certificates</a></li>
|
|
37
|
-
<li><a href="#" title="Support">Support</a></li>
|
|
38
|
-
<li><a href="#" title="Blog">Blog</a></li>
|
|
39
|
-
<li><a href="#" title="Forever Live!">Forever Live!</a></li>
|
|
40
|
-
</ul>
|
|
41
|
-
</div>
|
|
42
|
-
<div class="col-sm-4 col-sm-push-4 col-md-push-3">
|
|
43
|
-
<ul class="list-unstyled">
|
|
44
|
-
<li class="visible-xs"><a href="#" title="Gift Certificates">Gift Certificates</a></li>
|
|
45
|
-
<li><a href="#" title="My Account">My Account</a></li>
|
|
46
|
-
<li><a href="#" title="Customer Commitments">Customer Commitments</a></li>
|
|
47
|
-
<li><a href="#" title="Terms of Service">Terms of Service</a></li>
|
|
48
|
-
<li><a href="#" title="Investment Policy">Investment Policy</a></li>
|
|
49
|
-
<li><a href="#" title="Return Policy">Return Policy</a></li>
|
|
50
|
-
</ul>
|
|
51
|
-
</div>
|
|
52
|
-
<div class="hidden-xs col-xs-6 col-sm-4 col-sm-pull-4 col-md-3">
|
|
53
|
-
<ul class="list-unstyled">
|
|
54
|
-
<li><a href="#" title="About Forever">About</a></li>
|
|
55
|
-
<li><a href="#" title="Guarantee">Guarantee</a></li>
|
|
56
|
-
<li><a href="#" title="Our Team">Team</a></li>
|
|
57
|
-
<li><a href="#" title="Beliefs & Values">Beliefs</a></li>
|
|
58
|
-
<li><a href="#" title="Forever Press">Press</a></li>
|
|
59
|
-
<li><a href="#" title="Careers at Forever">Careers</a></li>
|
|
60
|
-
</ul>
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
6
|
+
<div class="container footer-main_block">
|
|
7
|
+
<div class="row">
|
|
64
8
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
<
|
|
71
|
-
<
|
|
72
|
-
|
|
9
|
+
<div class="col-md-6 col-md-push-3 col-xs-12">
|
|
10
|
+
<h4 class="color-gray-300 footer-title">Forever™ Products</h4>
|
|
11
|
+
<hr class="footer-divider" />
|
|
12
|
+
<div class="row">
|
|
13
|
+
<div class="col-xs-6">
|
|
14
|
+
<ul class="list-unstyled">
|
|
15
|
+
<li><%= link_to "Guaranteed Storage", storage_url, class: "footer-link", title: "Guaranteed Permanent Storage for Photos & Documents" %></li>
|
|
16
|
+
<li><%= link_to "Forever Artisan", artisan_url, class: "footer-link", title: "Forever Artisan 5 Digital Scrapbooking Software" %></li>
|
|
17
|
+
<li><%= link_to "Forever Historian", historian_url, class: "footer-link", title: "Photo Management Software for Windows" %></li>
|
|
18
|
+
</ul>
|
|
73
19
|
</div>
|
|
74
|
-
<div class="
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
<
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
20
|
+
<div class="col-xs-6">
|
|
21
|
+
<ul class="list-unstyled">
|
|
22
|
+
<li><%= link_to "Digital Art", digital_art_url, class: "footer-link" , title: "Premium Digital Scrapbooking Art" %></li>
|
|
23
|
+
<li><%= link_to "Print Products", print_url, class: "footer-link" , title: "Create and Print Online or with Artisan Scrapbooking Software"%></li>
|
|
24
|
+
<li>
|
|
25
|
+
<%= link_to services_url, class: "footer-link", title: "Digitization and Scanning Services" do %>
|
|
26
|
+
Media Conversion <span class="hidden-xs">Services</span>
|
|
27
|
+
<% end %>
|
|
28
|
+
</li>
|
|
29
|
+
</ul>
|
|
83
30
|
</div>
|
|
84
31
|
</div>
|
|
32
|
+
</div>
|
|
85
33
|
|
|
86
|
-
|
|
87
|
-
<
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
<
|
|
93
|
-
</
|
|
34
|
+
<div class="col-md-3 col-md-pull-6 col-sm-6 col-xs-12">
|
|
35
|
+
<h4 class="color-gray-300 footer-title">Support</h4>
|
|
36
|
+
<hr class="footer-divider" />
|
|
37
|
+
<ul class="list-unstyled">
|
|
38
|
+
<li><%= link_to "Visit Forever Help Center", help_center_url, class: "footer-link", title: "Visit the Forever Help Center" %></li>
|
|
39
|
+
<li><%= mail_to "support@forever.com", "support@forever.com", class: "footer-link", title: "Email us at support@forever.com" %></li>
|
|
40
|
+
<li><%= link_to "1-888-FOREVER (1-888-367-3837)", "tel:1-888-367-3837", class: "footer-link", title: "Call us at 1-888-367-3837" %></li>
|
|
41
|
+
</ul>
|
|
42
|
+
</div>
|
|
94
43
|
|
|
44
|
+
<div class="col-md-3 col-xs-12 col-sm-6">
|
|
45
|
+
<h4 class="color-gray-300 footer-title">Stay Connected</h4>
|
|
46
|
+
<hr class="footer-divider" />
|
|
47
|
+
<div class="footer-social_icons">
|
|
48
|
+
<%= link_to (fa_stacked_icon "facebook feature_bullet-icon", base: "circle", class: "fa-feature_bullet color-gray-600"), facebook_url, title: "Follow Forever on Facebook" %>
|
|
49
|
+
<%= link_to (fa_stacked_icon "twitter feature_bullet-icon", base: "circle", class: "fa-feature_bullet color-gray-600"), twitter_url, title: "Follow Forever on Twitter" %>
|
|
50
|
+
<%= link_to (fa_stacked_icon "instagram feature_bullet-icon", base: "circle", class: "fa-feature_bullet color-gray-600"), instagram_url, title: "Follow Forever on Instagram" %>
|
|
51
|
+
<%= link_to (fa_stacked_icon "youtube feature_bullet-icon", base: "circle", class: "fa-feature_bullet color-gray-600"), youtube_url, title: "Follow Forever on YouTube" %>
|
|
52
|
+
<%= link_to (fa_stacked_icon "pinterest feature_bullet-icon", base: "circle", class: "fa-feature_bullet color-gray-600"), pinterest_url, title: "Follow Forever on Pinterest" %>
|
|
53
|
+
</div>
|
|
95
54
|
</div>
|
|
96
55
|
</div>
|
|
97
|
-
</div>
|
|
98
56
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
<a title="Forever Facebook" href="https://www.facebook.com/Forever">
|
|
110
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
111
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
112
|
-
<i class="fa fa-facebook fa-stack-1x"></i>
|
|
113
|
-
</span>
|
|
114
|
-
</a>
|
|
115
|
-
<a title="Forever Twitter" href="https://www.twitter.com/forever">
|
|
116
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
117
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
118
|
-
<i class="fa fa-twitter fa-stack-1x"></i>
|
|
119
|
-
</span>
|
|
120
|
-
</a>
|
|
121
|
-
<a title="Forever YouTube" href="https://www.youtube.com/channel/UCfBFL_W3FYW7W0wAr4EEGnA">
|
|
122
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
123
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
124
|
-
<i class="fa fa-youtube fa-stack-1x"></i>
|
|
125
|
-
</span>
|
|
126
|
-
</a>
|
|
127
|
-
<a title="Forever Pinterest" href="http://www.pinterest.com/FOREVER/">
|
|
128
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
129
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
130
|
-
<i class="fa fa-pinterest fa-stack-1x"></i>
|
|
131
|
-
</span>
|
|
132
|
-
</a>
|
|
133
|
-
</div>
|
|
134
|
-
<div class="col-xs-12 col-sm-6 col-sm-pull-6 footer-copy_contact">
|
|
135
|
-
<h3 class="color-gray-400">Contact us at 1-888-FOREVER</h3>
|
|
136
|
-
<p class="color-gray-400">
|
|
137
|
-
© Copyright 2015, Forever, Inc.
|
|
138
|
-
</p>
|
|
139
|
-
</div>
|
|
57
|
+
<div class="row l-section-close">
|
|
58
|
+
<div class="col-xs-12 col-sm-6">
|
|
59
|
+
<p class="footer-link footer-link-dark footer-copyright">© 2013–<%= Time.now.year %> Forever, Inc</p>
|
|
60
|
+
</div>
|
|
61
|
+
<div class="col-xs-12 col-sm-6 footer-policy_links">
|
|
62
|
+
<p class="small color-gray-400">
|
|
63
|
+
<%= link_to "Careers", careers_url, title: "Join the Forever Team", class: "footer-link footer-link-dark" %> |
|
|
64
|
+
<%= link_to "Privacy Policy", privacy_url, class: "footer-link footer-link-dark", title: "Forever Privacy Policy" %> |
|
|
65
|
+
<%= link_to "Terms of Service", tos_url, class: "footer-link footer-link-dark", title: "Forever Terms of Service" %>
|
|
66
|
+
</p>
|
|
140
67
|
</div>
|
|
141
68
|
</div>
|
|
142
69
|
</div>
|
|
@@ -578525,3 +578525,607 @@ Started GET "/assets/forever_style_guide/check.png" for ::1 at 2016-08-17 11:14:
|
|
|
578525
578525
|
|
|
578526
578526
|
|
|
578527
578527
|
Started GET "/assets/ProximaNova-Bold-webfont.woff" for ::1 at 2016-08-17 11:14:45 -0400
|
|
578528
|
+
|
|
578529
|
+
|
|
578530
|
+
Started GET "/style_guide" for ::1 at 2016-08-18 11:43:52 -0400
|
|
578531
|
+
Processing by ForeverStyleGuide::StyleController#index as HTML
|
|
578532
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (0.9ms)
|
|
578533
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (3.0ms)
|
|
578534
|
+
Completed 200 OK in 3743ms (Views: 3741.9ms | ActiveRecord: 0.0ms)
|
|
578535
|
+
|
|
578536
|
+
|
|
578537
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578538
|
+
|
|
578539
|
+
|
|
578540
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578541
|
+
|
|
578542
|
+
|
|
578543
|
+
Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578544
|
+
|
|
578545
|
+
|
|
578546
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578547
|
+
|
|
578548
|
+
|
|
578549
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578550
|
+
|
|
578551
|
+
|
|
578552
|
+
Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578553
|
+
|
|
578554
|
+
|
|
578555
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578556
|
+
|
|
578557
|
+
|
|
578558
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578559
|
+
|
|
578560
|
+
|
|
578561
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578562
|
+
|
|
578563
|
+
|
|
578564
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578565
|
+
|
|
578566
|
+
|
|
578567
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578568
|
+
|
|
578569
|
+
|
|
578570
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578571
|
+
|
|
578572
|
+
|
|
578573
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578574
|
+
|
|
578575
|
+
|
|
578576
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578577
|
+
|
|
578578
|
+
|
|
578579
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578580
|
+
|
|
578581
|
+
|
|
578582
|
+
Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578583
|
+
|
|
578584
|
+
|
|
578585
|
+
Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578586
|
+
|
|
578587
|
+
|
|
578588
|
+
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578589
|
+
|
|
578590
|
+
|
|
578591
|
+
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578592
|
+
|
|
578593
|
+
|
|
578594
|
+
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578595
|
+
|
|
578596
|
+
|
|
578597
|
+
Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578598
|
+
|
|
578599
|
+
|
|
578600
|
+
Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578601
|
+
|
|
578602
|
+
|
|
578603
|
+
Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578604
|
+
|
|
578605
|
+
|
|
578606
|
+
Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578607
|
+
|
|
578608
|
+
|
|
578609
|
+
Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578610
|
+
|
|
578611
|
+
|
|
578612
|
+
Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-08-18 11:43:56 -0400
|
|
578613
|
+
|
|
578614
|
+
|
|
578615
|
+
Started GET "/style_guide" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578616
|
+
Processing by ForeverStyleGuide::StyleController#index as HTML
|
|
578617
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (1.0ms)
|
|
578618
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (2.9ms)
|
|
578619
|
+
Completed 200 OK in 188ms (Views: 187.9ms | ActiveRecord: 0.0ms)
|
|
578620
|
+
|
|
578621
|
+
|
|
578622
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578623
|
+
|
|
578624
|
+
|
|
578625
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578626
|
+
|
|
578627
|
+
|
|
578628
|
+
Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578629
|
+
|
|
578630
|
+
|
|
578631
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578632
|
+
|
|
578633
|
+
|
|
578634
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578635
|
+
|
|
578636
|
+
|
|
578637
|
+
Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578638
|
+
|
|
578639
|
+
|
|
578640
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578641
|
+
|
|
578642
|
+
|
|
578643
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578644
|
+
|
|
578645
|
+
|
|
578646
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578647
|
+
|
|
578648
|
+
|
|
578649
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578650
|
+
|
|
578651
|
+
|
|
578652
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578653
|
+
|
|
578654
|
+
|
|
578655
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-19 13:40:04 -0400
|
|
578656
|
+
|
|
578657
|
+
|
|
578658
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578659
|
+
|
|
578660
|
+
|
|
578661
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578662
|
+
|
|
578663
|
+
|
|
578664
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578665
|
+
|
|
578666
|
+
|
|
578667
|
+
Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578668
|
+
|
|
578669
|
+
|
|
578670
|
+
Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578671
|
+
|
|
578672
|
+
|
|
578673
|
+
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578674
|
+
|
|
578675
|
+
|
|
578676
|
+
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578677
|
+
|
|
578678
|
+
|
|
578679
|
+
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578680
|
+
|
|
578681
|
+
|
|
578682
|
+
Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578683
|
+
|
|
578684
|
+
|
|
578685
|
+
Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578686
|
+
|
|
578687
|
+
|
|
578688
|
+
Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578689
|
+
|
|
578690
|
+
|
|
578691
|
+
Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578692
|
+
|
|
578693
|
+
|
|
578694
|
+
Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578695
|
+
|
|
578696
|
+
|
|
578697
|
+
Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-08-19 13:40:05 -0400
|
|
578698
|
+
|
|
578699
|
+
|
|
578700
|
+
Started GET "/style_guide/components" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578701
|
+
Processing by ForeverStyleGuide::StyleController#show as HTML
|
|
578702
|
+
Parameters: {"id"=>"components"}
|
|
578703
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.3ms)
|
|
578704
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (1.1ms)
|
|
578705
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (1.3ms)
|
|
578706
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.7ms)
|
|
578707
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (1.7ms)
|
|
578708
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (7.2ms)
|
|
578709
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/footer/_footer_demo.erb (0.8ms)
|
|
578710
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (6.4ms)
|
|
578711
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (25.4ms)
|
|
578712
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (0.2ms)
|
|
578713
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.1ms)
|
|
578714
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero_simple.erb (0.2ms)
|
|
578715
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.5ms)
|
|
578716
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_modals.erb (10.9ms)
|
|
578717
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (35.1ms)
|
|
578718
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.1ms)
|
|
578719
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.0ms)
|
|
578720
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.1ms)
|
|
578721
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.0ms)
|
|
578722
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_promo_banner.html.erb (0.1ms)
|
|
578723
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.0ms)
|
|
578724
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.4ms)
|
|
578725
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.1ms)
|
|
578726
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (19.0ms)
|
|
578727
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (240.1ms)
|
|
578728
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.1ms)
|
|
578729
|
+
Completed 200 OK in 348ms (Views: 347.6ms | ActiveRecord: 0.0ms)
|
|
578730
|
+
|
|
578731
|
+
|
|
578732
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578733
|
+
|
|
578734
|
+
|
|
578735
|
+
Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578736
|
+
|
|
578737
|
+
|
|
578738
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578739
|
+
|
|
578740
|
+
|
|
578741
|
+
Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578742
|
+
|
|
578743
|
+
|
|
578744
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578745
|
+
|
|
578746
|
+
|
|
578747
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578748
|
+
|
|
578749
|
+
|
|
578750
|
+
Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578751
|
+
|
|
578752
|
+
|
|
578753
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578754
|
+
|
|
578755
|
+
|
|
578756
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578757
|
+
|
|
578758
|
+
|
|
578759
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578760
|
+
|
|
578761
|
+
|
|
578762
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578763
|
+
|
|
578764
|
+
|
|
578765
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578766
|
+
|
|
578767
|
+
|
|
578768
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578769
|
+
|
|
578770
|
+
|
|
578771
|
+
Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578772
|
+
|
|
578773
|
+
|
|
578774
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578775
|
+
|
|
578776
|
+
|
|
578777
|
+
Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578778
|
+
|
|
578779
|
+
|
|
578780
|
+
Started GET "/assets/ProximaNova-Bold-webfont.woff" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578781
|
+
|
|
578782
|
+
|
|
578783
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578784
|
+
|
|
578785
|
+
|
|
578786
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-19 13:40:07 -0400
|
|
578787
|
+
|
|
578788
|
+
|
|
578789
|
+
Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578790
|
+
|
|
578791
|
+
|
|
578792
|
+
Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578793
|
+
|
|
578794
|
+
|
|
578795
|
+
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578796
|
+
|
|
578797
|
+
|
|
578798
|
+
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578799
|
+
|
|
578800
|
+
|
|
578801
|
+
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578802
|
+
|
|
578803
|
+
|
|
578804
|
+
Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578805
|
+
|
|
578806
|
+
|
|
578807
|
+
Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578808
|
+
|
|
578809
|
+
|
|
578810
|
+
Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578811
|
+
|
|
578812
|
+
|
|
578813
|
+
Started GET "/assets/style_guide/personas/ted_avatar.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578814
|
+
|
|
578815
|
+
|
|
578816
|
+
Started GET "/assets/forever_style_guide/forever-logo.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578817
|
+
|
|
578818
|
+
|
|
578819
|
+
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578820
|
+
|
|
578821
|
+
|
|
578822
|
+
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578823
|
+
|
|
578824
|
+
|
|
578825
|
+
Started GET "/assets/forever_style_guide/services-logo-sm.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578826
|
+
|
|
578827
|
+
|
|
578828
|
+
Started GET "/assets/forever_style_guide/single-product.jpg" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578829
|
+
|
|
578830
|
+
|
|
578831
|
+
Started GET "/assets/forever_style_guide/digiart1.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578832
|
+
|
|
578833
|
+
|
|
578834
|
+
Started GET "/assets/forever_style_guide/digiart2.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578835
|
+
|
|
578836
|
+
|
|
578837
|
+
Started GET "/assets/forever_style_guide/digiart3.png" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578838
|
+
|
|
578839
|
+
|
|
578840
|
+
Started GET "/assets/forever_style_guide/contextualhelplassoanimation.gif" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578841
|
+
|
|
578842
|
+
|
|
578843
|
+
Started GET "/assets/style_guide/hero/beach-girl.jpg" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578844
|
+
|
|
578845
|
+
|
|
578846
|
+
Started GET "/assets/style_guide/hero/beach-girl-md.jpg" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578847
|
+
|
|
578848
|
+
|
|
578849
|
+
Started GET "/assets/style_guide/modals/promobg.jpg" for ::1 at 2016-08-19 13:40:08 -0400
|
|
578850
|
+
|
|
578851
|
+
|
|
578852
|
+
Started GET "/assets/ProximaNova-Light-webfont.woff" for ::1 at 2016-08-19 13:40:43 -0400
|
|
578853
|
+
|
|
578854
|
+
|
|
578855
|
+
Started GET "/style_guide" for ::1 at 2016-08-22 11:39:06 -0400
|
|
578856
|
+
Processing by ForeverStyleGuide::StyleController#index as HTML
|
|
578857
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (1.3ms)
|
|
578858
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (2.5ms)
|
|
578859
|
+
Completed 200 OK in 4061ms (Views: 4060.1ms | ActiveRecord: 0.0ms)
|
|
578860
|
+
|
|
578861
|
+
|
|
578862
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578863
|
+
|
|
578864
|
+
|
|
578865
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578866
|
+
|
|
578867
|
+
|
|
578868
|
+
Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578869
|
+
|
|
578870
|
+
|
|
578871
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578872
|
+
|
|
578873
|
+
|
|
578874
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578875
|
+
|
|
578876
|
+
|
|
578877
|
+
Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578878
|
+
|
|
578879
|
+
|
|
578880
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578881
|
+
|
|
578882
|
+
|
|
578883
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578884
|
+
|
|
578885
|
+
|
|
578886
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578887
|
+
|
|
578888
|
+
|
|
578889
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578890
|
+
|
|
578891
|
+
|
|
578892
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578893
|
+
|
|
578894
|
+
|
|
578895
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578896
|
+
|
|
578897
|
+
|
|
578898
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578899
|
+
|
|
578900
|
+
|
|
578901
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578902
|
+
|
|
578903
|
+
|
|
578904
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578905
|
+
|
|
578906
|
+
|
|
578907
|
+
Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578908
|
+
|
|
578909
|
+
|
|
578910
|
+
Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578911
|
+
|
|
578912
|
+
|
|
578913
|
+
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578914
|
+
|
|
578915
|
+
|
|
578916
|
+
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578917
|
+
|
|
578918
|
+
|
|
578919
|
+
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578920
|
+
|
|
578921
|
+
|
|
578922
|
+
Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578923
|
+
|
|
578924
|
+
|
|
578925
|
+
Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578926
|
+
|
|
578927
|
+
|
|
578928
|
+
Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578929
|
+
|
|
578930
|
+
|
|
578931
|
+
Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578932
|
+
|
|
578933
|
+
|
|
578934
|
+
Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578935
|
+
|
|
578936
|
+
|
|
578937
|
+
Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-08-22 11:39:11 -0400
|
|
578938
|
+
|
|
578939
|
+
|
|
578940
|
+
Started GET "/style_guide/components" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578941
|
+
Processing by ForeverStyleGuide::StyleController#show as HTML
|
|
578942
|
+
Parameters: {"id"=>"components"}
|
|
578943
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.3ms)
|
|
578944
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (1.3ms)
|
|
578945
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (0.8ms)
|
|
578946
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (27.2ms)
|
|
578947
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (1.2ms)
|
|
578948
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (7.0ms)
|
|
578949
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (0.8ms)
|
|
578950
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.1ms)
|
|
578951
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (0.2ms)
|
|
578952
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.7ms)
|
|
578953
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero_simple.erb (0.2ms)
|
|
578954
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.5ms)
|
|
578955
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_modals.erb (7.5ms)
|
|
578956
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (25.9ms)
|
|
578957
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.1ms)
|
|
578958
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.4ms)
|
|
578959
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.1ms)
|
|
578960
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.7ms)
|
|
578961
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_promo_banner.html.erb (0.1ms)
|
|
578962
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.1ms)
|
|
578963
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.6ms)
|
|
578964
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.1ms)
|
|
578965
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.1ms)
|
|
578966
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (229.9ms)
|
|
578967
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.5ms)
|
|
578968
|
+
Completed 200 OK in 337ms (Views: 336.9ms | ActiveRecord: 0.0ms)
|
|
578969
|
+
|
|
578970
|
+
|
|
578971
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578972
|
+
|
|
578973
|
+
|
|
578974
|
+
Started GET "/assets/style_guide/personas/ted_avatar.png" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578975
|
+
|
|
578976
|
+
|
|
578977
|
+
Started GET "/assets/forever_style_guide/single-product.jpg" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578978
|
+
|
|
578979
|
+
|
|
578980
|
+
Started GET "/assets/forever_style_guide/digiart1.png" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578981
|
+
|
|
578982
|
+
|
|
578983
|
+
Started GET "/assets/forever_style_guide/digiart2.png" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578984
|
+
|
|
578985
|
+
|
|
578986
|
+
Started GET "/assets/forever_style_guide/digiart3.png" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578987
|
+
|
|
578988
|
+
|
|
578989
|
+
Started GET "/assets/forever_style_guide/contextualhelplassoanimation.gif" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578990
|
+
|
|
578991
|
+
|
|
578992
|
+
Started GET "/assets/ProximaNova-Bold-webfont.woff" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578993
|
+
|
|
578994
|
+
|
|
578995
|
+
Started GET "/assets/style_guide/hero/beach-girl.jpg" for ::1 at 2016-08-22 11:40:57 -0400
|
|
578996
|
+
|
|
578997
|
+
|
|
578998
|
+
Started GET "/assets/style_guide/modals/promobg.jpg" for ::1 at 2016-08-22 11:40:58 -0400
|
|
578999
|
+
|
|
579000
|
+
|
|
579001
|
+
Started GET "/style_guide/demo/footer" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579002
|
+
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
|
579003
|
+
Parameters: {"path"=>"footer"}
|
|
579004
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_cart_icon.erb (0.4ms)
|
|
579005
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_my_forever_dropdown.erb (1.4ms)
|
|
579006
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_products_dropdown.erb (2.2ms)
|
|
579007
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_community_dropdown.erb (1.0ms)
|
|
579008
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_cart_icon.erb (0.2ms)
|
|
579009
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_account_dropdown.erb (1.0ms)
|
|
579010
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_ambassador_dropdown.erb (0.6ms)
|
|
579011
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_account_signed_out_mobile.erb (0.2ms)
|
|
579012
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav.erb (32.4ms)
|
|
579013
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/footer/_footer.erb (2.6ms)
|
|
579014
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/demo/footer.html.erb within layouts/forever_style_guide/application (40.1ms)
|
|
579015
|
+
Completed 200 OK in 150ms (Views: 149.4ms | ActiveRecord: 0.0ms)
|
|
579016
|
+
|
|
579017
|
+
|
|
579018
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579019
|
+
|
|
579020
|
+
|
|
579021
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579022
|
+
|
|
579023
|
+
|
|
579024
|
+
Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579025
|
+
|
|
579026
|
+
|
|
579027
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579028
|
+
|
|
579029
|
+
|
|
579030
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579031
|
+
|
|
579032
|
+
|
|
579033
|
+
Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579034
|
+
|
|
579035
|
+
|
|
579036
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579037
|
+
|
|
579038
|
+
|
|
579039
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579040
|
+
|
|
579041
|
+
|
|
579042
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579043
|
+
|
|
579044
|
+
|
|
579045
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579046
|
+
|
|
579047
|
+
|
|
579048
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579049
|
+
|
|
579050
|
+
|
|
579051
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579052
|
+
|
|
579053
|
+
|
|
579054
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579055
|
+
|
|
579056
|
+
|
|
579057
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579058
|
+
|
|
579059
|
+
|
|
579060
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579061
|
+
|
|
579062
|
+
|
|
579063
|
+
Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579064
|
+
|
|
579065
|
+
|
|
579066
|
+
Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579067
|
+
|
|
579068
|
+
|
|
579069
|
+
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579070
|
+
|
|
579071
|
+
|
|
579072
|
+
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579073
|
+
|
|
579074
|
+
|
|
579075
|
+
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579076
|
+
|
|
579077
|
+
|
|
579078
|
+
Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579079
|
+
|
|
579080
|
+
|
|
579081
|
+
Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579082
|
+
|
|
579083
|
+
|
|
579084
|
+
Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579085
|
+
|
|
579086
|
+
|
|
579087
|
+
Started GET "/assets/ProximaNova-Light-webfont.woff" for ::1 at 2016-08-22 11:41:03 -0400
|
|
579088
|
+
|
|
579089
|
+
|
|
579090
|
+
Started GET "/digital_art" for ::1 at 2016-08-22 11:43:55 -0400
|
|
579091
|
+
|
|
579092
|
+
ActionController::RoutingError (No route matches [GET] "/digital_art"):
|
|
579093
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
579094
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
579095
|
+
railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app'
|
|
579096
|
+
railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call'
|
|
579097
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
579098
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
579099
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
579100
|
+
railties (4.2.6) lib/rails/rack/logger.rb:20:in `call'
|
|
579101
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
579102
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
|
579103
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
|
579104
|
+
activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
579105
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
579106
|
+
rack-livereload (0.3.16) lib/rack/livereload.rb:23:in `_call'
|
|
579107
|
+
rack-livereload (0.3.16) lib/rack/livereload.rb:14:in `call'
|
|
579108
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
|
|
579109
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
|
579110
|
+
railties (4.2.6) lib/rails/engine.rb:518:in `call'
|
|
579111
|
+
railties (4.2.6) lib/rails/application.rb:165:in `call'
|
|
579112
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
579113
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
|
579114
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
|
579115
|
+
/Users/zschweitzer/.rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
|
579116
|
+
/Users/zschweitzer/.rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
|
579117
|
+
/Users/zschweitzer/.rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
|
579118
|
+
|
|
579119
|
+
|
|
579120
|
+
Rendered /Users/zschweitzer/.rvm/gems/ruby-2.1.4/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
|
579121
|
+
Rendered /Users/zschweitzer/.rvm/gems/ruby-2.1.4/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
|
|
579122
|
+
Rendered /Users/zschweitzer/.rvm/gems/ruby-2.1.4/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
|
|
579123
|
+
Rendered /Users/zschweitzer/.rvm/gems/ruby-2.1.4/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
|
|
579124
|
+
Rendered /Users/zschweitzer/.rvm/gems/ruby-2.1.4/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
579125
|
+
Rendered /Users/zschweitzer/.rvm/gems/ruby-2.1.4/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (26.7ms)
|
|
579126
|
+
|
|
579127
|
+
|
|
579128
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-22 13:06:50 -0400
|
|
579129
|
+
|
|
579130
|
+
|
|
579131
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-08-22 13:06:50 -0400
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: forever_style_guide
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.19
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicholas McClay
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -315,7 +315,6 @@ files:
|
|
|
315
315
|
- app/views/forever_style_guide/sections/components/_sign_in.erb
|
|
316
316
|
- app/views/forever_style_guide/sections/components/_switch.erb
|
|
317
317
|
- app/views/forever_style_guide/sections/components/footer/_footer.erb
|
|
318
|
-
- app/views/forever_style_guide/sections/components/footer/_footer_demo.erb
|
|
319
318
|
- app/views/forever_style_guide/sections/components/navigation/_nav.erb
|
|
320
319
|
- app/views/forever_style_guide/sections/components/navigation/_nav_account_dropdown.erb
|
|
321
320
|
- app/views/forever_style_guide/sections/components/navigation/_nav_account_dropdown_menu.erb
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
<footer class="footer">
|
|
2
|
-
<div class="footer-products ">
|
|
3
|
-
<div class="row">
|
|
4
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
5
|
-
<%= link_to "https://store.forever.com/pricing", :title => "Forever Permanent Storage" do %>
|
|
6
|
-
<%= image_tag("forever_style_guide/forever-logo.png", alt: "Forever Logo", title: "Forever Permanent Storage", class: "footer-product-img") %>
|
|
7
|
-
<% end %>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
10
|
-
<%= link_to "https://forever.com/artisan", :title => "Forever Artisan" do %>
|
|
11
|
-
<%= image_tag("forever_style_guide/artisan-logo-sm.png", alt: "Forever Artisan Logo", title: "Forever Artisan", class: "footer-product-img") %>
|
|
12
|
-
<% end %>
|
|
13
|
-
</div>
|
|
14
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
15
|
-
<%= link_to "https://forever.com/historian", :title => "Forever Historian" do %>
|
|
16
|
-
<%= image_tag("forever_style_guide/historian-logo-sm.png", alt: "Forever Historian Logo", title: "Forever Historian", class: "footer-product-img") %>
|
|
17
|
-
<% end %>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="footer-products-item col-xs-6 col-sm-3">
|
|
20
|
-
<%= link_to "https://store.forever.com/digitization-services", :title => "Forever Services" do %>
|
|
21
|
-
<%= image_tag("forever_style_guide/services-logo-sm.png", alt: "Forever Services Logo", title: "Forever Services", class: "footer-product-img") %>
|
|
22
|
-
<% end %>
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
|
|
27
|
-
<div class="footer-links l-padded">
|
|
28
|
-
<div class="">
|
|
29
|
-
<div class="row">
|
|
30
|
-
<div class="col-md-12">
|
|
31
|
-
<div class="row">
|
|
32
|
-
<div class="hidden-xs col-sm-4 col-md-3">
|
|
33
|
-
<ul class="list-unstyled">
|
|
34
|
-
<li><a href="#" title="Print Shop">Print Shop</a></li>
|
|
35
|
-
<li><a href="#" title="Digital Art">Digital Art</a></li>
|
|
36
|
-
<li><a href="#" title="Gift Certificates">Gift Certificates</a></li>
|
|
37
|
-
<li><a href="#" title="Support">Support</a></li>
|
|
38
|
-
<li><a href="#" title="Blog">Blog</a></li>
|
|
39
|
-
<li><a href="#" title="Forever Live!">Forever Live!</a></li>
|
|
40
|
-
</ul>
|
|
41
|
-
</div>
|
|
42
|
-
<div class="col-sm-4 col-sm-push-4 col-md-push-3">
|
|
43
|
-
<ul class="list-unstyled">
|
|
44
|
-
<li><a href="#" title="My Account">My Account</a></li>
|
|
45
|
-
<li><a href="#" title="Customer Commitments">Customer Commitments</a></li>
|
|
46
|
-
<li><a href="#" title="Terms of Service">Terms of Service</a></li>
|
|
47
|
-
<li><a href="#" title="Investment Policy">Investment Policy</a></li>
|
|
48
|
-
<li><a href="#" title="Return Policy">Return Policy</a></li>
|
|
49
|
-
</ul>
|
|
50
|
-
</div>
|
|
51
|
-
<div class="hidden-xs col-xs-6 col-sm-4 col-sm-pull-4 col-md-3">
|
|
52
|
-
<ul class="list-unstyled">
|
|
53
|
-
<li><a href="#" title="About Forever">About</a></li>
|
|
54
|
-
<li><a href="#" title="Guarantee">Guarantee</a></li>
|
|
55
|
-
<li><a href="#" title="Our Team">Team</a></li>
|
|
56
|
-
<li><a href="#" title="Beliefs & Values">Beliefs</a></li>
|
|
57
|
-
<li><a href="#" title="Forever Press">Press</a></li>
|
|
58
|
-
<li><a href="#" title="Careers at Forever">Careers</a></li>
|
|
59
|
-
</ul>
|
|
60
|
-
</div>
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
|
|
64
|
-
<div class="col-md-12 l-padded-thin"></div>
|
|
65
|
-
<div class="col-md-6">
|
|
66
|
-
<div class="row">
|
|
67
|
-
<div class="col-xs-6">
|
|
68
|
-
<a href="#" title="Sign In" type="button" class="btn btn-default btn-block">Sign In</a>
|
|
69
|
-
</div>
|
|
70
|
-
<div class="col-xs-6">
|
|
71
|
-
<a href="#" title="Join Today" type="button" class="btn btn-primary btn-block">Join Today</a>
|
|
72
|
-
</div>
|
|
73
|
-
</div>
|
|
74
|
-
<div class="clearfix"></div>
|
|
75
|
-
<div class="row no-gutter security_assurance">
|
|
76
|
-
<div class="text-center security_assurance-icon">
|
|
77
|
-
<span class="fa fa-lock"></span>
|
|
78
|
-
</div>
|
|
79
|
-
<div class="small security_assurance-text">
|
|
80
|
-
Forever is committed to the security of your information.
|
|
81
|
-
<a href="#" title="Review Our Privacy Policy">Review our Privacy Policy.</a>
|
|
82
|
-
</div>
|
|
83
|
-
</div>
|
|
84
|
-
</div>
|
|
85
|
-
|
|
86
|
-
<div class="clearfix visible-sm"></div>
|
|
87
|
-
<div class="footer-links-ambassadors col-md-6">
|
|
88
|
-
<h6 class="page-title color-gray-400">Forever Amabassadors</h6>
|
|
89
|
-
<p class="small color-gray-400">
|
|
90
|
-
Help others capture and share their life’s stories. <span class="hidden-xs">(Plus earn commissions and get insider tips & training.)</span>
|
|
91
|
-
</p>
|
|
92
|
-
<a href="#" title="Learn More">Visit Ambassador Home</a>
|
|
93
|
-
</div>
|
|
94
|
-
|
|
95
|
-
</div>
|
|
96
|
-
</div>
|
|
97
|
-
</div>
|
|
98
|
-
|
|
99
|
-
<div class="footer-info l-padded-thin">
|
|
100
|
-
<div class="">
|
|
101
|
-
<div class="">
|
|
102
|
-
<div class="footer-social_icons col-xs-12 col-sm-6 col-sm-push-6">
|
|
103
|
-
<a title="Email Support@Forever.com" href="mailto:support@forever.com">
|
|
104
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
105
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
106
|
-
<i class="fa fa-envelope fa-stack-1x"></i>
|
|
107
|
-
</span>
|
|
108
|
-
</a>
|
|
109
|
-
<a title="Forever Facebook" href="https://www.facebook.com/Forever">
|
|
110
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
111
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
112
|
-
<i class="fa fa-facebook fa-stack-1x"></i>
|
|
113
|
-
</span>
|
|
114
|
-
</a>
|
|
115
|
-
<a title="Forever Twitter" href="https://www.twitter.com/forever">
|
|
116
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
117
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
118
|
-
<i class="fa fa-twitter fa-stack-1x"></i>
|
|
119
|
-
</span>
|
|
120
|
-
</a>
|
|
121
|
-
<a title="Forever YouTube" href="https://www.youtube.com/channel/UCfBFL_W3FYW7W0wAr4EEGnA">
|
|
122
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
123
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
124
|
-
<i class="fa fa-youtube fa-stack-1x"></i>
|
|
125
|
-
</span>
|
|
126
|
-
</a>
|
|
127
|
-
<a title="Forever Pinterest" href="http://www.pinterest.com/FOREVER/">
|
|
128
|
-
<span class="fa-stack fa-2x fa-feature_bullet-social">
|
|
129
|
-
<i class="fa fa-circle fa-feature_bullet-circle color-gray-600 fa-stack-2x"></i>
|
|
130
|
-
<i class="fa fa-pinterest fa-stack-1x"></i>
|
|
131
|
-
</span>
|
|
132
|
-
</a>
|
|
133
|
-
</div>
|
|
134
|
-
<div class="col-xs-12 col-sm-6 col-sm-pull-6 footer-copy_contact">
|
|
135
|
-
<h4 class="color-gray-400">Contact us at 1-888-FOREVER</h4>
|
|
136
|
-
<p class="color-gray-400">
|
|
137
|
-
© Copyright 2015, Forever, Inc.
|
|
138
|
-
</p>
|
|
139
|
-
</div>
|
|
140
|
-
</div>
|
|
141
|
-
</div>
|
|
142
|
-
</div>
|
|
143
|
-
</footer>
|