mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 05:23:45 +08:00
17 lines
463 B
Plaintext
17 lines
463 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=yes, viewport-fit=cover">
|
|
|
|
<%= render partial: "common/discourse_publish_stylesheet" %>
|
|
|
|
<%- if @canonical_url -%>
|
|
<link rel="canonical" href="<%= @canonical_url %>" />
|
|
<%- end -%>
|
|
</head>
|
|
<body class="<%= @body_classes.to_a.join(' ') %>">
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|