mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 20:20:41 +02:00
added blog entry template
This commit is contained in:
24
templates/blog_entry.html
Normal file
24
templates/blog_entry.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{config.lang}}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{metadata.title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>{{metadata.title}}</h1>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<article>
|
||||
{{content}}
|
||||
</article>
|
||||
</main>
|
||||
|
||||
|
||||
<footer>
|
||||
{{footer}}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user