mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
34 lines
782 B
Plaintext
34 lines
782 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{% include 'partials/meta.njk' %}
|
|
<link rel="stylesheet" href="/styles.css">
|
|
</head>
|
|
|
|
<body data-gr-c-s-loaded="true">
|
|
<div id="app">
|
|
<div class="theme-container">
|
|
{% include 'partials/header.njk' %}
|
|
{% include 'partials/sidebar.njk' %}
|
|
<main class="page">
|
|
<div class="theme-default-content content__default">
|
|
{{ content.html | safe }}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
<div class="global-ui"></div>
|
|
</div>
|
|
|
|
{% include "partials/sidebar-script.njk" %}
|
|
|
|
{% if content.jsCode %}
|
|
<script type="module">
|
|
{{ content.jsCode | safe }}
|
|
</script>
|
|
{% endif %}
|
|
{% include 'partials/service-worker.njk' %}
|
|
</body>
|
|
|
|
</html>
|