-
Notifications
You must be signed in to change notification settings - Fork 126
Initial layout on tutorial page #518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jathayde
wants to merge
9
commits into
rails:main
Choose a base branch
from
jathayde:tutorial_home_page
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+562
−96
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
fd59961
Initial layout on tutorial page
jathayde df4025a
Small word change
AmandaPerino c17b4b7
Update tutorial.html
AmandaPerino a6b2855
Fixing extra white space on main feature block
jathayde 9d56a0f
Alternate image for store tutorial block
jathayde ec95702
Cleaning up screenshot
jathayde f9c3855
Working on responsive style issues for fullwidth card
jathayde 53d6d55
Updating URL to plural (tutorial => tutorials)
jathayde c59e880
Styling on full width card improved for desktop and mobile
jathayde File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,159 @@ | ||
--- | ||
title: "Ruby on Rails Tutorials" | ||
description: "Ruby on Rails Tutorials" | ||
permalink: /docs/tutorials | ||
redirect_from: | ||
- /docs/tutorials/ | ||
--- | ||
|
||
<div class="docs heading common-padding--bottom common-padding--top-small"> | ||
<div class="container"> | ||
<div class="heading__body"> | ||
<div class="heading__headline common-headline"> | ||
<p class="breadcrumb"> | ||
<a href="/docs">« Back to Docs</a> | ||
</p> | ||
<h1>Tutorials for<br />All Levels</h1> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="docs cards common-padding--bottom-small padfix"> | ||
<div class="container"> | ||
<h2 class="thin">Beginner</h2> | ||
|
||
<p> | ||
Build an e-commerce app and learn the basics of Rails with this in-depth, | ||
hands-on, step-by-step tutorial. If you have no prior knowledge of Rails, | ||
this is a great place to start. | ||
</p> | ||
|
||
<div class="cards__container card__fullwidth"> | ||
<div class="card"> | ||
<a | ||
href="https://guides.rubyonrails.org/install_ruby_on_rails.html" | ||
title="Create a Store with Ruby on Rails" | ||
> | ||
<div class="card__body"> | ||
<img | ||
src="/assets/images/tutorial-store.jpg" | ||
alt="A screen showing the store on the left and a code editor on the right." | ||
height="645" | ||
width="363" | ||
/> | ||
<div> | ||
<div class="card__headline"> | ||
<h3>Create a Store</h3> | ||
</div> | ||
|
||
<div class="card__content"> | ||
<p>In this guide, you'll learn:</p> | ||
<ul> | ||
<li>Rails Philosophy</li> | ||
<li>MVC Architecture</li> | ||
<li>Active Record Basics</li> | ||
<li>Routes</li> | ||
<li>Controllers & Actions</li> | ||
<li>And much more</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="docs cards common-padding--bottom-small"> | ||
<div class="container"> | ||
<h2 class="thin">Advanced</h2> | ||
|
||
<p> | ||
Continue learning Rails with focused tutorials adding features to the | ||
e-commerce app you created above. | ||
</p> | ||
|
||
<div class="cards__container"> | ||
<div class="card"> | ||
<a | ||
href="https://guides.rubyonrails.org/install_ruby_on_rails.html" | ||
title="Expand your store with sign up and settings features" | ||
> | ||
<div class="card__body"> | ||
<div class="card__headline"> | ||
<h3>Sign Up & Settings</h3> | ||
</div> | ||
|
||
<div class="card__content"> | ||
<p> | ||
Allow your users to sign up and edit their profile, and create | ||
admins for your store. | ||
</p> | ||
</div> | ||
</div> | ||
</a> | ||
</div> | ||
<div class="card card__coming-soon"> | ||
<a | ||
href="https://guides.rubyonrails.org/install_ruby_on_rails.html" | ||
title="Install Ruby on Rails" | ||
> | ||
<div class="card__body"> | ||
<div class="card__headline"> | ||
<h3>User Wishlists</h3> | ||
</div> | ||
|
||
<div class="card__content"> | ||
<p> | ||
Save products for later, share the list for a birthday or | ||
holiday, and more. | ||
</p> | ||
</div> | ||
<div class="card__label"> | ||
<h6>Coming Soon</h6> | ||
</div> | ||
</div> | ||
</a> | ||
</div> | ||
<div class="card card__coming-soon"> | ||
<a | ||
href="https://guides.rubyonrails.org/install_ruby_on_rails.html" | ||
title="Install Ruby on Rails" | ||
> | ||
<div class="card__body"> | ||
<div class="card__headline"> | ||
<h3>Product Reviews</h3> | ||
</div> | ||
|
||
<div class="card__content"> | ||
<p>Allow people to rate and review the products that you sell.</p> | ||
</div> | ||
<div class="card__label"> | ||
<h6>Coming Soon</h6> | ||
</div> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="docs text common-padding--bottom"> | ||
<div class="container"> | ||
<div class="text__body"> | ||
<div class="text__content common-content"> | ||
<h2 class="how">More in the Pipeline</h2> | ||
<p class="how-leadin"> | ||
This tutorial series will expand to add more features so you can learn | ||
Rails. Have something you’d like us to cover? | ||
<a | ||
href="https://app.todohelpers.com/forms/4758b5b0-d6f9-4f41-8041-992cc9b748fb" | ||
>Let us know.</a | ||
> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just heard from @fxn that there is a redirect in place where we can use the Guides URL even if the guide only exists on edge.