frontend-generators 0.0.1 → 0.0.2

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.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +47 -3
  3. data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.eot +0 -0
  4. data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.svg +0 -0
  5. data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.ttf +0 -0
  6. data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.woff +0 -0
  7. data/assets/bootstrap/{fonts → public/fonts}/glyphicons-halflings-regular.woff2 +0 -0
  8. data/assets/bootstrap/{bootstrap.js → vendor/assets/javascripts/bootstrap.js} +0 -0
  9. data/assets/bootstrap/{bootstrap.css → vendor/assets/stylesheets/bootstrap.css} +0 -0
  10. data/assets/creative/app/assets/images/creative/header.jpg +0 -0
  11. data/assets/creative/app/assets/images/creative/portfolio/1.jpg +0 -0
  12. data/assets/creative/app/assets/images/creative/portfolio/2.jpg +0 -0
  13. data/assets/creative/app/assets/images/creative/portfolio/3.jpg +0 -0
  14. data/assets/creative/app/assets/images/creative/portfolio/4.jpg +0 -0
  15. data/assets/creative/app/assets/images/creative/portfolio/5.jpg +0 -0
  16. data/assets/creative/app/assets/images/creative/portfolio/6.jpg +0 -0
  17. data/assets/creative/app/assets/javascripts/creative/cbpAnimatedHeader.js +44 -0
  18. data/assets/creative/app/assets/javascripts/creative/classie.js +84 -0
  19. data/assets/creative/app/assets/javascripts/creative/creative.js +53 -0
  20. data/assets/creative/app/assets/javascripts/creative/creative_mainfest.js +11 -0
  21. data/assets/creative/app/assets/javascripts/creative/jquery.easing.min.js +44 -0
  22. data/assets/creative/app/assets/javascripts/creative/jquery.fittext.js +43 -0
  23. data/assets/creative/app/assets/javascripts/creative/manifest.js +11 -0
  24. data/assets/creative/app/assets/javascripts/creative/wow.min.js +2 -0
  25. data/assets/creative/app/assets/stylesheets/creative/animate.min.css +6 -0
  26. data/assets/creative/app/assets/stylesheets/creative/creative.css.scss +476 -0
  27. data/assets/creative/app/assets/stylesheets/creative/manifest.css +8 -0
  28. data/assets/creative/app/controllers/creatives_controller.rb +6 -0
  29. data/assets/creative/app/views/creatives/_bg_primary.html.erb +13 -0
  30. data/assets/creative/app/views/creatives/_call_to_action.html.erb +9 -0
  31. data/assets/creative/app/views/creatives/_contact.html.erb +20 -0
  32. data/assets/creative/app/views/creatives/_header.html.erb +11 -0
  33. data/assets/creative/app/views/creatives/_navbar.html.erb +35 -0
  34. data/assets/creative/app/views/creatives/_portfolio.html.erb +97 -0
  35. data/assets/creative/app/views/creatives/_services.html.erb +43 -0
  36. data/assets/creative/app/views/creatives/index.html.erb +8 -0
  37. data/assets/creative/app/views/layouts/creative.html.erb +18 -0
  38. data/assets/font_awesome/{fonts → public/fonts}/FontAwesome.otf +0 -0
  39. data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.eot +0 -0
  40. data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.svg +0 -0
  41. data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.ttf +0 -0
  42. data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.woff +0 -0
  43. data/assets/font_awesome/{fonts → public/fonts}/fontawesome-webfont.woff2 +0 -0
  44. data/assets/font_awesome/{font_awesome.css → vendor/assets/stylesheets/font_awesome.css} +0 -0
  45. data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/bg.jpg +0 -0
  46. data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/callout.jpg +0 -0
  47. data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-1.jpg +0 -0
  48. data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-2.jpg +0 -0
  49. data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-3.jpg +0 -0
  50. data/assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-4.jpg +0 -0
  51. data/assets/stylish_portfolio/app/assets/javascripts/manifest.js +6 -0
  52. data/assets/stylish_portfolio/app/assets/javascripts/stylish_portfolio.js +29 -0
  53. data/assets/stylish_portfolio/app/assets/stylesheets/manifest.css +6 -0
  54. data/assets/stylish_portfolio/app/assets/stylesheets/stylish_portfolio.css.scss +239 -0
  55. data/assets/stylish_portfolio/app/controllers/stylish_portfolios_controller.rb +6 -0
  56. data/assets/stylish_portfolio/app/views/layouts/stylish_portfolio.html.erb +15 -0
  57. data/assets/stylish_portfolio/app/views/stylish_portfolios/_about.html.erb +10 -0
  58. data/assets/stylish_portfolio/app/views/stylish_portfolios/_call_to_action.html.erb +11 -0
  59. data/assets/stylish_portfolio/app/views/stylish_portfolios/_callout.html.erb +5 -0
  60. data/assets/stylish_portfolio/app/views/stylish_portfolios/_footer.html.erb +30 -0
  61. data/assets/stylish_portfolio/app/views/stylish_portfolios/_header.html.erb +8 -0
  62. data/assets/stylish_portfolio/app/views/stylish_portfolios/_map.html.erb +8 -0
  63. data/assets/stylish_portfolio/app/views/stylish_portfolios/_navigation.html.erb +24 -0
  64. data/assets/stylish_portfolio/app/views/stylish_portfolios/_portfolio.html.erb +45 -0
  65. data/assets/stylish_portfolio/app/views/stylish_portfolios/_services.html.erb +69 -0
  66. data/assets/stylish_portfolio/app/views/stylish_portfolios/index.html.erb +9 -0
  67. data/frontend-generators.gemspec +2 -0
  68. data/lib/frontend_generators/assets_copier.rb +56 -0
  69. data/lib/frontend_generators/version.rb +1 -1
  70. data/lib/frontend_generators.rb +3 -2
  71. data/lib/tasks/add_assets.rake +16 -2
  72. metadata +81 -18
  73. data/lib/frontend_generators/bootstrap.rb +0 -38
  74. data/lib/frontend_generators/font_awesome.rb +0 -30
