Initial commit
This commit is contained in:
commit
7e3b4d9cbc
8 changed files with 157 additions and 0 deletions
20
templates/page.html
Normal file
20
templates/page.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="stylesheet" href=/main.css>
|
||||
<title>🐸 CyberFrog</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1 class="title">Cyberfrog blog</h1>
|
||||
<main id="main-content">
|
||||
<h2 id="blog-title">{{ page.title }}</h2>
|
||||
<h4 class="blog-post-date">Published: {{ page.date }} || Last updated: {{ page.updated }}</h4>
|
||||
<div class="blog-posts">
|
||||
{% block content %} {% endblock %}
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue