2024-12-30 00:09:54 +08:00
|
|
|
<% provide(:title, "Home") %>
|
2024-12-30 13:23:22 +08:00
|
|
|
<div class="center jumbotron">
|
|
|
|
<h1>Welcome to the Sample App</h1>
|
|
|
|
<h2>
|
|
|
|
This is the home page for the
|
|
|
|
<a href="https://www.railstutorial.org">Ruby on Rails Tutorial</a>
|
|
|
|
Sample application.
|
|
|
|
</h2>
|
|
|
|
|
2024-12-31 14:20:22 +08:00
|
|
|
<%= link_to "Sing up now!", signup_path, class:"btn btn-lg btn-primary" %>
|
2024-12-30 13:23:22 +08:00
|
|
|
</div>
|
|
|
|
<%= link_to image_tag("rails.svg", alt:"Rails logo", width: "200"),
|
|
|
|
"https://rubyonrails.org/" %>
|
2024-12-30 17:54:42 +08:00
|
|
|
<%#= link_to image_tag("kitten.jpg", alt:"Kitten", width:"200") %>
|
2024-12-30 13:23:22 +08:00
|
|
|
|
2024-12-30 00:09:54 +08:00
|
|
|
|