diff --git a/.gitignore b/.gitignore index b68caadc..1739a98e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ static/fonts/* .webassets-cache scss/assets .pytest_cache/ +.venv/ diff --git a/static/img/foo.png b/static/img/foo.png new file mode 100644 index 00000000..64a689a0 Binary files /dev/null and b/static/img/foo.png differ diff --git a/templates/base.html.to b/templates/base.html.to index b50fb5c0..bb6e46ac 100644 --- a/templates/base.html.to +++ b/templates/base.html.to @@ -4,24 +4,18 @@ {% block title %}JEDI{% end %} - {% for url in assets['css'].urls() %} + {% for url in assets['css'].urls() %} - {% end %} + {% end %} - -
- {% block content %} - these are not the droids you are looking for - {% end %} + + {% include 'header.html.to' %} + +
+ {% block content %} + these are not the droids you are looking for + {% end %}
diff --git a/templates/header.html.to b/templates/header.html.to new file mode 100644 index 00000000..ca0bd405 --- /dev/null +++ b/templates/header.html.to @@ -0,0 +1,9 @@ + \ No newline at end of file