diff options
| author | Botond Hende <contact@wazul.moe> | 2026-05-01 21:28:35 +0200 |
|---|---|---|
| committer | Botond Hende <contact@wazul.moe> | 2026-05-01 21:28:35 +0200 |
| commit | 32cb783aa8675d275cb9136eeadffa8294d40b89 (patch) | |
| tree | 350b570140efd5672c2823673307cdda7ed82e67 /global/templates/base.html.j2 | |
| parent | 41ebb83adbb462c28ba1d686a80f273265987971 (diff) | |
created global template and refactored blog templates
Diffstat (limited to 'global/templates/base.html.j2')
| -rw-r--r-- | global/templates/base.html.j2 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/global/templates/base.html.j2 b/global/templates/base.html.j2 new file mode 100644 index 0000000..61826d9 --- /dev/null +++ b/global/templates/base.html.j2 @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html dir="ltr" lang="en"> +<head> + <meta charset="utf-8"/> + <title>{% block page_title %}{% endblock %}</title> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <meta property="og:title" content="{% block og_page_title %}{% endblock %}" /> + <meta property="og:type" content="{% block og_type %}{% endblock %}" /> + <meta property="og:url" content="{{ url }}" /> + {% block head_extra %}<link rel="stylesheet" href="{{ site.assets_path_static }}/css/bootstrap-grid.min.css" />{% endblock %} +</head> +<body> +{% block body %}{% endblock %} +</body> +<footer> + {% block footer %}{% endblock %} +</footer> +</html> |
