diff options
-rw-r--r-- | post.esh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/post.esh b/post.esh new file mode 100644 index 0000000..75c7e02 --- /dev/null +++ b/post.esh | |||
@@ -0,0 +1,26 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html lang="en"> | ||
3 | <head> | ||
4 | <link rel="stylesheet" href="/style.css"> | ||
5 | <meta charset="UTF-8"> | ||
6 | <meta name="viewport" content="initial-scale=1"> | ||
7 | <meta content="#ffffff" name="theme-color"> | ||
8 | <meta name="HandheldFriendly" content="true"> | ||
9 | <meta property="og:title" content="nerdypepper"> | ||
10 | <meta property="og:type" content="website"> | ||
11 | <meta property="og:description" content="a static site {for, by, about} me "> | ||
12 | <meta property="og:url" content="https://nerdypepper.tech"> | ||
13 | <body> | ||
14 | <div class="post posts"> | ||
15 | <div class="date"><%= $date%></div> | ||
16 | <span style="font-size: 2rem; font-weight: 600"> | ||
17 | <%= $title%> | ||
18 | </span> | ||
19 | <div class="post-text"> | ||
20 | <% lowdown "$file"%> | ||
21 | </div> | ||
22 | <a href="/index.html" class="post-end-link">‹ Back</a> | ||
23 | <div class="separator"></div> | ||
24 | </div> | ||
25 | </body> | ||
26 | </html> | ||