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,26 @@
# Workflow name:
name: Close Pull Requests
# Workflow triggers:
on:
pull_request_target:
types: [opened]
# Workflow jobs:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: superbrothers/close-pull-request@v3
with:
comment: |
Thank you for submitting a pull request. :raised_hands:
We greatly appreciate your willingness to submit a contribution. However, we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/mautic/mautic).
We kindly request that you submit this pull request against the [respective directory](https://github.com/mautic/mautic/blob/head/plugins/GrapesJsBuilderBundle) of the main repository where we'll review and provide feedback. If this is your first Mautic contribution, be sure to read the [contributing guide](https://github.com/mautic/mautic/blob/4.x/.github/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions.
Thank you again, and we look forward to receiving your contribution! :smiley:
Best,
The Mautic team

View File

@@ -0,0 +1,5 @@
# Blank theme for Mautic
## This theme is managed centrally in https://github.com/mautic/mautic/blob/head/themes/blank and this is a read-only mirror repository.
**📣 Please make PRs and issues against Mautic Core, not here!**

View File

@@ -0,0 +1,13 @@
{
"name": "mautic/theme-blank",
"description": "Mautic Blank Theme",
"type": "mautic-theme",
"keywords": ["mautic","theme"],
"extra": {
"install-directory-name": "blank"
},
"minimum-stability": "dev",
"require": {
"mautic/core-lib": "^7.0"
}
}

View File

@@ -0,0 +1,7 @@
{
"name": "Blank",
"author": "Mautic team",
"authorUrl": "https://mautic.org",
"builder": ["legacy", "grapesjsbuilder"],
"features": ["page", "email", "form"]
}

View File

@@ -0,0 +1 @@
{% extends '@MauticCore/Theme/base.html.twig' %}

View File

@@ -0,0 +1,44 @@
<mjml>
<mj-head>
<mj-attributes>
</mj-attributes>
<!-- CSS-STYLE -->
<mj-style inline="inline"> p, li {margin:0 !important; padding:0; line-height:1.4em; font-family:'Open Sans', Helvetica, Arial, sans-serif;}
</mj-style>
</mj-head>
<!-- BODY -->
<mj-body>
<mj-section background-color="#ffffff">
<mj-column width="550px">
<mj-spacer>
</mj-spacer>
<mj-spacer>
</mj-spacer>
<mj-text font-size="28px" font-weight="700">
<p>Hello World!
</p>
</mj-text>
<mj-text font-size="14px">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid officia consequatur placeat reprehenderit excepturi, tempore, id quos quaerat ab fuga.
</p>
<p>
<br data-cke-filler="true">
</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore, voluptate.
</p>
<p>
<br data-cke-filler="true">
</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dignissimos alias rerum nemo ducimus modi perspiciatis.
</p>
</mj-text>
<mj-spacer></mj-spacer>
<mj-text font-size="11px" color="#6d6d6d">
<p>{unsubscribe_text} | {webview_text}</p>
</mj-text>
<mj-spacer></mj-spacer>
<mj-spacer></mj-spacer>
</mj-column>
</mj-section>
</mj-body>
</mjml>

View File

@@ -0,0 +1,16 @@
{% extends "@themes/"~template~"/html/base.html.twig" %}
{% block content %}
{% if message is defined %}
<div>
<p>{{ message|raw }}</p>
</div>
{% endif %}
<div>
{% if header is defined %}
<h4>{{ header }}</h4>
{% endif %}
{{ content|raw }}
</div>
{% endblock %}

View File

@@ -0,0 +1 @@
{% extends '@MauticCore/Theme/message.html.twig' %}

View File

@@ -0,0 +1,27 @@
{% extends "@themes/"~template~"/html/base.html.twig" %}
{% block content %}
<div data-section-wrapper="1">
<center>
<table data-section="1" style="width: 600;" width="600" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>
<div data-slot-container="1" style="min-height: 30px">
<div data-slot="text">
<br>
<h2>Hello there!</h2>
<br>
We haven't heard from you for a while...
<br>
<br>
<br>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</center>
</div>
{% endblock %}

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB