pgc-www/templates/home/index.html.ep

13 lines
391 B
Plaintext

% layout 'default';
% title 'Home';
<h1>Home page</h1>
<p>Pages that don't require login:</p>
<p><%= link_to("About" => 'about') %></p>
<p><%= link_to("Books" => 'books' => { page_number => 1 }) %></p>
<p><%= link_to("Authors" => 'authors' => { page_number => 1 }) %></p>
<p>For this, you'll need to log in, then MyApp will redirect you:</p>
<p><%= link_to("Account" => 'account') %></p>