about summary refs log tree commit diff
path: root/app/views/layouts/application.html.erb
blob: 48b1f4f39b75f907c5ee398d0edd3ed1e0e02990 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
  <head>
    <title>Pinrails</title>
    <%= csrf_meta_tags %>
    <%= csp_meta_tag %>

    <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
    <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
  </head>

  <body>
    <main>
      <nav>
        <%= link_to "Home", root_path %> ~
        <%= link_to "Tables", machines_path %> ~
        <%= link_to "Players", players_path %> ~
        <%= link_to "Pick Table", controller: "machines", action: "random" %> ~
        <%= link_to "Pick Teams", controller: "pages", action: "teampicker" %>
      </nav>
      <hr>

      <%= yield %>
    </main>
  </body>
</html>