feature: added script-containing renderer partials and element with stylized classes/identifiers
This commit is contained in:
@@ -7,11 +7,29 @@
|
|||||||
<header>
|
<header>
|
||||||
{{ partial "header.html" . }}
|
{{ partial "header.html" . }}
|
||||||
</header>
|
</header>
|
||||||
|
<div>
|
||||||
|
<div class="black-hole wrap">
|
||||||
|
<div id="black-hole"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<main>
|
<main>
|
||||||
|
{{ block "expo" . }}{{ end }}
|
||||||
{{ block "main" . }}{{ end }}
|
{{ block "main" . }}{{ end }}
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
</footer>
|
</footer>
|
||||||
|
{{ if .Param "math" }}
|
||||||
|
{{ partialCached "math.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Store.Get "hasMermaid" }}
|
||||||
|
{{ partialCached "diagram.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Store.Get "hasAbc" }}
|
||||||
|
{{ partialCached "music-notation.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Store.Get "hasTab" }}
|
||||||
|
{{ partialCached "tablature-notation.html" . }}
|
||||||
|
{{ end }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user