sample_rails_tailwind/app/views/layouts/application.html.erb

18 lines
399 B
Plaintext
Raw Normal View History

2024-12-29 17:12:54 +08:00
<!DOCTYPE html>
<html>
<head>
2024-12-30 13:23:22 +08:00
<!-- <title><%#= content_for(:title) || "Sample App" %></title>-->
<title><%= full_title(yield(:title)) %></title>
<%= render 'layouts/rails_default' %>
<%= render 'layouts/shim' %>
2024-12-29 17:12:54 +08:00
</head>
<body>
<%= render 'layouts/header' %>
2024-12-30 13:23:22 +08:00
<div class="container">
<%= yield %>
<%= render 'layouts/footer' %>
2024-12-30 13:23:22 +08:00
</div>
2024-12-29 17:12:54 +08:00
</body>
</html>