December 2016
Beginner to intermediate
1005 pages
21h 54m
English
Unlike most of Drupal's templates, Views do not provide a file name suggestion for overriding Twig templates. So how do we know exactly what to name our template? View templates can be created in a variety of ways, but the easiest way to remember this is by following this rule:
[base template name]--[view machine name].html.twig
So in the case of our Categories view, will want to create a new Twig template with the name views-view-unformatted--categories.html.twig.
Begin by navigating to the core/modules/view/templates folder and following these remaining steps:
views-view-unformatted.html.twig and place it into our theme/octo/templates folder.views-view-unformatted.html.twig to views-view-unformatted--categories.html.twig ...Read now
Unlock full access