Initial commit: CloudOps infrastructure platform

This commit is contained in:
root
2026-04-09 19:58:57 +02:00
commit 1166a52f26
7762 changed files with 839452 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% if page is defined %}
<title>{pagetitle}</title>
<meta name="description" content="{pagemetadescription}">
{% endif %}
{% block stylesheets %}{% endblock %}
{{ outputHeadDeclarations() }}
</head>
<body>
{{ outputScripts('bodyOpen') }}
{% block content %}{% endblock %}
{{ outputScripts('bodyClose') }}
</body>
</html>

View File

@@ -0,0 +1,22 @@
<mjml>
<mj-body width="100%">
<mj-raw>
<!-- Company Header -->
<mj-text>Hi {contactfield=firstname},
<br>This is the personal email template.
<br>
<br>The purpose of this template is to look as "normal" as possible.
<br>Many companies try to stand out with their newsletter.
<br>This template is different.
<br>
<br>As a "personal brand" it makes sense to look like a regular person sending regular emails.
<br>Use this template to do so!
<br>
<br>{signature}
<br>
<br>
<span style="color: #838383;font-size:10px;">{unsubscribe_text}</span>
</mj-text>
</mj-raw>
</mj-body>
</mjml>

View File

@@ -0,0 +1,12 @@
{% extends "@themes/"~template~"/html/base.html.twig" %}
{% block stylesheets %}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css" />
{% endblock %}
{% block content %}
<div>
{{ message|raw }}
{% if content is defined %}
<div>{{ content|raw }}</div>
{% endif %}
</div>
{% endblock %}