jandc / critical-css-silex
Installs: 43
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
- jandc/critical-css: ^0.5
- jandc/twig-wrapper-provider: ^0.3
- silex/silex: ^1.2
This package is auto-updated.
Last update: 2024-11-20 22:22:35 UTC
README
Package, containing all the components to integrate generated automatic critical css into a silex 1.* project
Usage
Installation
composer require jandc/critical-css-silex
Registering the twig wrapper (with post processor) and twig extension
$app->register(new TwigWrapperProvider('twig', [new CriticalCssProcessor()])); $app->extend('twig', function (Twig_Environment $twig, $app) { $twig->addExtension(new CSSFromHTMLExtractor\Twig\Extension()); return $twig; });
Mark the regions of your templates with the provided blocks
{% fold %} <div class="my-class"> ... </div> {% endfold %}
Render your pages, using the twigwrapper
$app['twigwrapper']->render('@templates/my/template.twig', ['foo'=>'bar']);