*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit 67fe258e authored by Moser, Maximilian's avatar Moser, Maximilian
Browse files

Add tombstone page for Derek

parent ab283f5a
No related branches found
No related tags found
1 merge request!167Add tombstone page
invenio_theme_tuw/theme/static/images/tuwstones/dmolnar.png

52.1 KiB

{# -*- coding: utf-8 -*-
Copyright (C) 2025 TU Wien.
Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
#}
{%- extends config.BASE_TEMPLATE %}
{%- block header %}
<!-- block google's indexing: https://developers.google.com/search/docs/advanced/crawling/block-indexing -->
<meta name="robots" content="noindex" />
{%- endblock header %}
{%- block page_body %}
<article class="tuwstone">
<h1>Derek Molnar</h1>
<img src="{{ url_for('static', filename='images/tuwstones/dmolnar.png') }}" alt="Derek Molnar" />
<section>
<h2>
Manager of communities and dishwashers
</h2>
<p>
&#128004; 2023-11-01 &#8212; 2025-01-31 &#129413;
</p>
<p>
A fine fellow and project manager extraordinaire who traveled more of Europe than most Europeans.
Intelligence reports state that he enjoyed craft beer and Taylor Swift, although confidence levels vary.
</p>
<p>
He made Damap great again.
</p>
</section>
</article>
{%- endblock page_body %}
{%- block css %}
{{ super() }}
{{ webpack['invenio-theme-tuw-tuwstones.css'] }}
{%- endblock css %}
......@@ -283,6 +283,11 @@ def create_blueprint(app):
"""Tombstone page for Florian Wörister."""
return render_template("invenio_theme_tuw/tuwstones/florian_woerister.html")
@blueprint.route("/tuwstones/derek.molnar")
def tuw_tombstone_derek():
"""Tombstone page for Derek Molnar."""
return render_template("invenio_theme_tuw/tuwstones/derek_molnar.html")
# register filters for showing uploaders
blueprint.add_app_template_filter(resolve_record)
blueprint.add_app_template_filter(resolve_user_owner)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment