2014-02-14 17:10:08 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="<%= SiteSetting.default_locale %>">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title><%= content_for?(:title) ? yield(:title) + ' - ' + SiteSetting.title : SiteSetting.title %></title>
|
2014-06-19 18:17:52 -04:00
|
|
|
<meta name="description" content="<%= @description_meta || SiteSetting.site_description %>">
|
|
|
|
<%= render partial: "layouts/head" %>
|
2014-02-14 17:10:08 -05:00
|
|
|
<%= raw SiteContent.content_for(:head) %>
|
2014-03-15 10:32:23 -04:00
|
|
|
<%= yield :head %>
|
2014-02-14 17:10:08 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<%- unless customization_disabled? %>
|
|
|
|
<%= SiteCustomization.custom_header(session[:preview_style]) %>
|
|
|
|
<%- end %>
|
|
|
|
<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>
|
2014-06-19 17:32:26 -04:00
|
|
|
<footer id='bottom' class="container">
|
|
|
|
<p><%= t 'powered_by_html' %></p>
|
|
|
|
</footer>
|
2014-02-14 17:10:08 -05:00
|
|
|
</body>
|
|
|
|
</html>
|