From 4cd7b8b1182c1b87ca502814d2bc6bb8605102c5 Mon Sep 17 00:00:00 2001 From: Kay Faraday Date: Tue, 13 Aug 2024 14:13:37 -0700 Subject: [PATCH] add icon to header of index page --- base.j2.html | 1 + index.j2.html | 3 +++ static/css/index.css | 5 +++++ 3 files changed, 9 insertions(+) create mode 100644 static/css/index.css 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