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 `/themes/mono` of the [main repository](https://github.com/mautic/mautic) where we'll review and provide feedback. If this is your first Mautic contribution, be sure to read the [contributing guide](https://mau.tc/create-pr) 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,10 @@
{
"name": "mautic/theme-mono",
"description": "Mautic Mono Theme",
"type": "mautic-theme",
"keywords": ["mautic","theme"],
"minimum-stability": "dev",
"require": {
"mautic/core-lib": ">=7.0"
}
}

View File

@@ -0,0 +1,7 @@
{
"name": "Mono",
"author": "Dropsolid",
"authorUrl": "https://dropsolid.io",
"builder": ["grapesjsbuilder"],
"features": ["page"]
}

View File

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

View File

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

View File

@@ -0,0 +1,184 @@
{% extends "@themes/"~template~"/html/base.html.twig" %}
{% block content %}
<div class="wrapper">
<div class="wrapper--content">
<img class="logo--medium" src="{{ getOverridableUrl('images/placeholder-logo.png') }}">
<div class="h3">
<p>Confirm attendance</p>
</div>
<div class="subtitle subtitle--header">
<p>Fill your information to check in for the event</p>
</div>
<div style="padding: 10px;">
<p>{form=INSERT_FORM_ID_HERE}</p>
</div>
<div class="subtitle subtitle--footer">
<p>By submitting this form, you agree to our <a href="https://">privacy policy</a> and consent to the processing of your personal data. You can withdraw your consent at any time.</p>
</div>
</div>
</div>
<style>
@font-face {
font-family: 'Syne';
src: url("{{ getAssetUrl('themes/'~template~'/assets/syne-v22-latin-500.woff2', null, null, true) }}") format('woff2');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Syne';
src: url("{{ getAssetUrl('themes/'~template~'/assets/syne-v22-latin-700.woff2', null, null, true) }}") format('woff2');
font-weight: 700;
font-style: normal;
font-display: swap;
}
* {
font-family: 'Syne', sans-serif;
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
}
p {
margin: 0;
padding: 0;
line-height: 1.4em;
}
.wrapper {
width: 100%;
max-width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 10px;
gap: 20px;
flex-wrap: wrap;
background-color: bisque;
}
.wrapper--content {
width: 100%;
max-width: 100%;
height: 100%;
border-radius: {{ getRoundedCorners('lg') }}px;
background-color: #F7F1ED;
padding: 65px 15px;
display: flex;
flex-direction: column;
box-sizing: border-box;
font-size: 12px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.sidebar--right {
display: flex;
flex-direction: column;
justify-content: flex-end;
width: 100%;
max-width: 100%;
min-width: 290px;
height: auto;
min-height: 200px;
margin: 0;
padding: 100px 15px;
background-repeat: repeat;
background-position: center center;
background-attachment: scroll;
background-size: cover;
background-image: url({{ getAssetUrl('themes/'~template~'/assets/mymind-3dmu0gu23uc-unsplash.jpg', null, null, true) }});
border-radius: 44px 0px 44px 0px;
}
.wrapper--content .mauticform_wrapper {
margin: 0;
}
.wrapper--content .mauticform-button-wrapper {
text-align: center;
}
.h3 {
padding: 0 10px;
margin-top: 25px;
margin-bottom: 15px;
display: flex;
font-size: 27px;
max-width: fit-content;
font-weight: bold;
text-align: center;
align-self: center;
}
.h3 p {
line-height: 1em;
}
.subtitle {
padding: 0 10px;
font-size: 13px;
color: #525252;
margin: 0;
display: flex;
width: 100%;
max-width: fit-content;
align-self: center;
}
.subtitle.subtitle--header {
margin-bottom: 40px;
}
.subtitle.subtitle--footer {
margin-top: 60px;
}
.logo--medium {
padding: 0 10px;
height: 50px;
width: fit-content;
align-self: center;
}
/* Media Queries for Larger Screens */
/* Tablet and Up */
@media (min-width: 768px) {
.wrapper {
flex-direction: row;
flex-wrap: nowrap;
gap: 100px;
padding: 40px;
}
.wrapper--content {
width: 30%;
min-width: 420px;
max-width: 480px;
padding: 50px 35px;
}
.sidebar--right {
width: 50%;
padding: 50px;
align-self: stretch;
}
.h3 {
font-size: 37px;
}
.subtitle {
max-width: fit-content;
}
}
</style>
{% endblock %}

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB