diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2022-12-16 17:45:03 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2022-12-16 17:45:03 -0600 |
commit | 7e49db5ddefe8c515b5f3931a5c701efaac33d91 (patch) | |
tree | d7d1efda44837a466fe079266efda90021812399 /plt/base.html | |
parent | 3112a76dac594fe715b59e53c399b0dec5b53193 (diff) |
change structure for new pyssg version
Diffstat (limited to 'plt/base.html')
-rw-r--r-- | plt/base.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/plt/base.html b/plt/base.html new file mode 100644 index 0000000..d5cb77b --- /dev/null +++ b/plt/base.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html class="theme-dark" lang="{%block html_lang%}{%endblock html_lang%}" + prefix="og: https://ogp.me/ns#"> + <head> + <base href="{{config['url']['static']}}"> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="icon" href="images/icons/favicon.ico"> + {%block head_title%}{%endblock head_title%} + {%block head_description%}{%endblock head_description%} + {%block head_rss%}{%endblock head_rss%} + <!-- general style --> + <link rel="stylesheet" type="text/css" href="css/style.css"> + <link rel="stylesheet" type="text/css" href="fork-awesome/css/fork-awesome.min.css"> + <link rel="stylesheet" type="text/css" href="font-awesome/css/all.min.css"> + <!-- theme related --> + <script type="text/javascript" src="scripts/theme.js"></script> + <link id="theme-css" rel="stylesheet" type="text/css" href="css/theme.css"> + <!-- extra --> + {%block head_extra%}{%endblock head_extra%} + <!-- og meta --> + {%block head_og%}{%endblock head_og%} + </head> + + <body> + <header> + {%block body_header%}{%endblock body_header%} + </header> + + <main> + {%block body_content%}{%endblock body_content%} + </main> + + <footer> + {%block body_footer%}{%endblock body_footer%} + </footer> + </body> +</html>
\ No newline at end of file |