33 lines
No EOL
912 B
Text
33 lines
No EOL
912 B
Text
<%- # 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 -%>
|
|
<!doctype html>
|
|
|
|
<html lang="<%= I18n.locale %>">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><%= "#{yield(:title)} - #{Houdini.general.name}" %></title>
|
|
<script>
|
|
window.I18n = {}
|
|
I18n.defaultLocale = "<%= I18n.default_locale %>"
|
|
I18n.locale = "<%= I18n.locale %>"
|
|
window._csrf = "<%= form_authenticity_token %>"
|
|
</script>
|
|
|
|
|
|
<%= render 'layouts/stylesheets' %>
|
|
<%= favicon_link_tag %>
|
|
|
|
<style>
|
|
body {padding-left: 0}
|
|
</style>
|
|
</head>
|
|
<body class="<%= @theme == 'minimal' ? 'minimal' : nil %>">
|
|
<%= render 'layouts/apified_header' %>
|
|
<%= yield :javascripts %>
|
|
<div class="site-content" role="main">
|
|
<%= yield %>
|
|
</div>
|
|
<%= render 'layouts/apified_footer' %>
|
|
|
|
</body>
|
|
</html> |