-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost-template.html
More file actions
44 lines (40 loc) · 1.22 KB
/
post-template.html
File metadata and controls
44 lines (40 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>POST_TITLE - Just-in-Time Learning</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<div class="container">
<h1>Just-in-Time Learning</h1>
<p class="subtitle">Curious. Simplicity ⟹ Reliability. V ↑ → Q ↓</p>
<nav>
<a href="/" class="back-link">← Back to Home</a>
</nav>
</div>
</header>
<main class="post-container">
<article class="post">
<header class="post-header">
<h1>POST_TITLE</h1>
<span class="post-date">POST_DATE</span>
<div class="post-tags">
<!-- POST_TAGS will be inserted here -->
</div>
</header>
<div class="post-content">
<!-- POST_CONTENT will be inserted here -->
</div>
</article>
</main>
<footer>
<div class="container">
<p>Created with <a href="https://github.com/ai-mindset/init.vim">Neovim</a>, using <a href="https://ai-mindset.github.io/dialogue-engineering">AI</a> to help process and curate content ✨</p>
</div>
</footer>
<script src="/script.js"></script>
</body>
</html>