2020-06-12 20:03:43 +00:00
|
|
|
<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
|
2018-05-31 16:21:34 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
2018-06-07 16:20:32 +00:00
|
|
|
<html lang="<%= I18n.locale %>">
|
2018-05-31 16:21:34 +00:00
|
|
|
<head>
|
2018-07-24 19:17:49 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-06-10 22:31:47 +00:00
|
|
|
<title><%= "#{yield(:title)} - #{Houdini.general.name}" %></title>
|
2018-05-31 16:21:34 +00:00
|
|
|
<%= 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 %>
|
2018-05-31 16:21:34 +00:00
|
|
|
</head>
|
2018-07-24 19:17:49 +00:00
|
|
|
<body class="<%= @theme == 'minimal' ? 'minimal' : nil %>">
|
2018-05-31 16:21:34 +00:00
|
|
|
<%= render 'layouts/apified_header' %>
|
|
|
|
<div class="site-content">
|
|
|
|
<%= yield %>
|
|
|
|
</div>
|
|
|
|
<%= render 'layouts/apified_footer' %>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|