All Projects → twigphp → Inky Extension

twigphp / Inky Extension

Licence: mit
[DEPRECATED] Inky email template engine support for Twig

Projects that are alternatives of or similar to Inky Extension

cssinliner-extension
[DEPRECATED] CSS inliner support for Twig
Stars: ✭ 30 (-47.37%)
Mutual labels:  twig, twig-extension
Fmbbcodebundle
🔠 BBCode bundle for Symfony projects
Stars: ✭ 56 (-1.75%)
Mutual labels:  twig, twig-extension
DrupalTwigFood
Useful functions, filters for twig @ Drupal 8
Stars: ✭ 1 (-98.25%)
Mutual labels:  twig, twig-extension
Reactrenderer
Client and Server-side React rendering from PHP
Stars: ✭ 201 (+252.63%)
Mutual labels:  twig, twig-extension
Html Extra
HTML extension for Twig
Stars: ✭ 24 (-57.89%)
Mutual labels:  twig, twig-extension
Slugify
Converts a string to a slug. Includes integrations for Symfony, Silex, Laravel, Zend Framework 2, Twig, Nette and Latte.
Stars: ✭ 2,697 (+4631.58%)
Mutual labels:  twig, twig-extension
PhpStorm-Live-Templates-Craft-CMS
PhpStorm Live Templates for Craft CMS
Stars: ✭ 34 (-40.35%)
Mutual labels:  twig, twig-extension
Cssinliner Extra
CSS Inliner support for Twig
Stars: ✭ 93 (+63.16%)
Mutual labels:  twig, twig-extension
joomla-twig
Twig 2.0 & Twig extensions integration for Joomla! https://phproberto.github.io/joomla-twig/
Stars: ✭ 25 (-56.14%)
Mutual labels:  twig, twig-extension
cache-extra
Template fragment cache support for Twig
Stars: ✭ 24 (-57.89%)
Mutual labels:  twig, twig-extension
Twig Extensions
Twig extensions
Stars: ✭ 1,469 (+2477.19%)
Mutual labels:  twig, twig-extension
time-ago-bundle
Provides a simple twig filter for expressing time difference in words.
Stars: ✭ 13 (-77.19%)
Mutual labels:  twig, twig-extension
Markdown Extension
[DEPRECATED] Markdown support for Twig
Stars: ✭ 105 (+84.21%)
Mutual labels:  twig, twig-extension
breadcrumb-bundle
Symfony bundle for easy breadcrumbs management
Stars: ✭ 26 (-54.39%)
Mutual labels:  twig, twig-extension
Twig Deferred Extension
An extension for Twig that allows to defer block rendering.
Stars: ✭ 97 (+70.18%)
Mutual labels:  twig, twig-extension
markdown-extra
Markdown extension for Twig
Stars: ✭ 83 (+45.61%)
Mutual labels:  twig, twig-extension
Html Compress Twig
Twig extension for compressing HTML and inline CSS/JS using WyriHaximus/HtmlCompress
Stars: ✭ 72 (+26.32%)
Mutual labels:  twig, twig-extension
String Extra
Unicode/String support for Twig
Stars: ✭ 92 (+61.4%)
Mutual labels:  twig, twig-extension
twig-translation
A Twig Translation Extension
Stars: ✭ 15 (-73.68%)
Mutual labels:  twig, twig-extension
oc-twigextensions-plugin
Twig extensions plugin for OctoberCMS
Stars: ✭ 17 (-70.18%)
Mutual labels:  twig, twig-extension

Twig Inky Extension

WARNINIG: This package is deprecate; migrate to twig/inky-extra instead.

This package provides support for the inky email templating engine in Twig via a filter (inky) for Twig and a Symfony bundle.

If you are not using Symfony, register the extension on Twig's Environment manually:

use Twig\Inky\InkyExtension;
use Twig\Environment;

$twig = new Environment(...);
$twig->addExtension(new InkyExtension());

Use the inky filter to process an inky email template:

{% filter inky %}
    <row>
        <columns large="6"></columns>
        <columns large="6"></columns>
    </row>
{% endfilter %}

You can also use the filter on an included file:

{{ include('some_template.inky.twig')|inky }}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].