surgems/inliner

Statamic Addon that turns external assets into inline HTML.

1.0.0 2022-07-11 16:03 UTC

This package is auto-updated.

Last update: 2024-05-12 00:01:51 UTC


README

Inliner is a Statamic addon that turns external assets into inline HTML.

Features

This addon does:

  • Inlines external JS/CSS files
  • Minifies these files

How to Install

You can use this addon by running the following command from your project root:

composer require surgems/inliner

How to Use

To inline your external assets, just use the inliner tag allong with the path to your asset file:

{{ inliner src="css/app.css" }}
{{ inliner src="js/app.js" }}

To Minify these assets, just add the minify tag (the default is false):

{{ inliner src="css/app.css" minify="true" }}