1
0
Files
medical-notes/wip/templates/base.html
Johan Dahlin b6e8a73fff
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 1m18s
vault backup: 2025-12-06 00:40:26
2025-12-06 00:40:26 +01:00

15 lines
227 B
HTML

<html lang="en">
<head>
<meta charset="utf-8">
<style>
p {
white-space: pre-wrap;
}
</style>
<title>{{note.title}}</title>
</head>
<body>
<h1>{{note.title}}</h1>
{{note.content | markdown}}
</body>
</html>