FEATURE: allows to have header/footer in publshed pages (#10067)

Usage: fill Header/Footer sections of your theme.
This commit is contained in:
Joffrey JAFFEUX 2020-06-19 09:51:03 +02:00 committed by GitHub
parent b5495b8e9c
commit 3e161e372a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,8 @@
<%= render partial: "common/discourse_publish_stylesheet" %> <%= render partial: "common/discourse_publish_stylesheet" %>
</head> </head>
<body class="<%= @body_classes.to_a.join(' ') %>"> <body class="<%= @body_classes.to_a.join(' ') %>">
<%= theme_lookup("header") %>
<%= yield %> <%= yield %>
<%= theme_lookup("footer") %>
</body> </body>
</html> </html>