mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 10:51:36 +01:00
Generate base user website via template directory
This commit is contained in:
24
templates/blog/article.html
Normal file
24
templates/blog/article.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
{{logo}}
|
||||
</nav>
|
||||
<header>
|
||||
{{cover_image}}
|
||||
{{title}}
|
||||
{{publication_date}}
|
||||
</header>
|
||||
<main>
|
||||
{{main_content}}
|
||||
</main>
|
||||
<footer>
|
||||
{{additional_text}}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
22
templates/blog/index.html
Normal file
22
templates/blog/index.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
{{logo}}
|
||||
</nav>
|
||||
<header>
|
||||
{{title}}
|
||||
</header>
|
||||
<main>
|
||||
{{main_content}}
|
||||
</main>
|
||||
<footer>
|
||||
{{additional_text}}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
0
templates/blog/styles.css
Normal file
0
templates/blog/styles.css
Normal file
Reference in New Issue
Block a user