X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fchi-teck%2Fdrupal-code-generator%2Ftemplates%2Fd8%2Fplugin%2Fviews%2Fstyle-template.twig;fp=vendor%2Fchi-teck%2Fdrupal-code-generator%2Ftemplates%2Fd8%2Fplugin%2Fviews%2Fstyle-template.twig;h=4860e08f25e4a8df629b2e28a07d4b19bc425fa9;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/plugin/views/style-template.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/plugin/views/style-template.twig new file mode 100644 index 000000000..4860e08f2 --- /dev/null +++ b/vendor/chi-teck/drupal-code-generator/templates/d8/plugin/views/style-template.twig @@ -0,0 +1,22 @@ +{{ '{#' }} +/** + * @file + * Default theme implementation for a view template to display a list of rows. + * + * Available variables: + * - attributes: HTML attributes for the container. + * - rows: A list of rows. + * - attributes: The row's HTML attributes. + * - content: The row's contents. + * - title: The title of this group of rows. May be empty. + * + * @see template_preprocess_views_style_{{ plugin_id }}() + */ +{{ '#}' }}{% verbatim %} + + + {% for row in rows %} + {{ row.content }} + {% endfor %} + +{% endverbatim %}