Files
evo-sync/web/templates/message.html

13 lines
291 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ title }} — EvoSync{% endblock %}
{% block content %}
<div class="message-card">
<h1>{{ title }}</h1>
<p>{{ message }}</p>
{% if link %}
<p><a href="{{ link }}">{{ link_text }}</a></p>
{% endif %}
</div>
{% endblock %}