init
This commit is contained in:
commit
a59ac1f3cb
14 changed files with 434 additions and 0 deletions
14
templates/post.html
Normal file
14
templates/post.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<!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>
|
||||
Loading…
Reference in a new issue