diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-19 15:57:06 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-19 15:57:06 +0000 |
commit | 9d76a3c52b8310726ec09e0262813f0438c21df6 (patch) | |
tree | 4acf47dce6c3aa75f8ad7c5cb56fe6486c2d64a7 /ctrack/templates/account/base.html |
init commit - from cookiecutter
Diffstat (limited to '')
-rw-r--r-- | ctrack/templates/account/base.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ctrack/templates/account/base.html b/ctrack/templates/account/base.html new file mode 100644 index 0000000..8e1f260 --- /dev/null +++ b/ctrack/templates/account/base.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% block title %}{% block head_title %}{% endblock head_title %}{% endblock title %} + +{% block content %} +<div class="row"> + <div class="col-md-6 offset-md-3"> + {% block inner %}{% endblock %} + </div> +</div> +{% endblock %} |