Fix #47: add mock http server for testing w/o hitting prod site

This commit is contained in:
2024-01-22 18:25:02 +01:00
parent a94ef63a90
commit ec8f0fcac9
11 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="de" >
<head>
<title>Ads</title>
</head>
<body>
{% for ad in ads %}
<h2 class="text-module-begin">
<a class="ellipsis"
href="/s-anzeige/{{ ad.slug }}/{{ ad.id }}">{{ ad.title }}</a>
</h2>
{% endfor %}
</body>
</html>