Add upstream plugins

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-10-25 22:42:20 +02:00
parent 5d3c2ec184
commit 290736650a
1186 changed files with 302577 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<div class="ai1ec-form-group">
<label for="{{ id }}" class="ai1ec-col-sm-4 ai1ec-col-xs-12 ai1ec-control-label">
{{ label }}
</label>
{% block variable %}{% endblock %}
</div>

View File

@@ -0,0 +1,10 @@
{% extends "bootstrap_tabs.twig" %}
{% block extra_html %}
{% from 'form-elements/input.twig' import button %}
<div class="ai1ec-text-right">
<div class="ai1ec-btn-toolbar">
{{ button( submit.id, submit.id, submit.value, 'submit', submit.args ) }}
{{ button( reset.id, reset.id, reset.value, 'submit', reset.args ) }}
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,18 @@
{% extends "theme-options/base_option.twig" %}
{% block variable %}
{% spaceless %}
<div class="ai1ec-col-sm-6 ai1ec-col-xs-9">
<div class="ai1ec-input-group color colorpickers"
data-color="{{ value }}"
data-color-format="{{ format }}">
<input type="text" id="{{ id }}" name="{{ id }}" class="ai1ec-form-control"
{{ readonly }} value="{{ value }}">
<span class="ai1ec-input-group-addon">
<i style="background-color: {{ value }}"></i>
</span>
</div>
</div>
{% endspaceless %}
{% endblock %}

View File

@@ -0,0 +1,9 @@
{% extends "theme-options/base_option.twig" %}
{% from 'form-elements/select.twig' import select %}
{% from 'form-elements/input.twig' import input %}
{% block variable %}
<div class="ai1ec-col-sm-6 ai1ec-col-xs-9">
{{ select( select.id, select.id, select.args, select.options ) }}
{{ input( input.id, input.id, input.value, 'text', input.args ) }}
</div>
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends "base_page.twig" %}
{% block layout %}
<div class="post-box-container left-side timely">
{{ do_meta_boxes( metabox.screen, metabox.action, metabox.object ) }}
</div>
{% endblock %}

View File

@@ -0,0 +1,7 @@
{% extends "theme-options/base_option.twig" %}
{% from 'form-elements/input.twig' import input %}
{% block variable %}
<div class="ai1ec-col-sm-6 ai1ec-col-xs-9">
{{ input( id, id, value, 'text', args ) }}
</div>
{% endblock %}