@@ -0,0 +1,43 @@
1
+ <section id="services">
2
+ <div class="container">
3
+ <div class="row">
4
+ <div class="col-lg-12 text-center">
5
+ <h2 class="section-heading">At Your Service</h2>
6
+ <hr class="primary">
7
+ </div>
8
+ </div>
9
+ </div>
10
+ <div class="container">
11
+ <div class="row">
12
+ <div class="col-lg-3 col-md-6 text-center">
13
+ <div class="service-box">
14
+ <i class="fa fa-4x fa-diamond wow bounceIn text-primary"></i>
15
+ <h3>Sturdy Templates</h3>
16
+ <p class="text-muted">Our templates are updated regularly so they don't break.</p>
17
+ </div>
18
+ </div>
19
+ <div class="col-lg-3 col-md-6 text-center">
20
+ <div class="service-box">
21
+ <i class="fa fa-4x fa-paper-plane wow bounceIn text-primary" data-wow-delay=".1s"></i>
22
+ <h3>Ready to Ship</h3>
23
+ <p class="text-muted">You can use this theme as is, or you can make changes!</p>
24
+ </div>
25
+ </div>
26
+ <div class="col-lg-3 col-md-6 text-center">
27
+ <div class="service-box">
28
+ <i class="fa fa-4x fa-newspaper-o wow bounceIn text-primary" data-wow-delay=".2s"></i>
29
+ <h3>Up to Date</h3>
30
+ <p class="text-muted">We update dependencies to keep things fresh.</p>
31
+ </div>
32
+ </div>
33
+ <div class="col-lg-3 col-md-6 text-center">
34
+ <div class="service-box">
35
+ <i class="fa fa-4x fa-heart wow bounceIn text-primary" data-wow-delay=".3s"></i>
36
+ <h3>Made with Love</h3>
37
+ <p class="text-muted">You have to make your websites with love these days!</p>
38
+ </div>
39
+ </div>
40
+ </div>
41
+ </div>
42
+ </section>
43
+
@@ -0,0 +1,8 @@
1
+ <%= render 'navbar' %>
2
+ <%= render 'header' %>
3
+ <%= render 'bg_primary' %>
4
+ <%= render 'services' %>
5
+ <%= render 'portfolio' %>
6
+ <%= render 'call_to_action' %>
7
+ <%= render 'contact' %>
8
+
@@ -0,0 +1,18 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Start Bootstrap Creative</title>
5
+ <%= stylesheet_link_tag 'creative/manifest.css', media: 'all' %>
6
+ <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
7
+ <link href='http://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
8
+ <%= javascript_include_tag 'creative/manifest.js' %>
9
+ <%= csrf_meta_tags %>
10
+ </head>
11
+
12
+ <body>
13
+
14
+ <%= yield %>
15
+
16
+ </body>
17
+ </html>
18
+
@@ -0,0 +1,6 @@
1
+ //= require jquery
2
+ //= require jquery_ujs
3
+ //= require turbolinks
4
+ //= require bootstrap
5
+ //= require stylish_portfolio/stylish_portfolio
6
+
@@ -0,0 +1,29 @@
1
+ $(document).ready(function(){
2
+ $("#menu-close").click(function(e) {
3
+ e.preventDefault();
4
+ $("#sidebar-wrapper").toggleClass("active");
5
+ });
6
+
7
+ // Opens the sidebar menu
8
+ $("#menu-toggle").click(function(e) {
9
+ e.preventDefault();
10
+ $("#sidebar-wrapper").toggleClass("active");
11
+ });
12
+
13
+ // Scrolls to the selected menu item on the page
14
+ $(function() {
15
+ $('a[href*=#]:not([href=#])').click(function() {
16
+ if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
17
+
18
+ var target = $(this.hash);
19
+ target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
20
+ if (target.length) {
21
+ $('html,body').animate({
22
+ scrollTop: target.offset().top
23
+ }, 1000);
24
+ return false;
25
+ }
26
+ }
27
+ });
28
+ });
29
+ })
@@ -0,0 +1,6 @@
1
+ /*
2
+ *= require bootstrap
3
+ *= require font_awesome
4
+ *= require stylish_portfolio/stylish_portfolio
5
+ *= require_self
6
+ */
@@ -0,0 +1,239 @@
1
+ /*!
2
+ * Start Bootstrap - Stylish Portfolio Bootstrap Theme (http://startbootstrap.com)
3
+ * Code licensed under the Apache License v2.0.
4
+ * For details, see http://www.apache.org/licenses/LICENSE-2.0.
5
+ */
6
+
7
+ /* Global Styles */
8
+
9
+ html,
10
+ body {
11
+ width: 100%;
12
+ height: 100%;
13
+ }
14
+
15
+ body {
16
+ font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
17
+ }
18
+
19
+ .text-vertical-center {
20
+ display: table-cell;
21
+ text-align: center;
22
+ vertical-align: middle;
23
+ }
24
+
25
+ .text-vertical-center h1 {
26
+ margin: 0;
27
+ padding: 0;
28
+ font-size: 4.5em;
29
+ font-weight: 700;
30
+ }
31
+
32
+ /* Custom Button Styles */
33
+
34
+ .btn-dark {
35
+ border-radius: 0;
36
+ color: #fff;
37
+ background-color: rgba(0,0,0,0.4);
38
+ }
39
+
40
+ .btn-dark:hover,
41
+ .btn-dark:focus,
42
+ .btn-dark:active {
43
+ color: #fff;
44
+ background-color: rgba(0,0,0,0.7);
45
+ }
46
+
47
+ .btn-light {
48
+ border-radius: 0;
49
+ color: #333;
50
+ background-color: rgb(255,255,255);
51
+ }
52
+
53
+ .btn-light:hover,
54
+ .btn-light:focus,
55
+ .btn-light:active {
56
+ color: #333;
57
+ background-color: rgba(255,255,255,0.8);
58
+ }
59
+
60
+ /* Custom Horizontal Rule */
61
+
62
+ hr.small {
63
+ max-width: 100px;
64
+ }
65
+
66
+ /* Side Menu */
67
+
68
+ #sidebar-wrapper {
69
+ z-index: 1000;
70
+ position: fixed;
71
+ right: 0;
72
+ width: 250px;
73
+ height: 100%;
74
+ margin-right: -250px;
75
+ overflow-y: auto;
76
+ background: #222;
77
+ -webkit-transition: all 0.4s ease 0s;
78
+ -moz-transition: all 0.4s ease 0s;
79
+ -ms-transition: all 0.4s ease 0s;
80
+ -o-transition: all 0.4s ease 0s;
81
+ transition: all 0.4s ease 0s;
82
+ }
83
+
84
+ .sidebar-nav {
85
+ position: absolute;
86
+ top: 0;
87
+ width: 250px;
88
+ margin: 0;
89
+ padding: 0;
90
+ list-style: none;
91
+ }
92
+
93
+ .sidebar-nav li {
94
+ text-indent: 20px;
95
+ line-height: 40px;
96
+ }
97
+
98
+ .sidebar-nav li a {
99
+ display: block;
100
+ text-decoration: none;
101
+ color: #999;
102
+ }
103
+
104
+ .sidebar-nav li a:hover {
105
+ text-decoration: none;
106
+ color: #fff;
107
+ background: rgba(255,255,255,0.2);
108
+ }
109
+
110
+ .sidebar-nav li a:active,
111
+ .sidebar-nav li a:focus {
112
+ text-decoration: none;
113
+ }
114
+
115
+ .sidebar-nav > .sidebar-brand {
116
+ height: 55px;
117
+ font-size: 18px;
118
+ line-height: 55px;
119
+ }
120
+
121
+ .sidebar-nav > .sidebar-brand a {
122
+ color: #999;
123
+ }
124
+
125
+ .sidebar-nav > .sidebar-brand a:hover {
126
+ color: #fff;
127
+ background: none;
128
+ }
129
+
130
+ #menu-toggle {
131
+ z-index: 1;
132
+ position: fixed;
133
+ top: 0;
134
+ right: 0;
135
+ }
136
+
137
+ #sidebar-wrapper.active {
138
+ right: 250px;
139
+ width: 250px;
140
+ -webkit-transition: all 0.4s ease 0s;
141
+ -moz-transition: all 0.4s ease 0s;
142
+ -ms-transition: all 0.4s ease 0s;
143
+ -o-transition: all 0.4s ease 0s;
144
+ transition: all 0.4s ease 0s;
145
+ }
146
+
147
+ .toggle {
148
+ margin: 5px 5px 0 0;
149
+ }
150
+
151
+ /* Header */
152
+
153
+ .header {
154
+ display: table;
155
+ position: relative;
156
+ width: 100%;
157
+ height: 100%;
158
+ background: asset-data-url("stylish_portfolio/bg.jpg") no-repeat center center scroll;
159
+ -webkit-background-size: cover;
160
+ -moz-background-size: cover;
161
+ background-size: cover;
162
+ -o-background-size: cover;
163
+ }
164
+
165
+ /* About */
166
+
167
+ .about {
168
+ padding: 50px 0;
169
+ }
170
+
171
+ /* Services */
172
+
173
+ .services {
174
+ padding: 50px 0;
175
+ }
176
+
177
+ .service-item {
178
+ margin-bottom: 30px;
179
+ }
180
+
181
+ /* Callout */
182
+
183
+ .callout {
184
+ display: table;
185
+ width: 100%;
186
+ height: 400px;
187
+ color: #fff;
188
+ background: asset-data-url("stylish_portfolio/callout.jpg") no-repeat center center scroll;
189
+ -webkit-background-size: cover;
190
+ -moz-background-size: cover;
191
+ background-size: cover;
192
+ -o-background-size: cover;
193
+ }
194
+
195
+ /* Portfolio */
196
+
197
+ .portfolio {
198
+ padding: 50px 0;
199
+ }
200
+
201
+ .portfolio-item {
202
+ margin-bottom: 30px;
203
+ }
204
+
205
+ .img-portfolio {
206
+ margin: 0 auto;
207
+ }
208
+
209
+ .img-portfolio:hover {
210
+ opacity: 0.8;
211
+ }
212
+
213
+ /* Call to Action */
214
+
215
+ .call-to-action {
216
+ padding: 50px 0;
217
+ }
218
+
219
+ .call-to-action .btn {
220
+ margin: 10px;
221
+ }
222
+
223
+ /* Map */
224
+
225
+ .map {
226
+ height: 500px;
227
+ }
228
+
229
+ @media(max-width:768px) {
230
+ .map {
231
+ height: 75%;
232
+ }
233
+ }
234
+
235
+ /* Footer */
236
+
237
+ footer {
238
+ padding: 100px 0;
239
+ }
@@ -0,0 +1,6 @@
1
+ class StylishPortfoliosController < ApplicationController
2
+ layout "stylish_portfolio"
3
+
4
+ def index
5
+ end
6
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>RailsStartbootstrapStylishPortfolio</title>
5
+ <%= stylesheet_link_tag 'stylish_portfolio/manifest.css', media: 'all' %>
6
+ <link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
7
+ <%= javascript_include_tag 'stylish_portfolio/manifest.js' %>
8
+ <%= csrf_meta_tags %>
9
+ </head>
10
+ <body>
11
+
12
+ <%= yield %>
13
+
14
+ </body>
15
+ </html>
@@ -0,0 +1,10 @@
1
+ <section id="about" class="about">
2
+ <div class="container">
3
+ <div class="row">
4
+ <div class="col-lg-12 text-center">
5
+ <h2>Stylish Portfolio is the perfect theme for your next project!</h2>
6
+ <p class="lead">This theme features some wonderful photography courtesy of <a target="_blank" href="http://join.deathtothestockphoto.com/">Death to the Stock Photo</a>.</p>
7
+ </div>
8
+ </div>
9
+ </div>
10
+ </section>
@@ -0,0 +1,11 @@
1
+ <aside class="call-to-action bg-primary">
2
+ <div class="container">
3
+ <div class="row">
4
+ <div class="col-lg-12 text-center">
5
+ <h3>The buttons below are impossible to resist.</h3>
6
+ <a href="#" class="btn btn-lg btn-light">Click Me!</a>
7
+ <a href="#" class="btn btn-lg btn-dark">Look at Me!</a>
8
+ </div>
9
+ </div>
10
+ </div>
11
+ </aside>
@@ -0,0 +1,5 @@
1
+ <aside class="callout">
2
+ <div class="text-vertical-center">
3
+ <h1>Vertically Centered Text</h1>
4
+ </div>
5
+ </aside>
@@ -0,0 +1,30 @@
1
+ <footer>
2
+ <div class="container">
3
+ <div class="row">
4
+ <div class="col-lg-10 col-lg-offset-1 text-center">
5
+ <h4><strong>Start Bootstrap</strong>
6
+ </h4>
7
+ <p>3481 Melrose Place<br>Beverly Hills, CA 90210</p>
8
+ <ul class="list-unstyled">
9
+ <li><i class="fa fa-phone fa-fw"></i> (123) 456-7890</li>
10
+ <li><i class="fa fa-envelope-o fa-fw"></i> <a href="mailto:name@example.com">name@example.com</a>
11
+ </li>
12
+ </ul>
13
+ <br>
14
+ <ul class="list-inline">
15
+ <li>
16
+ <a href="#"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
17
+ </li>
18
+ <li>
19
+ <a href="#"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
20
+ </li>
21
+ <li>
22
+ <a href="#"><i class="fa fa-dribbble fa-fw fa-3x"></i></a>
23
+ </li>
24
+ </ul>
25
+ <hr class="small">
26
+ <p class="text-muted">Copyright &copy; Your Website 2014</p>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </footer>
@@ -0,0 +1,8 @@
1
+ <header id="top" class="header">
2
+ <div class="text-vertical-center">
3
+ <h1>Start Bootstrap</h1>
4
+ <h3>Free Bootstrap Themes &amp; Templates</h3>
5
+ <br>
6
+ <a href="#about" class="btn btn-dark btn-lg">Find Out More</a>
7
+ </div>
8
+ </header>
@@ -0,0 +1,8 @@
1
+ <section id="contact" class="map">
2
+ <iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Twitter,+Inc.,+Market+Street,+San+Francisco,+CA&amp;aq=0&amp;oq=twitter&amp;sll=28.659344,-81.187888&amp;sspn=0.128789,0.264187&amp;ie=UTF8&amp;hq=Twitter,+Inc.,+Market+Street,+San+Francisco,+CA&amp;t=m&amp;z=15&amp;iwloc=A&amp;output=embed"></iframe>
3
+ <br />
4
+ <small>
5
+ <a href="https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Twitter,+Inc.,+Market+Street,+San+Francisco,+CA&amp;aq=0&amp;oq=twitter&amp;sll=28.659344,-81.187888&amp;sspn=0.128789,0.264187&amp;ie=UTF8&amp;hq=Twitter,+Inc.,+Market+Street,+San+Francisco,+CA&amp;t=m&amp;z=15&amp;iwloc=A"></a>
6
+ </small>
7
+ </iframe>
8
+ </section>
@@ -0,0 +1,24 @@
1
+ <a id="menu-toggle" href="#" class="btn btn-dark btn-lg toggle"><i class="fa fa-bars"></i></a>
2
+ <nav id="sidebar-wrapper">
3
+ <ul class="sidebar-nav">
4
+ <a id="menu-close" href="#" class="btn btn-light btn-lg pull-right toggle"><i class="fa fa-times"></i></a>
5
+ <li class="sidebar-brand">
6
+ <a href="#top" onclick = $("#menu-close").click(); >Start Bootstrap</a>
7
+ </li>
8
+ <li>
9
+ <a href="#top" onclick = $("#menu-close").click(); >Home</a>
10
+ </li>
11
+ <li>
12
+ <a href="#about" onclick = $("#menu-close").click(); >About</a>
13
+ </li>
14
+ <li>
15
+ <a href="#services" onclick = $("#menu-close").click(); >Services</a>
16
+ </li>
17
+ <li>
18
+ <a href="#portfolio" onclick = $("#menu-close").click(); >Portfolio</a>
19
+ </li>
20
+ <li>
21
+ <a href="#contact" onclick = $("#menu-close").click(); >Contact</a>
22
+ </li>
23
+ </ul>
24
+ </nav>
@@ -0,0 +1,45 @@
1
+ <section id="portfolio" class="portfolio">
2
+ <div class="container">
3
+ <div class="row">
4
+ <div class="col-lg-10 col-lg-offset-1 text-center">
5
+ <h2>Our Work</h2>
6
+ <hr class="small">
7
+ <div class="row">
8
+ <div class="col-md-6">
9
+ <div class="portfolio-item">
10
+ <a href="#">
11
+ <%= image_tag "stylish_portfolio/portfolio-1.jpg", class: "img-portfolio img-responsive" %>
12
+ </a>
13
+ </div>
14
+ </div>
15
+ <div class="col-md-6">
16
+ <div class="portfolio-item">
17
+ <a href="#">
18
+ <%= image_tag "stylish_portfolio/portfolio-2.jpg", class: "img-portfolio img-responsive" %>
19
+ </a>
20
+ </div>
21
+ </div>
22
+ <div class="col-md-6">
23
+ <div class="portfolio-item">
24
+ <a href="#">
25
+ <%= image_tag "stylish_portfolio/portfolio-3.jpg", class: "img-portfolio img-responsive" %>
26
+ </a>
27
+ </div>
28
+ </div>
29
+ <div class="col-md-6">
30
+ <div class="portfolio-item">
31
+ <a href="#">
32
+ <%= image_tag "stylish_portfolio/portfolio-4.jpg", class: "img-portfolio img-responsive" %>
33
+ </a>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ <!-- /.row (nested) -->
38
+ <a href="#" class="btn btn-dark">View More Items</a>
39
+ </div>
40
+ <!-- /.col-lg-10 -->
41
+ </div>
42
+ <!-- /.row -->
43
+ </div>
44
+ <!-- /.container -->
45
+ </section>
@@ -0,0 +1,69 @@
1
+ <!-- The circle icons use Font Awesome's stacked icon classes. For more information, visit http://fontawesome.io/examples/ -->
2
+ <section id="services" class="services bg-primary">
3
+ <div class="container">
4
+ <div class="row text-center">
5
+ <div class="col-lg-10 col-lg-offset-1">
6
+ <h2>Our Services</h2>
7
+ <hr class="small">
8
+ <div class="row">
9
+ <div class="col-md-3 col-sm-6">
10
+ <div class="service-item">
11
+ <span class="fa-stack fa-4x">
12
+ <i class="fa fa-circle fa-stack-2x"></i>
13
+ <i class="fa fa-cloud fa-stack-1x text-primary"></i>
14
+ </span>
15
+ <h4>
16
+ <strong>Service Name</strong>
17
+ </h4>
18
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
19
+ <a href="#" class="btn btn-light">Learn More</a>
20
+ </div>
21
+ </div>
22
+ <div class="col-md-3 col-sm-6">
23
+ <div class="service-item">
24
+ <span class="fa-stack fa-4x">
25
+ <i class="fa fa-circle fa-stack-2x"></i>
26
+ <i class="fa fa-compass fa-stack-1x text-primary"></i>
27
+ </span>
28
+ <h4>
29
+ <strong>Service Name</strong>
30
+ </h4>
31
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
32
+ <a href="#" class="btn btn-light">Learn More</a>
33
+ </div>
34
+ </div>
35
+ <div class="col-md-3 col-sm-6">
36
+ <div class="service-item">
37
+ <span class="fa-stack fa-4x">
38
+ <i class="fa fa-circle fa-stack-2x"></i>
39
+ <i class="fa fa-flask fa-stack-1x text-primary"></i>
40
+ </span>
41
+ <h4>
42
+ <strong>Service Name</strong>
43
+ </h4>
44
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
45
+ <a href="#" class="btn btn-light">Learn More</a>
46
+ </div>
47
+ </div>
48
+ <div class="col-md-3 col-sm-6">
49
+ <div class="service-item">
50
+ <span class="fa-stack fa-4x">
51
+ <i class="fa fa-circle fa-stack-2x"></i>
52
+ <i class="fa fa-shield fa-stack-1x text-primary"></i>
53
+ </span>
54
+ <h4>
55
+ <strong>Service Name</strong>
56
+ </h4>
57
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
58
+ <a href="#" class="btn btn-light">Learn More</a>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ <!-- /.row (nested) -->
63
+ </div>
64
+ <!-- /.col-lg-10 -->
65
+ </div>
66
+ <!-- /.row -->
67
+ </div>
68
+ <!-- /.container -->
69
+ </section>
@@ -0,0 +1,9 @@
1
+ <%= render "navigation" %>
2
+ <%= render "header" %>
3
+ <%= render "about" %>
4
+ <%= render "services" %>
5
+ <%= render "callout" %>
6
+ <%= render "portfolio" %>
7
+ <%= render "call_to_action" %>
8
+ <%= render "map" %>
9
+ <%= render "footer" %>
@@ -23,4 +23,6 @@ Gem::Specification.new do |spec|
23
23
  spec.add_development_dependency "rake", "~> 10.0"
24
24
  spec.add_development_dependency "rspec"
25
25
  spec.add_development_dependency "pry"
26
+
27
+ spec.add_dependency "rainbow", "2.0.0"
26
28
  end