Skip to content
/ liquid Public

PHP 5.3 port of Liquid. Liquid markup language. Safe, customer facing template language for flexible web apps. http://liquidmarkup.org/

License

Notifications You must be signed in to change notification settings

masom/liquid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Liquid template engine

This is the PHP port of Shopify/liquid

Introduction

Liquid is a template engine which was written with very specific requirements:

  • It has to have beautiful and simple markup. Template engines which don't produce good looking markup are no fun to use.
  • It needs to be non evaling and secure. Liquid templates are made so that users can edit them. You don't want to run code on your server which your users wrote.
  • It has to be stateless. Compile and render steps have to be separate so that the expensive parsing and compiling can be done once and later on you can just render it passing in a hash with local variables and objects.

Why you should use Liquid

  • You want to allow your users to edit the appearance of your application but don't want them to run insecure code on your server.
  • You want to render templates directly from the database.
  • You like smarty (PHP) style template engines.
  • You need a template engine which does HTML just as well as emails.
  • You don't like the markup of your current templating engine.

About

PHP 5.3 port of Liquid. Liquid markup language. Safe, customer facing template language for flexible web apps. http://liquidmarkup.org/

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages