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 @@
# Confirm Me theme for Mautic
## This theme is managed centrally in https://github.com/mautic/mautic/blob/head/themes/confirmme 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-confirmme",
"description": "Mautic Confirmme Theme",
"type": "mautic-theme",
"keywords": ["mautic","theme"],
"extra": {
"install-directory-name": "confirmme"
},
"minimum-stability": "dev",
"require": {
"mautic/core-lib": "^7.0"
}
}

View File

@@ -0,0 +1,9 @@
{
"name": "Confirm Me",
"author": "Mautic team",
"authorUrl": "https://mautic.org",
"builder": ["grapesjsbuilder"],
"features": [
"email"
]
}

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,51 @@
<mjml>
<!-- MJML Template ConfirmMe v2.0 / last update 25.07.2022 / tested with Litmus -->
<mj-head>
<mj-title>{subject}</mj-title>
<!-- FONT IMPORT -->
<mj-font name="Open Sans" href="https://fonts.googleapis.com/css2family=Open+Sans:wght@300;400;600;700&display=swap" />
<mj-attributes>
<mj-all font-family="Open Sans, Arial, Helvetica, sans-serif">
</mj-all>
<mj-all margin="0">
</mj-all>
</mj-attributes>
<!-- CSS-STYLE -->
<mj-style inline="inline"> p, li {margin:0; padding:0;} </mj-style>
</mj-head>
<!-- BODY -->
<mj-body css-class="graylink">
<!-- SECTION HEADER -->
<mj-section background-color="#f0f0f0">
<mj-column width="400px">
<mj-text align="center" font-size="24px" line-height="1.5" color="#6f6f6f" font-weight="700" font-family="Open Sans, Arial">
<p>My Company</p>
</mj-text>
</mj-column>
</mj-section>
<!-- SECTION TEXT + BUTTON -->
<mj-section background-color="#fafafa" padding-top="40px" padding-bottom="40px">
<mj-column width="400px">
<mj-text align="center" font-size="20px" line-height="1.5" color="#6f6f6f" font-weight="700" font-family="Open Sans, Arial">
<p>Please confirm your subscription!</p>
</mj-text>
<mj-button background-color="#F45E43" align="center" font-size="15px" line-height="1.5" color="#ffffff" font-weight="500" font-family="Open Sans, Arial" href="#">Yes, subscribe me to the list </mj-button>
<mj-text align="center" font-size="16px" line-height="1.5" color="#6f6f6f" font-weight="500" font-family="Open Sans, Arial">
<p><br><br>If you received this email by mistake, simply delete it. You won't be subscribed if you don't click the confirmation link above.</p>
<br>
<p>For questions about this list, please contact: <a style="color:#6f6f6f !important; text-decoration:underline;" title="our e-mail" href="email@email.com">email@email.com</a></p>
</mj-text>
</mj-column>
</mj-section>
<mj-raw>
<!-- SECTION FOOTER -->
</mj-raw>
<mj-section background-color="#f0f0f0">
<mj-column width="400px">
<mj-text align="center" font-size="14px" line-height="1.5" color="#6f6f6f" font-weight="300" font-family="Open Sans, Arial">
<p>{brand=name} <br>11111 Beautiful City<br> 1212 Nice Street <br>Switzerland <br></p>
</mj-text>
</mj-column>
</mj-section>
</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 %}

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB