A Craft plugin to provide twig filters to help with template building.
Please note: As of version 2.0, I've removed the Query Strings functionality from template tools. Please use my Query Strings plugin.
Easily add a class, ID, or other attribute to the first element of a specific type. Useful for adding a class to the first paragraph.
{{ content|firstTag('classname') }}
By default this adds a class name to the first P tag.
Add a .
or #
to set an ID or Class.
{{ content|firstTag('#idname') }}
Sets a class name or ID to the first tag of a type specified by you. e.g.
{{ content|firstTag('classname','h2') }}
Add a .
or #
to set an ID or Class.
Sets a value for a specified attribute to the first tag of a type specified by you.
{{ content|firstTag('slider1','img','data-slider') }}
{{ content|firstTag('lead','h2','data-heading') }}
Retrieve the first paragraph from content.
{{ content|getFirstParagraph }}
Add a flag of true to remove the P tags from the content.
{{ content|getFirstParagraph(true) }}
This wraps any lines in multiline text in a tag of your choosing.
{{ content|wrapLinesInTag('span') }}
Removed Query Strings functionality. Please use my Query Strings plugin.
The Preserve Query String filter allows you to add |preserveQueryStrings
to any URL output in twig, and it will keep the query strings as they should appear in the URL.
Removed Query Strings functionality. Please use my Query Strings plugin.
Pull an array of query strings from Craft. This gets around the problem of duplicated query string keys being lost, turning them into an array you can loop through.
An array will be returned with objects. Use .key
and .value
.