mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:25:53 +08:00
e1f8014acd
If the feature is enabled, staff members can construct a URL and publish a topic for others to browse without the regular Discourse chrome. This is useful if you want to use Discourse like a CMS and publish topics as articles, which can then be embedded into other systems.
16 lines
420 B
Plaintext
16 lines
420 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">
|
|
<%= discourse_stylesheet_link_tag 'publish', theme_ids: nil %>
|
|
|
|
<%- if @canonical_url -%>
|
|
<link rel="canonical" href="<%= @canonical_url %>" />
|
|
<%- end -%>
|
|
</head>
|
|
<body>
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|