diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-07 02:56:46 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-07 02:56:46 -0800 |
commit | 2f414df00e378728701e4061cdb3bebad5df798a (patch) | |
tree | 01a262f07dbfb3ba999ebb803dc33063262c6f9f /adenosine-pds/templates/base.html | |
parent | 73bb6f114d3fe9233af4f9ab91c8fc2b09b3c6c0 (diff) | |
download | adenosine-2f414df00e378728701e4061cdb3bebad5df798a.tar.gz adenosine-2f414df00e378728701e4061cdb3bebad5df798a.zip |
pds: initial pass at crude web interface
Diffstat (limited to 'adenosine-pds/templates/base.html')
-rw-r--r-- | adenosine-pds/templates/base.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/adenosine-pds/templates/base.html b/adenosine-pds/templates/base.html new file mode 100644 index 0000000..0ae2061 --- /dev/null +++ b/adenosine-pds/templates/base.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="/static/adenosine.css" type="text/css"> + <link rel="icon" href="/static/favicon.png" /> + <title>{% block title -%}adenosine{%- endblock %}</title> + {% block head %}{% endblock %} + </head> + <body> + <nav> + <a href="/"> + <h3> + <img src="/static/logo_128.png" width="64" height="64">{{ domain }} + </h3> + </a> + </nav> + <hr> + <main> + {% block main %}{% endblock %} + </main> + <hr> + <footer> + <nav> + <a href="/">home</a> - + <a href="/about">about</a> - + <a href="https://gitlab.com/bnewbold/adenosine">source code</a> + </nav> + </footer> + </body> +</html> |