Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_views / templates / config_translation_manage_form_element.html.twig
diff --git a/web/modules/contrib/metatag/metatag_views/templates/config_translation_manage_form_element.html.twig b/web/modules/contrib/metatag/metatag_views/templates/config_translation_manage_form_element.html.twig
new file mode 100644 (file)
index 0000000..4c1459b
--- /dev/null
@@ -0,0 +1,23 @@
+{#
+/**
+ * @file
+ * Default theme implementation for a form element in config_translation.
+ *
+ * Available variables:
+ * - element: Array that represents the element shown in the form.
+ *   - source: The source of the translation.
+ *   - translation: The translation for the target language.
+ *
+ * @see template_preprocess()
+ *
+ * @ingroup themeable
+ */
+#}
+<div class="translation-set clearfix">
+  <div class="layout-column layout-column--half translation-set__source">
+    {{ element.source }}
+  </div>
+  <div class="layout-column layout-column--half translation-set__translated">
+    {{ element.translation }}
+  </div>
+</div>