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

22 lines
517 B
Text
Raw Normal View History

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 -%>
<!doctype html>
<html>
<head>
<%= render 'layouts/meta_tags' %>
<%= yield :head %>
2019-12-04 22:22:48 +00:00
<%= stylesheet_link_tag 'experiment/global/page' %>
<%= yield :stylesheets %>
</head>
<body>
<%= yield %>
<%= render 'components/global_loading' %>
<%= render 'layouts/page_modals' %>
<%= render 'layouts/javascripts' %>
</body>
</html>