-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚧 Adding landing page with feature logos for gems included
General commit message description if longer than one line here. - then some bullets for more changes - go bullets go! - this is just the best commit message ever
- Loading branch information
1 parent
b237163
commit 16cc312
Showing
22 changed files
with
99 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
// Place all the styles related to the home controller here. | ||
// They will automatically be included in application.css. | ||
// You can use Sass (SCSS) here: http://sass-lang.com/ | ||
|
||
.card-columns { | ||
@include media-breakpoint-only(lg) { | ||
column-count: 5; | ||
} | ||
@include media-breakpoint-only(xl) { | ||
column-count: 6; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,85 @@ | ||
<h1>Home#index</h1> | ||
<p>Find me in app/views/home/index.html.erb</p> | ||
<div class="row text-center mb-5"> | ||
<div class="col"> | ||
<h1><%= image_tag "rails-icon.jpg", size: '50x50' %> Rails Boilerplate</h1> | ||
<p>Jump start your next Rails project with this MVP ready rails app.</p> | ||
<a href="https://github.com/TristanToye/rails-5-boilerplate" target="_blank" class="btn btn-outline-primary">Star on Github</a> | ||
<a href="https://github.com/TristanToye/rails-5-boilerplate#rails-5-boilerplate" target="_blank" class="btn btn-outline-secondary">Read the Docs</a> | ||
</div> | ||
</div> | ||
<!-- | ||
<section> | ||
<div class="row text-center"> | ||
<div class="col"> | ||
<h2>Features</h2> | ||
<p>All the goodies you need right out of the box!</p> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="card-columns"> | ||
<div class="card"> | ||
<%= image_tag "rails-icon.jpg", class: "card-img-top" %> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title that wraps to a new line</h5> | ||
<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> | ||
</div> | ||
</div> | ||
<div class="card p-3"> | ||
<blockquote class="blockquote mb-0 card-body"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> | ||
<footer class="blockquote-footer"> | ||
<small class="text-muted"> | ||
Someone famous in <cite title="Source Title">Source Title</cite> | ||
</small> | ||
</footer> | ||
</blockquote> | ||
</div> | ||
<div class="card"> | ||
<img src="..." class="card-img-top" alt="..."> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text">This card has supporting text below as a natural lead-in to additional content.</p> | ||
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> | ||
</div> | ||
</div> | ||
<div class="card bg-primary text-white text-center p-3"> | ||
<blockquote class="blockquote mb-0"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat.</p> | ||
<footer class="blockquote-footer text-white"> | ||
<small> | ||
Someone famous in <cite title="Source Title">Source Title</cite> | ||
</small> | ||
</footer> | ||
</blockquote> | ||
</div> | ||
<div class="card text-center"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text">This card has a regular title and short paragraphy of text below it.</p> | ||
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> | ||
</div> | ||
</div> | ||
<div class="card"> | ||
<img src="..." class="card-img-top" alt="..."> | ||
</div> | ||
<div class="card p-3 text-right"> | ||
<blockquote class="blockquote mb-0"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> | ||
<footer class="blockquote-footer"> | ||
<small class="text-muted"> | ||
Someone famous in <cite title="Source Title">Source Title</cite> | ||
</small> | ||
</footer> | ||
</blockquote> | ||
</div> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text">This is another card with title and supporting text below. This card has some additional content to make it slightly taller overall.</p> | ||
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters