index : livejrnl-rs-templates.git

ascending towards madness

<!DOCTYPE html>
<html lang="{{ config.site_language }}">
<head>
	<title>{{ config.site_name }}</title>
</head>
<body>
	<main>
		{% include 'partials/header.html.template' %}

		<section>
			<section>
				<hr />
				<p> There are <strong>{{ journal.entries|length }}</strong> entries to read.</p>
				<p><strong>ctrl+f to search by tag: </strong>
					<em>{{ journal.tags|extract_tags(", ", "none") }}</em>
				</p>
				<hr />
			</section>
			{% include 'partials/feeds/entry_list.html.template' %}
		</section>
		
		<section>
			<hr />
			<p><strong><em>You've reached the end.</em></strong></p>
			<p><a href="#top">Click to go back to the top</a>.</p>
			<hr />
		</section>
		<footer id="copyright">
			{{ include_file(config.template, "content/copyright.md")|markdown }}
		</footer>
	</main>
</body>
</html>