{% extends "sprout-base-import/_layouts/base" %} {% import "_includes/forms" as forms %} {% set title = 'Themes'|t('sprout-import') %} {% set themes = craft.sproutImport.getSproutImportThemes() %} {% block content %}
{% for theme in themes %}
{{ theme.plugin.name }}
{{ theme.getName() }}

{{ theme.getDescription() }}

{{ csrfInput() }} {{ redirectInput("sprout-import/themes") }}
{% endfor %}
{% endblock %} {% block details %}

{{ "Themes"|t('sprout-import') }} {{ "beta"|t('sprout-import') }}

{{ 'Themes allow you to reuse content architecture and templates.'|t('sprout-import') }}

{{ "Schema"|t }}

{{ 'Schema are defined in Craft import JSON format. See the documentation for supported Elements and Settings and import behavior.'|t('sprout-import') }}

{{ "Templates"|t }}

{{ 'Templates are defined in Theme integration and can be any number of nested folders and templates. Your Theme /templates folder will be copied to your Craft /templates folder and overwrite any existing templates of the same name.'|t('sprout-import') }}



{{ "Getting Started"|t }}

{{ "See working Themes in the following Sprout plugins:"|t('sprout-import') }}

{% endblock %} {% css %} .theme-cards { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; grid-gap: 20px; } .theme-card { border: 1px solid #e3e5e8; border-radius: 5px; padding: 20px; } .theme-card .body { margin-top: 8px; } @media (max-width: 600px) { .theme-cards { grid-template-columns: 1fr; grid-row-gap: 10px; } } {% endcss %}