layer7-web-2/templates/post.html
2026-08-13 01:03:34 +09:00

14 lines
324 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ post_id }}</title>
</head>
<body>
<h1>{{ post.title }}</h1>
<p>{{ post_id }}</p>
<p>{{ post.content }}</p>
<a href="/">Back to home</a>
</body>
</html>