From 91331e9dd6ff8c9f296f8efeea5ea1f29ad71f4b Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Thu, 14 Nov 2024 16:51:26 +0100 Subject: [PATCH] Add logo to footer and microdata --- templates/footer.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/templates/footer.html b/templates/footer.html index 65c9636..78d3fd8 100644 --- a/templates/footer.html +++ b/templates/footer.html @@ -2,8 +2,11 @@ <meta property="rdfs:seeAlso" href="http://www.wikidata.org/entity/Q122507357" /> <div class="column is-one-fourth"> <p class="title is-5" property="schema:name">Teckids e.V.</p> + <figure class="image"> + <img src="{{ get_url(path="artwork/logo-teckids.svg") }}" alt="Teckids-Logo" property="schema:logo" /> + </figure> <address property="schema:address" typeof="schema:PostalAddress"> - <span property="schema:streetAddress">{{config.extra.footer.address.street|safe}}</span><br/> + <span property="schema:streetAddress">{{config.extra.footer.address.street|safe}}</span> · <span property="schema:postalCode">{{config.extra.footer.address.postal_code|safe}}</span> <span property="schema:addressLocality">{{config.extra.footer.address.city|safe}}</span> </address> @@ -20,7 +23,7 @@ <figure class="image"> <meta property="schema:name" content="{{sponsor.alt}}" /> <a property="schema:url" href="{{sponsor.link}}"> - <img src="/images/sponsoren/{{sponsor.logo}}" alt="{{sponsor.alt}}" /> + <img src="/images/sponsoren/{{sponsor.logo}}" alt="{{sponsor.alt}}" property="schema:logo" /> </a> </figure> </div> -- GitLab