rails_apps_pages 0.6.0 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.textile +26 -0
  3. data/README.textile +4 -2
  4. data/lib/generators/theme/bare/bare_generator.rb +1 -1
  5. data/lib/generators/theme/bare/templates/{index.html.erb → index.html} +0 -0
  6. data/lib/generators/theme/blog_home/blog_home_generator.rb +18 -0
  7. data/lib/generators/theme/blog_home/templates/blog-home.css +9 -0
  8. data/lib/generators/theme/blog_home/templates/blogpost.html +170 -0
  9. data/lib/generators/theme/blog_home/templates/index.html +150 -0
  10. data/lib/generators/theme/business_casual/business_casual_generator.rb +24 -0
  11. data/lib/generators/theme/business_casual/templates/_navigation.html.erb +24 -0
  12. data/lib/generators/theme/business_casual/templates/_navigation_links.html.erb +13 -0
  13. data/lib/generators/theme/business_casual/templates/about.html +61 -0
  14. data/lib/generators/theme/business_casual/templates/application.html.erb +19 -0
  15. data/lib/generators/theme/business_casual/templates/blog.html +59 -0
  16. data/lib/generators/theme/business_casual/templates/business-casual.css +192 -0
  17. data/lib/generators/theme/business_casual/templates/contact.html +76 -0
  18. data/lib/generators/theme/business_casual/templates/footer.html +10 -0
  19. data/lib/generators/theme/business_casual/templates/index.html +95 -0
  20. data/lib/generators/theme/business_frontpage/business_frontpage_generator.rb +17 -0
  21. data/lib/generators/theme/business_frontpage/templates/business-frontpage.css +31 -0
  22. data/lib/generators/theme/business_frontpage/templates/index.html +78 -0
  23. data/lib/generators/theme/clean_blog/clean_blog_generator.rb +24 -0
  24. data/lib/generators/theme/clean_blog/templates/_navigation.html.erb +24 -0
  25. data/lib/generators/theme/clean_blog/templates/_navigation_links.html.erb +13 -0
  26. data/lib/generators/theme/clean_blog/templates/about.html +27 -0
  27. data/lib/generators/theme/clean_blog/templates/application.html.erb +23 -0
  28. data/lib/generators/theme/clean_blog/templates/clean-blog.css +395 -0
  29. data/lib/generators/theme/clean_blog/templates/contact.html +64 -0
  30. data/lib/generators/theme/clean_blog/templates/footer.html +38 -0
  31. data/lib/generators/theme/clean_blog/templates/index.html +74 -0
  32. data/lib/generators/theme/clean_blog/templates/post.html +59 -0
  33. data/lib/generators/theme/four_col_portfolio/four_col_portfolio_generator.rb +17 -0
  34. data/lib/generators/theme/four_col_portfolio/templates/4-col-portfolio.css +13 -0
  35. data/lib/generators/theme/four_col_portfolio/templates/index.html +134 -0
  36. data/lib/generators/theme/full_width_pics/full_width_pics_generator.rb +18 -0
  37. data/lib/generators/theme/full_width_pics/templates/application.html.erb +18 -0
  38. data/lib/generators/theme/full_width_pics/templates/full-width-pics.css +60 -0
  39. data/lib/generators/theme/full_width_pics/templates/index.html +50 -0
  40. data/lib/generators/theme/heroic_features/heroic_features_generator.rb +17 -0
  41. data/lib/generators/theme/heroic_features/templates/heroic-features.css +17 -0
  42. data/lib/generators/theme/heroic_features/templates/index.html +92 -0
  43. data/lib/generators/theme/landing_page/landing_page_generator.rb +18 -0
  44. data/lib/generators/theme/landing_page/templates/application.html.erb +21 -0
  45. data/lib/generators/theme/landing_page/templates/index.html +189 -0
  46. data/lib/generators/theme/landing_page/templates/landing-page.css +170 -0
  47. data/lib/generators/theme/modern_business/modern_business_generator.rb +103 -0
  48. data/lib/generators/theme/modern_business/templates/404.html +98 -0
  49. data/lib/generators/theme/modern_business/templates/about.html +182 -0
  50. data/lib/generators/theme/modern_business/templates/application.html.erb +21 -0
  51. data/lib/generators/theme/modern_business/templates/blog-home-1.html +156 -0
  52. data/lib/generators/theme/modern_business/templates/blog-home-2.html +111 -0
  53. data/lib/generators/theme/modern_business/templates/blog-post.html +166 -0
  54. data/lib/generators/theme/modern_business/templates/contact.html +97 -0
  55. data/lib/generators/theme/modern_business/templates/faq.html +148 -0
  56. data/lib/generators/theme/modern_business/templates/footer.html +12 -0
  57. data/lib/generators/theme/modern_business/templates/full-width.html +28 -0
  58. data/lib/generators/theme/modern_business/templates/index.html +173 -0
  59. data/lib/generators/theme/modern_business/templates/modern-business.css +93 -0
  60. data/lib/generators/theme/modern_business/templates/portfolio-1-col.html +141 -0
  61. data/lib/generators/theme/modern_business/templates/portfolio-2-col.html +121 -0
  62. data/lib/generators/theme/modern_business/templates/portfolio-3-col.html +147 -0
  63. data/lib/generators/theme/modern_business/templates/portfolio-4-col.html +127 -0
  64. data/lib/generators/theme/modern_business/templates/portfolio-item.html +104 -0
  65. data/lib/generators/theme/modern_business/templates/pricing.html +85 -0
  66. data/lib/generators/theme/modern_business/templates/services.html +263 -0
  67. data/lib/generators/theme/modern_business/templates/sidebar.html +52 -0
  68. data/lib/generators/theme/one_col_portfolio/one_col_portfolio_generator.rb +17 -0
  69. data/lib/generators/theme/one_col_portfolio/templates/1-col-portfolio.css +9 -0
  70. data/lib/generators/theme/one_col_portfolio/templates/index.html +149 -0
  71. data/lib/generators/theme/one_page_wonder/one_page_wonder_generator.rb +18 -0
  72. data/lib/generators/theme/one_page_wonder/templates/application.html.erb +18 -0
  73. data/lib/generators/theme/one_page_wonder/templates/index.html +91 -0
  74. data/lib/generators/theme/one_page_wonder/templates/one-page-wonder.css +174 -0
  75. data/lib/generators/theme/portfolio_item/portfolio_item_generator.rb +17 -0
  76. data/lib/generators/theme/portfolio_item/templates/index.html +83 -0
  77. data/lib/generators/theme/portfolio_item/templates/portfolio-item.css +13 -0
  78. data/lib/generators/theme/round_about/round_about_generator.rb +17 -0
  79. data/lib/generators/theme/round_about/templates/index.html +77 -0
  80. data/lib/generators/theme/round_about/templates/round-about.css +13 -0
  81. data/lib/generators/theme/shop_homepage/shop_homepage_generator.rb +17 -0
  82. data/lib/generators/theme/shop_homepage/templates/index.html +191 -0
  83. data/lib/generators/theme/shop_homepage/templates/shop-homepage.css +50 -0
  84. data/lib/generators/theme/shop_item/shop_item_generator.rb +17 -0
  85. data/lib/generators/theme/shop_item/templates/index.html +117 -0
  86. data/lib/generators/theme/shop_item/templates/shop-item.css +28 -0
  87. data/lib/generators/theme/simple_sidebar/simple_sidebar_generator.rb +17 -0
  88. data/lib/generators/theme/simple_sidebar/templates/index.html +60 -0
  89. data/lib/generators/theme/simple_sidebar/templates/simple-sidebar.css +125 -0
  90. data/lib/generators/theme/small_business/small_business_generator.rb +17 -0
  91. data/lib/generators/theme/small_business/templates/index.html +66 -0
  92. data/lib/generators/theme/small_business/templates/small-business.css +9 -0
  93. data/lib/generators/theme/stylish_portfolio/stylish_portfolio_generator.rb +18 -0
  94. data/lib/generators/theme/stylish_portfolio/templates/application.html.erb +21 -0
  95. data/lib/generators/theme/stylish_portfolio/templates/index.html +261 -0
  96. data/lib/generators/theme/stylish_portfolio/templates/stylish-portfolio.css +239 -0
  97. data/lib/generators/theme/the_big_picture/templates/index.html +11 -0
  98. data/lib/generators/theme/the_big_picture/templates/the-big-picture.css +19 -0
  99. data/lib/generators/theme/the_big_picture/the_big_picture_generator.rb +19 -0
  100. data/lib/generators/theme/three_col_portfolio/templates/3-col-portfolio.css +13 -0
  101. data/lib/generators/theme/three_col_portfolio/templates/index.html +155 -0
  102. data/lib/generators/theme/three_col_portfolio/three_col_portfolio_generator.rb +17 -0
  103. data/lib/generators/theme/thumbnail_gallery/templates/index.html +84 -0
  104. data/lib/generators/theme/thumbnail_gallery/templates/thumbnail-gallery.css +13 -0
  105. data/lib/generators/theme/thumbnail_gallery/thumbnail_gallery_generator.rb +17 -0
  106. data/lib/generators/theme/two_col_portfolio/templates/2-col-portfolio.css +13 -0
  107. data/lib/generators/theme/two_col_portfolio/templates/index.html +129 -0
  108. data/lib/generators/theme/two_col_portfolio/two_col_portfolio_generator.rb +17 -0
  109. data/lib/rails_apps_pages/version.rb +1 -1
  110. metadata +107 -4
