diff options
| author | Botond Hende <contact@wazul.moe> | 2026-05-01 12:40:06 +0200 |
|---|---|---|
| committer | Botond Hende <contact@wazul.moe> | 2026-05-01 12:40:06 +0200 |
| commit | db2f67bdd0902048a5d3faa9fe46a71c4aaa4bb3 (patch) | |
| tree | aef73c69bf9e5c34e00e6c7329979b3655c6b069 /main | |
| parent | 64a4603ec2ca7b77e7331955f8c9edb4d5ae6b87 (diff) | |
root domain content generation wip
Diffstat (limited to 'main')
| -rw-r--r-- | main/templates/main.html.j2 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/main/templates/main.html.j2 b/main/templates/main.html.j2 new file mode 100644 index 0000000..d72558f --- /dev/null +++ b/main/templates/main.html.j2 @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html dir="ltr" lang="en"> +<head> + <meta charset="utf-8"/> + <title>{{ title }}</title> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <meta property="og:title" content="{{ title }}" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="{{ url }}" /> + <link rel="stylesheet" href="{{ site.assets_path_static }}/css/bootstrap-grid.min.css" /> +</head> +<body> +<p>Hello world.</p> +</body> +<footer> +</footer> +</html> |
