Skip to content

Releases: mrnebbi/craft-template-tools

Version 2.0.0

14 Sep 07:23
Compare
Choose a tag to compare

Please note: Version 2 removes preserve query string functionality. If you still need this please install Query Strings plugin.

1.2.0

15 May 11:06
Compare
Choose a tag to compare

Version 1.2.0 adds the new getQueryStrings function. This allows you to even duplicate URL queries into your Twig template.

getQueryStrings

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.

Return all URL queries

{% for query in getQueryStrings() %}
	{{ query.key }} - {{ query.value }}
{% endfor %}

Return only URL queries that match a key

{% for query in getQueryStrings('lookForKey') %}
	{{ query.key }} - {{ query.value }}
{% endfor %}

1.1.1

15 May 10:54
Compare
Choose a tag to compare

Version 1.1.1 adds the wrapLinesInTag function.

wrapLinesInTag makes it easy to wrap any multiline text in a tag of your choosing.

1.1.0

27 Aug 15:34
Compare
Choose a tag to compare

Introducing getFirstParagraph

This release adds getFirstParagraph. It does exactly what it says on the tin.

Version 1.0

25 Aug 12:34
Compare
Choose a tag to compare

First release of Template Tools plugin for Craft CMS