15 lines
694 B
HTML
15 lines
694 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container mx-auto px-4 py-6">
|
|
<div class="flex flex-col">
|
|
<div class="w-full">
|
|
<h2 class="text-2xl font-bold mb-4">Keine Ergebnisse</h2>
|
|
<div class="bg-blue-100 border border-blue-400 text-blue-700 px-4 py-3 rounded relative">
|
|
<strong class="font-bold">Keine Telefonzeiten mit gegebenem Standort und Distanz gefunden</strong>
|
|
<span class="block sm:inline"> <a href="/" class="text-blue-500 underline">Zurück zur Suche</a>, um es erneut zu versuchen</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |