diff options
| author | Alif Radhitya <radhitya@noreply.codeberg.org> | 2026-06-25 17:53:21 +0200 |
|---|---|---|
| committer | Alif Radhitya <radhitya@noreply.codeberg.org> | 2026-06-25 17:53:21 +0200 |
| commit | e2ef625c779dffd6a580c0aa8d1d57dcf7abd7eb (patch) | |
| tree | 32c9da33a864c744fede28fe11654fc7bbd479bc /templates/post.html | |
| parent | 829b4e3cf1e59732d0166cbd24d31c93c4095977 (diff) | |
| parent | 85133d6dcaa7b02d67e243ce8df8324e46f4009f (diff) | |
Merge pull request 'farewell adieu rust' (#1) from exp into master
Reviewed-on: https://codeberg.org/radhitya/ahsi/pulls/1
Diffstat (limited to 'templates/post.html')
| -rw-r--r-- | templates/post.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..531ea63 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<title>{{ title }} — {{ site.title }}</title> +<link rel="stylesheet" href="{{ site.url }}style.css"> +</head> +<body> +<header> + <h1><a href="/">{{ site.title }}</a></h1> + <nav><a href="/search/">search</a></nav> +</header> +<main> + <article> + <h1>{{ title }}</h1> + <span class="meta">{{ date }}{% if draft %} ◈ draft{% endif %}</span> + {{ body }} + </article> + <p><a href="/">← back</a></p> +</main> +<footer><p>{{ site.author }}</p></footer> +</body> +</html> |
