initial commit

This commit is contained in:
davidovski 2021-08-08 03:59:47 +01:00 committed by davidovski
commit e0afc82688
10 changed files with 161 additions and 0 deletions

13
templates/index.html Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h1>blog test</h1>
<div class="entries">
%entries%
</div>
</body>
</html>

10
templates/page.html Normal file
View file

@ -0,0 +1,10 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>%name%</title>
</head>
<body>
%content%
</body>
</html>

7
templates/summary.html Normal file
View file

@ -0,0 +1,7 @@
<div>
%content%
...
<a href="%url%">more</a>
<p>Date: %date%</p>
</div>