2013-02-06 03:16:51 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2013-03-31 06:16:59 +08:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) + ' - ' + SiteSetting.title : SiteSetting.title %></title>
|
2013-02-14 05:17:29 +08:00
|
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
2013-02-06 03:16:51 +08:00
|
|
|
<meta content="" name="description">
|
|
|
|
<meta content="" name="author">
|
2013-02-13 19:04:43 +08:00
|
|
|
|
|
|
|
<%= canonical_link_tag %>
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
<link rel="icon" type="image/png" href=<%=SiteSetting.favicon_url%>>
|
|
|
|
<%= javascript_include_tag "preload_store" %>
|
|
|
|
|
2013-02-11 19:41:23 +08:00
|
|
|
<%= render :partial => "common/special_font_face" %>
|
|
|
|
<%= render :partial => "common/discourse_stylesheet" %>
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-03-08 06:31:06 +08:00
|
|
|
<%= csrf_meta_tags %>
|
2013-02-22 02:20:00 +08:00
|
|
|
|
|
|
|
<%= yield :head %>
|
2013-02-06 03:16:51 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2013-03-13 22:22:56 +08:00
|
|
|
<% unless current_user %>
|
2013-03-20 00:15:14 +08:00
|
|
|
<form id='hidden-login-form' method="post" action="<%=login_path%>" style="display: none;">
|
2013-03-13 22:22:56 +08:00
|
|
|
<input name="username" type="text" id="signin_username">
|
|
|
|
<input name="password" type="password" id="signin_password">
|
|
|
|
<input name="redirect" type="hidden">
|
2013-03-16 07:26:32 +08:00
|
|
|
<input name="authenticity_token" type="hidden" />
|
2013-03-13 22:22:56 +08:00
|
|
|
<input type="submit" id="signin-button" value="Log In">
|
|
|
|
</form>
|
|
|
|
<% end %>
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
<%=SiteCustomization.custom_header(session[:preview_style])%>
|
|
|
|
<section id='main'>
|
|
|
|
<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>
|
2013-02-26 00:42:20 +08:00
|
|
|
</div>
|
2013-02-06 03:16:51 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div id="main-outlet" class="container">
|
2013-03-03 23:47:40 +08:00
|
|
|
<!-- preload-content: -->
|
2013-02-06 03:16:51 +08:00
|
|
|
<%= yield %>
|
2013-03-03 23:47:40 +08:00
|
|
|
<!-- :preload-content -->
|
2013-02-06 03:16:51 +08:00
|
|
|
</div>
|
|
|
|
</noscript>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<%- if @preloaded.present? %>
|
|
|
|
<script>
|
|
|
|
<%- @preloaded.each do |key, json| %>
|
|
|
|
PreloadStore.store("<%= key %>", <%= raw json %>)
|
|
|
|
<% end %>
|
2013-02-26 00:42:20 +08:00
|
|
|
</script>
|
2013-02-06 03:16:51 +08:00
|
|
|
<%- end %>
|
|
|
|
|
|
|
|
<%= yield :data %>
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
<footer id='bottom'></footer>
|
2013-02-11 19:41:23 +08:00
|
|
|
|
2013-02-11 19:36:43 +08:00
|
|
|
<%= render :partial => "common/discourse_javascript" %>
|
2013-03-02 03:51:00 +08:00
|
|
|
<%= render :partial => "common/persona_javascript" if SiteSetting.enable_persona_logins %>
|
2013-02-11 19:34:14 +08:00
|
|
|
<%= render_google_analytics_code %>
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-02-27 02:47:07 +08:00
|
|
|
<!-- Discourse Version: <%= Discourse::VERSION::STRING %> -->
|
2013-02-18 15:00:49 +08:00
|
|
|
<!-- Git Version: <%= Discourse.git_version %> -->
|
2013-02-06 03:16:51 +08:00
|
|
|
</body>
|
|
|
|
</html>
|