@@ -0,0 +1,52 @@
1
+ <!-- Page Content -->
2
+ <div class="container">
3
+
4
+ <!-- Page Heading/Breadcrumbs -->
5
+ <div class="row">
6
+ <div class="col-lg-12">
7
+ <h1 class="page-header">Sidebar Page
8
+ <small>Subheading</small>
9
+ </h1>
10
+ <ol class="breadcrumb">
11
+ <li><%= link_to 'Home', root_path %>
12
+ </li>
13
+ <li class="active">Sidebar Page</li>
14
+ </ol>
15
+ </div>
16
+ </div>
17
+ <!-- /.row -->
18
+
19
+ <!-- Content Row -->
20
+ <div class="row">
21
+ <!-- Sidebar Column -->
22
+ <div class="col-md-3">
23
+ <div class="list-group">
24
+ <%= link_to 'Home', root_path, class: 'list-group-item' %>
25
+ <%= link_to 'About', page_path('about'), class: 'list-group-item' %>
26
+ <%= link_to 'Services', page_path('services'), class: 'list-group-item' %>
27
+ <%= link_to 'Contact', page_path('contact'), class: 'list-group-item' %>
28
+ <%= link_to '1 Column Portfolio', page_path('portfolio-1-col'), class: 'list-group-item' %>
29
+ <%= link_to '2 Column Portfolio', page_path('portfolio-2-col'), class: 'list-group-item' %>
30
+ <%= link_to '3 Column Portfolio', page_path('portfolio-3-col'), class: 'list-group-item' %>
31
+ <%= link_to '4 Column Portfolio', page_path('portfolio-4-col'), class: 'list-group-item' %>
32
+ <%= link_to 'Single Portfolio Item', page_path('portfolio-item'), class: 'list-group-item' %>
33
+ <%= link_to 'Blog Home 1', page_path('blog-home-1'), class: 'list-group-item' %>
34
+ <%= link_to 'Blog Home 2', page_path('blog-home-2'), class: 'list-group-item' %>
35
+ <%= link_to 'Blog Post', page_path('blog-post'), class: 'list-group-item' %>
36
+ <%= link_to 'Full Width Page', page_path('full-width'), class: 'list-group-item' %>
37
+ <%= link_to 'Sidebar Page', page_path('sidebar'), class: 'list-group-item' %>
38
+ <%= link_to 'FAQ', page_path('faq'), class: 'list-group-item' %>
39
+ <%= link_to '404', page_path('404'), class: 'list-group-item' %>
40
+ <%= link_to 'Pricing Table', page_path('pricing'), class: 'list-group-item' %>
41
+ </div>
42
+ </div>
43
+ <!-- Content Column -->
44
+ <div class="col-md-9">
45
+ <h2>Section Heading</h2>
46
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta, et temporibus, facere perferendis veniam beatae non debitis, numquam blanditiis necessitatibus vel mollitia dolorum laudantium, voluptate dolores iure maxime ducimus fugit.</p>
47
+ </div>
48
+ </div>
49
+ <!-- /.row -->
50
+
51
+ </div>
52
+ <!-- /.container -->
@@ -0,0 +1,17 @@
1
+ require 'rails/generators'
2
+
3
+ module Theme
4
+ module Generators
5
+ class OneColPortfolioGenerator < ::Rails::Generators::Base
6
+ source_root File.expand_path("../templates", __FILE__)
7
+
8
+ desc "A Bootstrap HTML starter template (from startbootstrap.com)"
9
+
10
+ def create_page
11
+ copy_file 'index.html', 'app/views/visitors/index.html.erb'
12
+ copy_file '1-col-portfolio.css', 'app/assets/stylesheets/1-col-portfolio.css'
13
+ end
14
+
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,9 @@
1
+ /*!
2
+ * Start Bootstrap - 1 Col Portfolio HTML Template (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
+ footer {
8
+ margin: 50px 0;
9
+ }
@@ -0,0 +1,149 @@
1
+
2
+ <!-- Page Content -->
3
+ <div class="container">
4
+
5
+ <!-- Page Heading -->
6
+ <div class="row">
7
+ <div class="col-lg-12">
8
+ <h1 class="page-header">Page Heading
9
+ <small>Secondary Text</small>
10
+ </h1>
11
+ </div>
12
+ </div>
13
+ <!-- /.row -->
14
+
15
+ <!-- Project One -->
16
+ <div class="row">
17
+ <div class="col-md-7">
18
+ <a href="#">
19
+ <img class="img-responsive" src="http://placehold.it/700x300" alt="">
20
+ </a>
21
+ </div>
22
+ <div class="col-md-5">
23
+ <h3>Project One</h3>
24
+ <h4>Subheading</h4>
25
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium veniam exercitationem expedita laborum at voluptate. Labore, voluptates totam at aut nemo deserunt rem magni pariatur quos perspiciatis atque eveniet unde.</p>
26
+ <a class="btn btn-primary" href="#">View Project <span class="glyphicon glyphicon-chevron-right"></span></a>
27
+ </div>
28
+ </div>
29
+ <!-- /.row -->
30
+
31
+ <hr>
32
+
33
+ <!-- Project Two -->
34
+ <div class="row">
35
+ <div class="col-md-7">
36
+ <a href="#">
37
+ <img class="img-responsive" src="http://placehold.it/700x300" alt="">
38
+ </a>
39
+ </div>
40
+ <div class="col-md-5">
41
+ <h3>Project Two</h3>
42
+ <h4>Subheading</h4>
43
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ut, odit velit cumque vero doloremque repellendus distinctio maiores rem expedita a nam vitae modi quidem similique ducimus! Velit, esse totam tempore.</p>
44
+ <a class="btn btn-primary" href="#">View Project <span class="glyphicon glyphicon-chevron-right"></span></a>
45
+ </div>
46
+ </div>
47
+ <!-- /.row -->
48
+
49
+ <hr>
50
+
51
+ <!-- Project Three -->
52
+ <div class="row">
53
+ <div class="col-md-7">
54
+ <a href="#">
55
+ <img class="img-responsive" src="http://placehold.it/700x300" alt="">
56
+ </a>
57
+ </div>
58
+ <div class="col-md-5">
59
+ <h3>Project Three</h3>
60
+ <h4>Subheading</h4>
61
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Omnis, temporibus, dolores, at, praesentium ut unde repudiandae voluptatum sit ab debitis suscipit fugiat natus velit excepturi amet commodi deleniti alias possimus!</p>
62
+ <a class="btn btn-primary" href="#">View Project <span class="glyphicon glyphicon-chevron-right"></span></a>
63
+ </div>
64
+ </div>
65
+ <!-- /.row -->
66
+
67
+ <hr>
68
+
69
+ <!-- Project Four -->
70
+ <div class="row">
71
+
72
+ <div class="col-md-7">
73
+ <a href="#">
74
+ <img class="img-responsive" src="http://placehold.it/700x300" alt="">
75
+ </a>
76
+ </div>
77
+ <div class="col-md-5">
78
+ <h3>Project Four</h3>
79
+ <h4>Subheading</h4>
80
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Explicabo, quidem, consectetur, officia rem officiis illum aliquam perspiciatis aspernatur quod modi hic nemo qui soluta aut eius fugit quam in suscipit?</p>
81
+ <a class="btn btn-primary" href="#">View Project <span class="glyphicon glyphicon-chevron-right"></span></a>
82
+ </div>
83
+ </div>
84
+ <!-- /.row -->
85
+
86
+ <hr>
87
+
88
+ <!-- Project Five -->
89
+ <div class="row">
90
+ <div class="col-md-7">
91
+ <a href="#">
92
+ <img class="img-responsive" src="http://placehold.it/700x300" alt="">
93
+ </a>
94
+ </div>
95
+ <div class="col-md-5">
96
+ <h3>Project Five</h3>
97
+ <h4>Subheading</h4>
98
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid, quo, minima, inventore voluptatum saepe quos nostrum provident ex quisquam hic odio repellendus atque porro distinctio quae id laboriosam facilis dolorum.</p>
99
+ <a class="btn btn-primary" href="#">View Project <span class="glyphicon glyphicon-chevron-right"></span></a>
100
+ </div>
101
+ </div>
102
+ <!-- /.row -->
103
+
104
+ <hr>
105
+
106
+ <!-- Pagination -->
107
+ <div class="row text-center">
108
+ <div class="col-lg-12">
109
+ <ul class="pagination">
110
+ <li>
111
+ <a href="#">&laquo;</a>
112
+ </li>
113
+ <li class="active">
114
+ <a href="#">1</a>
115
+ </li>
116
+ <li>
117
+ <a href="#">2</a>
118
+ </li>
119
+ <li>
120
+ <a href="#">3</a>
121
+ </li>
122
+ <li>
123
+ <a href="#">4</a>
124
+ </li>
125
+ <li>
126
+ <a href="#">5</a>
127
+ </li>
128
+ <li>
129
+ <a href="#">&raquo;</a>
130
+ </li>
131
+ </ul>
132
+ </div>
133
+ </div>
134
+ <!-- /.row -->
135
+
136
+ <hr>
137
+
138
+ <!-- Footer -->
139
+ <footer>
140
+ <div class="row">
141
+ <div class="col-lg-12">
142
+ <p>Copyright &copy; Your Website 2014</p>
143
+ </div>
144
+ </div>
145
+ <!-- /.row -->
146
+ </footer>
147
+
148
+ </div>
149
+
@@ -0,0 +1,18 @@
1
+ require 'rails/generators'
2
+
3
+ module Theme
4
+ module Generators
5
+ class OnePageWonderGenerator < ::Rails::Generators::Base
6
+ source_root File.expand_path("../templates", __FILE__)
7
+
8
+ desc "A Bootstrap HTML starter template (from startbootstrap.com)"
9
+
10
+ def create_page
11
+ copy_file 'application.html.erb', 'app/views/layouts/application.html.erb'
12
+ copy_file 'index.html', 'app/views/visitors/index.html.erb'
13
+ copy_file 'one-page-wonder.css', 'app/assets/stylesheets/one-page-wonder.css'
14
+ end
15
+
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <title><%= content_for?(:title) ? yield(:title) : "My Application" %></title>
6
+ <meta name="description" content="<%= content_for?(:description) ? yield(:description) : "My Application" %>">
7
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
8
+ <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
9
+ <%= csrf_meta_tags %>
10
+ </head>
11
+ <body>
12
+ <header>
13
+ <%= render 'layouts/navigation' unless current_page?(root_path) %>
14
+ </header>
15
+ <%= render 'layouts/messages' %>
16
+ <%= yield %>
17
+ </body>
18
+ </html>
@@ -0,0 +1,91 @@
1
+ <!-- Navigation -->
2
+ <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
3
+ <div class="container">
4
+ <!-- Brand and toggle get grouped for better mobile display -->
5
+ <div class="navbar-header">
6
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
7
+ <span class="sr-only">Toggle navigation</span>
8
+ <span class="icon-bar"></span>
9
+ <span class="icon-bar"></span>
10
+ <span class="icon-bar"></span>
11
+ </button>
12
+ <a class="navbar-brand" href="#">Start Bootstrap</a>
13
+ </div>
14
+ <!-- Collect the nav links, forms, and other content for toggling -->
15
+ <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
16
+ <ul class="nav navbar-nav">
17
+ <li>
18
+ <a href="#about">About</a>
19
+ </li>
20
+ <li>
21
+ <a href="#services">Services</a>
22
+ </li>
23
+ <li>
24
+ <a href="#contact">Contact</a>
25
+ </li>
26
+ </ul>
27
+ </div>
28
+ <!-- /.navbar-collapse -->
29
+ </div>
30
+ <!-- /.container -->
31
+ </nav>
32
+
33
+ <!-- Full Width Image Header -->
34
+ <header class="header-image">
35
+ <div class="headline">
36
+ <div class="container">
37
+ <h1>One Page Wonder</h1>
38
+ <h2>Will Knock Your Socks Off</h2>
39
+ </div>
40
+ </div>
41
+ </header>
42
+
43
+ <!-- Page Content -->
44
+ <div class="container">
45
+
46
+ <hr class="featurette-divider">
47
+
48
+ <!-- First Featurette -->
49
+ <div class="featurette" id="about">
50
+ <img class="featurette-image img-circle img-responsive pull-right" src="http://placehold.it/500x500">
51
+ <h2 class="featurette-heading">This First Heading
52
+ <span class="text-muted">Will Catch Your Eye</span>
53
+ </h2>
54
+ <p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p>
55
+ </div>
56
+
57
+ <hr class="featurette-divider">
58
+
59
+ <!-- Second Featurette -->
60
+ <div class="featurette" id="services">
61
+ <img class="featurette-image img-circle img-responsive pull-left" src="http://placehold.it/500x500">
62
+ <h2 class="featurette-heading">The Second Heading
63
+ <span class="text-muted">Is Pretty Cool Too.</span>
64
+ </h2>
65
+ <p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p>
66
+ </div>
67
+
68
+ <hr class="featurette-divider">
69
+
70
+ <!-- Third Featurette -->
71
+ <div class="featurette" id="contact">
72
+ <img class="featurette-image img-circle img-responsive pull-right" src="http://placehold.it/500x500">
73
+ <h2 class="featurette-heading">The Third Heading
74
+ <span class="text-muted">Will Seal the Deal.</span>
75
+ </h2>
76
+ <p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p>
77
+ </div>
78
+
79
+ <hr class="featurette-divider">
80
+
81
+ <!-- Footer -->
82
+ <footer>
83
+ <div class="row">
84
+ <div class="col-lg-12">
85
+ <p>Copyright &copy; Your Website 2014</p>
86
+ </div>
87
+ </div>
88
+ </footer>
89
+
90
+ </div>
91
+ <!-- /.container -->
@@ -0,0 +1,174 @@
1
+ /*!
2
+ * Start Bootstrap - One Page Wonder HTML Template (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
+ .header-image {
8
+ display: block;
9
+ width: 100%;
10
+ text-align: center;
11
+ background: url('http://placehold.it/1900x500') no-repeat center center scroll;
12
+ -webkit-background-size: cover;
13
+ -moz-background-size: cover;
14
+ background-size: cover;
15
+ -o-background-size: cover;
16
+ }
17
+
18
+ .headline {
19
+ padding: 120px 0;
20
+ }
21
+
22
+ .headline h1 {
23
+ font-size: 130px;
24
+ background: #fff;
25
+ background: rgba(255,255,255,0.9);
26
+ }
27
+
28
+ .headline h2 {
29
+ font-size: 77px;
30
+ background: #fff;
31
+ background: rgba(255,255,255,0.9);
32
+ }
33
+
34
+ .featurette-divider {
35
+ margin: 80px 0;
36
+ }
37
+
38
+ .featurette {
39
+ overflow: hidden;
40
+ }
41
+
42
+ .featurette-image.pull-left {
43
+ margin-right: 40px;
44
+ }
45
+
46
+ .featurette-image.pull-right {
47
+ margin-left: 40px;
48
+ }
49
+
50
+ .featurette-heading {
51
+ font-size: 50px;
52
+ }
53
+
54
+ footer {
55
+ margin: 50px 0;
56
+ }
57
+
58
+ @media(max-width:1200px) {
59
+ .headline h1 {
60
+ font-size: 140px;
61
+ }
62
+
63
+ .headline h2 {
64
+ font-size: 63px;
65
+ }
66
+
67
+ .featurette-divider {
68
+ margin: 50px 0;
69
+ }
70
+
71
+ .featurette-image.pull-left {
72
+ margin-right: 20px;
73
+ }
74
+
75
+ .featurette-image.pull-right {
76
+ margin-left: 20px;
77
+ }
78
+
79
+ .featurette-heading {
80
+ font-size: 35px;
81
+ }
82
+ }
83
+
84
+ @media(max-width:991px) {
85
+ .headline h1 {
86
+ font-size: 105px;
87
+ }
88
+
89
+ .headline h2 {
90
+ font-size: 50px;
91
+ }
92
+
93
+ .featurette-divider {
94
+ margin: 40px 0;
95
+ }
96
+
97
+ .featurette-image {
98
+ max-width: 50%;
99
+ }
100
+
101
+ .featurette-image.pull-left {
102
+ margin-right: 10px;
103
+ }
104
+
105
+ .featurette-image.pull-right {
106
+ margin-left: 10px;
107
+ }
108
+
109
+ .featurette-heading {
110
+ font-size: 30px;
111
+ }
112
+ }
113
+
114
+ @media(max-width:768px) {
115
+ .container {
116
+ margin: 0 15px;
117
+ }
118
+
119
+ .featurette-divider {
120
+ margin: 40px 0;
121
+ }
122
+
123
+ .featurette-heading {
124
+ font-size: 25px;
125
+ }
126
+ }
127
+
128
+ @media(max-width:668px) {
129
+ .headline h1 {
130
+ font-size: 70px;
131
+ }
132
+
133
+ .headline h2 {
134
+ font-size: 32px;
135
+ }
136
+
137
+ .featurette-divider {
138
+ margin: 30px 0;
139
+ }
140
+ }
141
+
142
+ @media(max-width:640px) {
143
+ .headline {
144
+ padding: 75px 0 25px 0;
145
+ }
146
+
147
+ .headline h1 {
148
+ font-size: 60px;
149
+ }
150
+
151
+ .headline h2 {
152
+ font-size: 30px;
153
+ }
154
+ }
155
+
156
+ @media(max-width:375px) {
157
+ .featurette-divider {
158
+ margin: 10px 0;
159
+ }
160
+
161
+ .featurette-image {
162
+ max-width: 100%;
163
+ }
164
+
165
+ .featurette-image.pull-left {
166
+ margin-right: 0;
167
+ margin-bottom: 10px;
168
+ }
169
+
170
+ .featurette-image.pull-right {
171
+ margin-bottom: 10px;
172
+ margin-left: 0;
173
+ }
174
+ }