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,60 @@
1
+ /*!
2
+ * Start Bootstrap - Full Width Pics 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
+ .image-bg-fluid-height,
8
+ .image-bg-fixed-height {
9
+ text-align: center;
10
+ -webkit-background-size: cover;
11
+ -moz-background-size: cover;
12
+ background-size: cover;
13
+ -o-background-size: cover;
14
+ }
15
+
16
+ .image-bg-fluid-height {
17
+ background: url('http://lorempixel.com/g/1920/500/') no-repeat center center scroll;
18
+ padding: 100px 0;
19
+ }
20
+
21
+ .image-bg-fixed-height {
22
+ background: url('http://lorempixel.com/g/1920/500/') no-repeat center center scroll;
23
+ height: 450px;
24
+ }
25
+
26
+ .img-center {
27
+ margin: 0 auto;
28
+ }
29
+
30
+ section {
31
+ padding: 75px 0;
32
+ }
33
+
34
+ .section-heading {
35
+ margin: 30px 0;
36
+ font-size: 4em;
37
+ }
38
+
39
+ .section-lead {
40
+ margin: 30px 0;
41
+ }
42
+
43
+ .section-paragraph {
44
+ margin: 30px 0;
45
+ }
46
+
47
+ footer {
48
+ margin: 50px 0;
49
+ }
50
+
51
+ @media(max-width:768px) {
52
+ section {
53
+ padding-top: 25px;
54
+ padding-bottom: 25px;
55
+ }
56
+
57
+ .section-heading {
58
+ font-size: 2em;
59
+ }
60
+ }
@@ -0,0 +1,50 @@
1
+ <!-- Full Width Image Header with Logo -->
2
+ <!-- Image backgrounds are set within the full-width-pics.css file. -->
3
+ <header class="image-bg-fluid-height">
4
+ <img class="img-responsive img-center" src="http://placehold.it/200x200&text=Logo" alt="">
5
+ </header>
6
+
7
+ <!-- Content Section -->
8
+ <section>
9
+ <div class="container">
10
+ <div class="row">
11
+ <div class="col-lg-12">
12
+ <h1 class="section-heading">Section Heading</h1>
13
+ <p class="lead section-lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
14
+ <p class="section-paragraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid, suscipit, rerum quos facilis repellat architecto commodi officia atque nemo facere eum non illo voluptatem quae delectus odit vel itaque amet.</p>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </section>
19
+
20
+ <!-- Fixed Height Image Aside -->
21
+ <!-- Image backgrounds are set within the full-width-pics.css file. -->
22
+ <aside class="image-bg-fixed-height"></aside>
23
+
24
+ <!-- Content Section -->
25
+ <section>
26
+ <div class="container">
27
+ <div class="row">
28
+ <div class="col-lg-12">
29
+ <h1 class="section-heading">Section Heading</h1>
30
+ <p class="lead section-lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
31
+ <p class="section-paragraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid, suscipit, rerum quos facilis repellat architecto commodi officia atque nemo facere eum non illo voluptatem quae delectus odit vel itaque amet.</p>
32
+ </div>
33
+ </div>
34
+ <!-- /.row -->
35
+ </div>
36
+ <!-- /.container -->
37
+ </section>
38
+
39
+ <!-- Footer -->
40
+ <footer>
41
+ <div class="container">
42
+ <div class="row">
43
+ <div class="col-lg-12">
44
+ <p>Copyright &copy; Your Website 2014</p>
45
+ </div>
46
+ </div>
47
+ <!-- /.row -->
48
+ </div>
49
+ <!-- /.container -->
50
+ </footer>
@@ -0,0 +1,17 @@
1
+ require 'rails/generators'
2
+
3
+ module Theme
4
+ module Generators
5
+ class HeroicFeaturesGenerator < ::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 'heroic-features.css', 'app/assets/stylesheets/heroic-features.css'
13
+ end
14
+
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ /*!
2
+ * Start Bootstrap - Heroic Features 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
+ .hero-spacer {
8
+ margin-top: 50px;
9
+ }
10
+
11
+ .hero-feature {
12
+ margin-bottom: 30px;
13
+ }
14
+
15
+ footer {
16
+ margin: 50px 0;
17
+ }
@@ -0,0 +1,92 @@
1
+ <!-- Page Content -->
2
+ <div class="container">
3
+
4
+ <!-- Jumbotron Header -->
5
+ <header class="jumbotron hero-spacer">
6
+ <h1>A Warm Welcome!</h1>
7
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsa, ipsam, eligendi, in quo sunt possimus non incidunt odit vero aliquid similique quaerat nam nobis illo aspernatur vitae fugiat numquam repellat.</p>
8
+ <p><a class="btn btn-primary btn-large">Call to action!</a>
9
+ </p>
10
+ </header>
11
+
12
+ <hr>
13
+
14
+ <!-- Title -->
15
+ <div class="row">
16
+ <div class="col-lg-12">
17
+ <h3>Latest Features</h3>
18
+ </div>
19
+ </div>
20
+ <!-- /.row -->
21
+
22
+ <!-- Page Features -->
23
+ <div class="row text-center">
24
+
25
+ <div class="col-md-3 col-sm-6 hero-feature">
26
+ <div class="thumbnail">
27
+ <img src="http://placehold.it/800x500" alt="">
28
+ <div class="caption">
29
+ <h3>Feature Label</h3>
30
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
31
+ <p>
32
+ <a href="#" class="btn btn-primary">Buy Now!</a> <a href="#" class="btn btn-default">More Info</a>
33
+ </p>
34
+ </div>
35
+ </div>
36
+ </div>
37
+
38
+ <div class="col-md-3 col-sm-6 hero-feature">
39
+ <div class="thumbnail">
40
+ <img src="http://placehold.it/800x500" alt="">
41
+ <div class="caption">
42
+ <h3>Feature Label</h3>
43
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
44
+ <p>
45
+ <a href="#" class="btn btn-primary">Buy Now!</a> <a href="#" class="btn btn-default">More Info</a>
46
+ </p>
47
+ </div>
48
+ </div>
49
+ </div>
50
+
51
+ <div class="col-md-3 col-sm-6 hero-feature">
52
+ <div class="thumbnail">
53
+ <img src="http://placehold.it/800x500" alt="">
54
+ <div class="caption">
55
+ <h3>Feature Label</h3>
56
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
57
+ <p>
58
+ <a href="#" class="btn btn-primary">Buy Now!</a> <a href="#" class="btn btn-default">More Info</a>
59
+ </p>
60
+ </div>
61
+ </div>
62
+ </div>
63
+
64
+ <div class="col-md-3 col-sm-6 hero-feature">
65
+ <div class="thumbnail">
66
+ <img src="http://placehold.it/800x500" alt="">
67
+ <div class="caption">
68
+ <h3>Feature Label</h3>
69
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
70
+ <p>
71
+ <a href="#" class="btn btn-primary">Buy Now!</a> <a href="#" class="btn btn-default">More Info</a>
72
+ </p>
73
+ </div>
74
+ </div>
75
+ </div>
76
+
77
+ </div>
78
+ <!-- /.row -->
79
+
80
+ <hr>
81
+
82
+ <!-- Footer -->
83
+ <footer>
84
+ <div class="row">
85
+ <div class="col-lg-12">
86
+ <p>Copyright &copy; Your Website 2014</p>
87
+ </div>
88
+ </div>
89
+ </footer>
90
+
91
+ </div>
92
+ <!-- /.container -->
@@ -0,0 +1,18 @@
1
+ require 'rails/generators'
2
+
3
+ module Theme
4
+ module Generators
5
+ class LandingPageGenerator < ::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 'landing-page.css', 'app/assets/stylesheets/landing-page.css'
14
+ end
15
+
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,21 @@
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
+ <!-- Custom Fonts -->
11
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
12
+ <link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
13
+ </head>
14
+ <body>
15
+ <header>
16
+ <%= render 'layouts/navigation' unless current_page?(root_path) %>
17
+ </header>
18
+ <%= render 'layouts/messages' %>
19
+ <%= yield %>
20
+ </body>
21
+ </html>
@@ -0,0 +1,189 @@
1
+ <!-- Navigation -->
2
+ <nav class="navbar navbar-default navbar-fixed-top topnav" role="navigation">
3
+ <div class="container topnav">
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 topnav" 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 navbar-right">
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
+ <!-- Header -->
34
+ <a name="about"></a>
35
+ <div class="intro-header">
36
+ <div class="container">
37
+
38
+ <div class="row">
39
+ <div class="col-lg-12">
40
+ <div class="intro-message">
41
+ <h1>Landing Page</h1>
42
+ <h3>A Template by Start Bootstrap</h3>
43
+ <hr class="intro-divider">
44
+ <ul class="list-inline intro-social-buttons">
45
+ <li>
46
+ <a href="https://twitter.com/SBootstrap" class="btn btn-default btn-lg"><i class="fa fa-twitter fa-fw"></i> <span class="network-name">Twitter</span></a>
47
+ </li>
48
+ <li>
49
+ <a href="https://github.com/IronSummitMedia/startbootstrap" class="btn btn-default btn-lg"><i class="fa fa-github fa-fw"></i> <span class="network-name">Github</span></a>
50
+ </li>
51
+ <li>
52
+ <a href="#" class="btn btn-default btn-lg"><i class="fa fa-linkedin fa-fw"></i> <span class="network-name">Linkedin</span></a>
53
+ </li>
54
+ </ul>
55
+ </div>
56
+ </div>
57
+ </div>
58
+
59
+ </div>
60
+ <!-- /.container -->
61
+
62
+ </div>
63
+ <!-- /.intro-header -->
64
+
65
+ <!-- Page Content -->
66
+
67
+ <a name="services"></a>
68
+ <div class="content-section-a">
69
+
70
+ <div class="container">
71
+ <div class="row">
72
+ <div class="col-lg-5 col-sm-6">
73
+ <hr class="section-heading-spacer">
74
+ <div class="clearfix"></div>
75
+ <h2 class="section-heading">Death to the Stock Photo:<br>Special Thanks</h2>
76
+ <p class="lead">A special thanks to <a target="_blank" href="http://join.deathtothestockphoto.com/">Death to the Stock Photo</a> for providing the photographs that you see in this template. Visit their website to become a member.</p>
77
+ </div>
78
+ <div class="col-lg-5 col-lg-offset-2 col-sm-6">
79
+ <img class="img-responsive" src="http://ironsummitmedia.github.io/startbootstrap-landing-page/img/ipad.png" alt="">
80
+ </div>
81
+ </div>
82
+
83
+ </div>
84
+ <!-- /.container -->
85
+
86
+ </div>
87
+ <!-- /.content-section-a -->
88
+
89
+ <div class="content-section-b">
90
+
91
+ <div class="container">
92
+
93
+ <div class="row">
94
+ <div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
95
+ <hr class="section-heading-spacer">
96
+ <div class="clearfix"></div>
97
+ <h2 class="section-heading">3D Device Mockups<br>by PSDCovers</h2>
98
+ <p class="lead">Turn your 2D designs into high quality, 3D product shots in seconds using free Photoshop actions by <a target="_blank" href="http://www.psdcovers.com/">PSDCovers</a>! Visit their website to download some of their awesome, free photoshop actions!</p>
99
+ </div>
100
+ <div class="col-lg-5 col-sm-pull-6 col-sm-6">
101
+ <img class="img-responsive" src="http://ironsummitmedia.github.io/startbootstrap-landing-page/img/dog.png" alt="">
102
+ </div>
103
+ </div>
104
+
105
+ </div>
106
+ <!-- /.container -->
107
+
108
+ </div>
109
+ <!-- /.content-section-b -->
110
+
111
+ <div class="content-section-a">
112
+
113
+ <div class="container">
114
+
115
+ <div class="row">
116
+ <div class="col-lg-5 col-sm-6">
117
+ <hr class="section-heading-spacer">
118
+ <div class="clearfix"></div>
119
+ <h2 class="section-heading">Google Web Fonts and<br>Font Awesome Icons</h2>
120
+ <p class="lead">This template features the 'Lato' font, part of the <a target="_blank" href="http://www.google.com/fonts">Google Web Font library</a>, as well as <a target="_blank" href="http://fontawesome.io">icons from Font Awesome</a>.</p>
121
+ </div>
122
+ <div class="col-lg-5 col-lg-offset-2 col-sm-6">
123
+ <img class="img-responsive" src="http://ironsummitmedia.github.io/startbootstrap-landing-page/img/phones.png" alt="">
124
+ </div>
125
+ </div>
126
+
127
+ </div>
128
+ <!-- /.container -->
129
+
130
+ </div>
131
+ <!-- /.content-section-a -->
132
+
133
+ <a name="contact"></a>
134
+ <div class="banner">
135
+
136
+ <div class="container">
137
+
138
+ <div class="row">
139
+ <div class="col-lg-6">
140
+ <h2>Connect to Start Bootstrap:</h2>
141
+ </div>
142
+ <div class="col-lg-6">
143
+ <ul class="list-inline banner-social-buttons">
144
+ <li>
145
+ <a href="https://twitter.com/SBootstrap" class="btn btn-default btn-lg"><i class="fa fa-twitter fa-fw"></i> <span class="network-name">Twitter</span></a>
146
+ </li>
147
+ <li>
148
+ <a href="https://github.com/IronSummitMedia/startbootstrap" class="btn btn-default btn-lg"><i class="fa fa-github fa-fw"></i> <span class="network-name">Github</span></a>
149
+ </li>
150
+ <li>
151
+ <a href="#" class="btn btn-default btn-lg"><i class="fa fa-linkedin fa-fw"></i> <span class="network-name">Linkedin</span></a>
152
+ </li>
153
+ </ul>
154
+ </div>
155
+ </div>
156
+
157
+ </div>
158
+ <!-- /.container -->
159
+
160
+ </div>
161
+ <!-- /.banner -->
162
+
163
+ <!-- Footer -->
164
+ <footer>
165
+ <div class="container">
166
+ <div class="row">
167
+ <div class="col-lg-12">
168
+ <ul class="list-inline">
169
+ <li>
170
+ <a href="#">Home</a>
171
+ </li>
172
+ <li class="footer-menu-divider">&sdot;</li>
173
+ <li>
174
+ <a href="#about">About</a>
175
+ </li>
176
+ <li class="footer-menu-divider">&sdot;</li>
177
+ <li>
178
+ <a href="#services">Services</a>
179
+ </li>
180
+ <li class="footer-menu-divider">&sdot;</li>
181
+ <li>
182
+ <a href="#contact">Contact</a>
183
+ </li>
184
+ </ul>
185
+ <p class="copyright text-muted small">Copyright &copy; Your Company 2014. All Rights Reserved</p>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </footer>