-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Home
Justin Li edited this page Aug 9, 2018
·
181 revisions
Liquid is a template engine which was crafted for very specific requirements
- It has to have simple markup and beautiful results. Template engines which don't produce good looking results 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 your server running code that your users wrote.
- It has to be stateless. The compile and render steps have to be separate, so that the expensive parsing and compiling can be done once; later on, you can just render it by passing in a hash with local variables and objects.
- It needs to be able to style emails as well as HTML.
- Class reference
- Liquid for Programmers
- Liquid for Designers
- Liquid screencast
- Ports of Liquid to other environments
- Shopify
- Mailblast
- EmailOctopus
- eLocal
- Mephisto
- Harmony
- Chameleon
- Cashboard
- Carmatec
- Adobe Business Catalyst
- Voog
- Zendesk
- YikeSite (CMS)
- Simplicant (Applicant Tracking System)
- 3scale (API Management System)
- Chaptercore
- ScreenSteps Live
- PokerAffiliateSolutions
- Desk.com
- Ronin
- AboutOne
- RailsCarma
- RightScale
- Menumill
- Moxie Software
- SansOffreMobile
- Rusic
- Development Seed
- peerTransfer
- NationBuilder
- Pronto Avenue
- Device Magic
- Spiceworks
- PufferPages (CMS)
- Paspartout
- TrackGrid
- 192.168.1.1
- Jekyll
- Octopress
- Vnda
- LeadFormance
- 192.168.0.1
- CrystalCommerce
- Rackspace
- Hacks Deutsch
- Talent Technology
- WebKite
- Adam Ralph
- Quaderno
- LocomotiveCMS
- Customer.io
- Mixture.io
- MakePlans
- Planning Center Services
- Planning Center Resources
- RoQua
- Evrone
- Liquid.as
- Open Liquid
- 500px
- VTEX
- Xorcode
- MobiCheckin (registration forms)
- Educative-Games.org
- 192.168.1.1
- Dietarious
- GiftFold
- Reamaze
- Ytblaster
- Sitebox.io
- Stunning
- Vero (Email Marketing Software)
- GoDaddy
- SendOwl
- FOX21.at
- Bright Sites
- Mode Analytics
- Helpjuice
- Freshdesk
- Continuity Control
- Mitingu
- Festiment
- Unsound Music Festival
- Yondo
- Appboy
- Disco
- LavoWeb
- DediConcept
- Lucid
- Fedora
- Jumpseller
- Openbay
- Sayan's Blog
- Industry Mailout
- Growing with the Web
- Mercury Flight
- Arpith's Blog
- Drip
- Sixty AS
- Thinkific
- dotmailer
- meowbox
- Embulk
- Labs64 NetLicensing
- SingleOps
- Huginn
- VirtoCommerce
- Grab
- Silverfin
- Syngency
- Kajabi
- Touristed
- MoonMail
- DotNest (Orchard CMS SaaS)
- Uscreen
- microapps
- MONEI
- BookingSync
- Handshake
- Registria
- Taxi for Email
- Sorry™ for Status Page Theming
- Flipkart
- Carnival.io by Sailthru
- ...Add yours :)
- 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-style template engines.
- You need a template engine which does HTML just as well as emails.
- You don't like the markup language of your current template engine.