houdini/app/views/layouts/static.html.erb
2018-06-08 10:21:09 -05:00

23 lines
No EOL
604 B
Text

<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
<!doctype html>
<html lang="<%= I18n.locale %>">
<head>
<title><%= "#{yield(:title)} - #{Settings.general.name}" %></title>
<%= render 'layouts/stylesheets' %>
<%= IncludeAsset.css '/client/css/global/page.css' %>
<%= IncludeAsset.css '/client/css/bootstrap.css' %>
<style>
body {padding-left: 0}
</style>
<%= favicon_link_tag %>
</head>
<body>
<%= render 'layouts/apified_header' %>
<div class="site-content">
<%= yield %>
</div>
<%= render 'layouts/apified_footer' %>
</body>
</html>