42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= yield :page_title %></title>
|
|
<%= csrf_meta_tag %>
|
|
<%= stylesheet_link_tag "application", :media => "screen" %>
|
|
<%= stylesheet_link_tag "mobile", :media => "only screen and (max-width: 480px), only screen and (max-device-width: 480px)" %>
|
|
<%= javascript_include_tag "application" %>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<%= yield :html_header %>
|
|
</head>
|
|
<body>
|
|
<header id="top">
|
|
<%= render "news_updates/listing" %>
|
|
|
|
<h1><%= link_to Danbooru.config.app_name, "/" %></h1>
|
|
<nav>
|
|
<%= render "layouts/main_links" %>
|
|
<%= yield :secondary_links %>
|
|
</nav>
|
|
|
|
<%= render "layouts/more_links" %>
|
|
</header>
|
|
|
|
<div id="page">
|
|
<%- if flash[:notice] -%>
|
|
<div class="ui-corner-all ui-state-highlight" id="notice"><%= flash[:notice] %></div>
|
|
<%- else -%>
|
|
<div class="ui-corner-all ui-state-highlight" id="notice" style="display: none;"></div>
|
|
<%- end -%>
|
|
|
|
<%= yield :layout %>
|
|
</div>
|
|
|
|
<footer>
|
|
<%= yield :page_footer_content %>
|
|
</footer>
|
|
|
|
<%= render "static/footer" %>
|
|
</body>
|
|
</html>
|