31 lines
768 B
Plaintext
31 lines
768 B
Plaintext
<html>
|
|
<!DOCTYPE html>
|
|
<head>
|
|
<title>ThirteenTienLen</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
|
<%= csrf_meta_tags %>
|
|
<%= yield :head %>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<%= render "layouts/navigation_links" %>
|
|
</header>
|
|
|
|
<%= render "layouts/flashmessages" %>
|
|
|
|
<div id="content">
|
|
<%= yield %>
|
|
</div>
|
|
|
|
<%#<footer>%>
|
|
<%#<%= render "layouts/footer" %>
|
|
<%#</footer>%>
|
|
|
|
</body>
|
|
</html>
|