mirror of
https://github.com/tcsenpai/obsidiangarden_netlify.git
synced 2025-06-07 05:05:20 +00:00
16 lines
462 B
Plaintext
16 lines
462 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{ collections.gardenEntry[0].fileSlug }}</title>
|
|
{%include "components/pageheader.njk"%}
|
|
</head>
|
|
<body class="theme-{{meta.baseTheme}} markdown-preview-view">
|
|
{%include "components/notegrowthhistory.njk"%}
|
|
<div class="content">
|
|
{%- for garden in collections.gardenEntry -%}
|
|
{{garden.templateContent | link | highlight | safe }}
|
|
{%- endfor -%}
|
|
</div>
|
|
</body>
|
|
</html>
|