21 lines
517 B
Text
21 lines
517 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>
|
|
<head>
|
|
<%= render 'layouts/meta_tags' %>
|
|
<%= yield :head %>
|
|
<%= stylesheet_link_tag 'experiment/global/page' %>
|
|
<%= yield :stylesheets %>
|
|
</head>
|
|
|
|
<body>
|
|
<%= yield %>
|
|
<%= render 'components/global_loading' %>
|
|
<%= render 'layouts/page_modals' %>
|
|
<%= render 'layouts/javascripts' %>
|
|
</body>
|
|
|
|
</html>
|
|
|