application.html.erb 395 Bytes
Newer Older
Galen Evilla's avatar
Galen Evilla committed
1 2 3 4 5 6 7 8 9 10 11
<!DOCTYPE html>
<html>
<head>
  <title><%= yield(:title) %> | Halalan PH</title>
  <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
  <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  <%= csrf_meta_tags %>
</head>
<body>
  <%= render '/layouts/navbar' %>

12 13


Galen Evilla's avatar
Galen Evilla committed
14 15 16 17
  <%= yield %>


</body>
18
 <%= render '/layouts/footer' %>
Galen Evilla's avatar
Galen Evilla committed
19
</html>