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

92 lines
2.9 KiB
Plaintext
Raw Normal View History

2013-02-05 14:16:51 -05:00
<!DOCTYPE html>
<html lang="<%= SiteSetting.default_locale %>" class="<%= html_classes %>">
2013-02-05 14:16:51 -05:00
<head>
<meta charset="utf-8">
<title><%= content_for?(:title) ? yield(:title) + ' - ' + SiteSetting.title : SiteSetting.title %></title>
2013-02-13 16:17:29 -05:00
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="<%= SiteSetting.site_description %>" name="description">
2013-02-05 14:16:51 -05:00
<meta content="" name="author">
<%= canonical_link_tag %>
2013-02-05 14:16:51 -05:00
2013-05-31 15:18:41 -04:00
<link rel="icon" type="image/png" href="<%=SiteSetting.favicon_url%>">
<link rel="apple-touch-icon" type="image/png" href="<%=SiteSetting.apple_touch_icon_url%>">
2013-02-05 14:16:51 -05:00
<%= javascript_include_tag "preload_store" %>
<%= javascript_include_tag "locales/#{I18n.locale}" %>
<%= javascript_include_tag "vendor" %>
<%= javascript_include_tag "application" %>
<%- if staff? %>
<%= javascript_include_tag "admin"%>
<%- end %>
<%= render :partial => "common/special_font_face" %>
<%= render :partial => "common/discourse_stylesheet" %>
2013-02-05 14:16:51 -05:00
<%= discourse_csrf_tags %>
<%= raw SiteContent.content_for(:head) %>
2014-01-25 19:42:25 -05:00
<%= render_google_universal_analytics_code %>
<%= yield :head %>
2013-02-05 14:16:51 -05:00
</head>
<body>
<!--[if IE 9]><script type="text/javascript">ie = "new";</script><![endif]-->
<%- unless customization_disabled? %>
<%= SiteCustomization.custom_header(session[:preview_style], mobile_view? ? :mobile : :desktop) %>
<%- end %>
<section id='main'>
</section>
<% unless current_user %>
<form id='hidden-login-form' method="post" action="<%=login_path%>" style="display: none;">
<input name="username" type="text" id="signin_username">
<input name="password" type="password" id="signin_password">
<input name="redirect" type="hidden">
<input type="submit" id="signin-button" value="Log In">
</form>
<% end %>
<%- if @preloaded.present? %>
<script>
<%- @preloaded.each do |key, json| %>
PreloadStore.store("<%= key %>",<%= escape_unicode(json) %>);
<% end %>
</script>
<%- end %>
<%= yield :data %>
2013-02-25 11:42:20 -05:00
<footer id='bottom'></footer>
2013-02-11 06:41:23 -05:00
<%= render :partial => "common/discourse_javascript" %>
<%= render_google_analytics_code %>
2013-02-05 14:16:51 -05:00
<noscript data-path="<%= request.env['PATH_INFO'] %>">
<header class="d-header">
<div class="container">
<div class="contents">
<div class="row">
<div class="title span13">
<a href="/"><img src="<%=SiteSetting.logo_url%>" alt="<%=SiteSetting.title%>" id="site-logo"></a>
</div>
</div>
</div>
</div>
</header>
<div id="main-outlet" class="container">
<!-- preload-content: -->
<%= yield %>
<!-- :preload-content -->
</div>
</noscript>
<!-- Discourse Version: <%= Discourse::VERSION::STRING %> -->
2013-02-18 02:00:49 -05:00
<!-- Git Version: <%= Discourse.git_version %> -->
2013-02-05 14:16:51 -05:00
</body>
</html>