diff --git a/base.j2.html b/base.j2.html index cc391a4..9f379e3 100644 --- a/base.j2.html +++ b/base.j2.html @@ -6,6 +6,7 @@ + {% block head %}{% endblock head %}

{% block titleheader %}{{ self.title() }}{% endblock titleheader %}

{% block header %} diff --git a/index.j2.html b/index.j2.html index 49eea63..5f6cbca 100644 --- a/index.j2.html +++ b/index.j2.html @@ -1,6 +1,9 @@ {% extends 'base.j2.html' %} +{% block head %}{% endblock %} + {% block title %}Freak University{% endblock title%} +{% block titleheader %} {{ self.title() }}{% endblock titleheader %} {# the home page does not need a link back to home #} {% block header %}{% endblock header %} diff --git a/static/css/index.css b/static/css/index.css new file mode 100644 index 0000000..2927305 --- /dev/null +++ b/static/css/index.css @@ -0,0 +1,5 @@ +img { + max-width: 1em; + object-fit: contain; + vertical-align: middle; +} \ No newline at end of file