23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Private.coffee</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div style="font-family: Arial, sans-serif; background-color: #f2f2f2; color: #333; line-height: 1.6; padding: 20px; max-width: 600px; margin: auto;">
|
||
|
<h2 style="color: #333;">Welcome to Private.coffee</h2>
|
||
|
<p>Thanks for using our Element instance. Private.coffee is a collection of services that respect your privacy, here are some others:</p>
|
||
|
<ul style="list-style: none; padding: 0;">
|
||
|
{% for service in services.services %}
|
||
|
{% if not service.exclude_from_simple %}
|
||
|
<li style="padding: 8px 0;"><a style="color: #1a5dab; text-decoration: none;" href="{{ service.url }}">{{ service.name }}</a> - {{ service.short_description }}</li>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<p>For hosting inquiries for privacy-related, social, or wholesome projects, <a href="mailto:support@private.coffee" style="color: #1a5dab; text-decoration: none;">get in touch</a>!</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|