Source code file: Greeter/app/views/layouts/application.html.erb:
<!DOCTYPE html> <html lang="en"> <head> <title><%= @title %></title> <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> </head>
<body> <h1><%= @title %></h1> <p><%= link_to_unless_current "Page 1", greeter_page1_path %> <%= link_to_unless_current "Page 2", greeter_page2_path %> <%= link_to_unless_current "Page 3", greeter_page3_path %></p> <%= yield %> </body> </html>