houdini/app/views/layouts/static.html.erb

23 lines
604 B
Text
Raw Normal View History

<%- # 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>
2018-06-08 15:21:09 +00:00
<%= favicon_link_tag %>
</head>
<body>
<%= render 'layouts/apified_header' %>
<div class="site-content">
<%= yield %>
</div>
<%= render 'layouts/apified_footer' %>
</body>
</html>