-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
24 additions
and
48 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
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,19 +1,11 @@ | ||
<% provide(:title, 'About') %> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Ruby on Rails Tutorial Sample App | <%= yield(:title) %></title> | ||
</head> | ||
<body> | ||
<h1>About Us</h1> | ||
<p> | ||
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a> | ||
is a project to make a book and screencats to teach web development | ||
with <a href="http://rubyonrails.org/">Ruby on Rails</a>. This | ||
is the sample application for the tutorial. | ||
</p> | ||
<p> | ||
I'm feeling lucky... Wait, that's workaholism. | ||
</p> | ||
</body> | ||
</html> | ||
<h1>About</h1> | ||
<p> | ||
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a> | ||
is a project to make a book and screencats to teach web development | ||
with <a href="http://rubyonrails.org/">Ruby on Rails</a>. This | ||
is the sample application for the tutorial. | ||
</p> | ||
<p> | ||
I'm feeling lucky... Wait, that's workaholism. | ||
</p> |
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,16 +1,8 @@ | ||
<% provide(:title, 'Help') %> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Ruby on Rails Tutorial Sample App | <%= yield(:title) %></title> | ||
</head> | ||
<body> | ||
<h1>Help</h1> | ||
<p> | ||
Get help on Ruby on Rails Tutorial at the | ||
<a href="http://railstutorial.org/help">Rails Tutorial help page</a>. | ||
To get help on this sample app, see the | ||
<a href="http://railstutorial.org/book">Rails Tutorial book</a>. | ||
</p> | ||
</body> | ||
</html> | ||
<h1>Help</h1> | ||
<p> | ||
Get help on Ruby on Rails Tutorial at the | ||
<a href="http://railstutorial.org/help">Rails Tutorial help page</a>. | ||
To get help on this sample app, see the | ||
<a href="http://railstutorial.org/book">Rails Tutorial book</a>. | ||
</p> |
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,15 +1,7 @@ | ||
<% provide(:title, 'Home') %> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Ruby on Rails Tutorial Sample App | <%= yield(:title) %></title> | ||
</head> | ||
<body> | ||
<h1>Sample App</h1> | ||
<p> | ||
This is the home page for the | ||
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a> | ||
sample application. | ||
</p> | ||
</body> | ||
</html> | ||
<h1>Sample App</h1> | ||
<p> | ||
This is the home page for the | ||
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a> | ||
sample application. | ||
</p> |