Skip to content

qstudio/willow

Repository files navigation

Willow ~ WordPress Template Engine

Contributors: qlstudio
Tags: Simple, logic-less, semantic, markup, language
Requires at least: 5.0
Tested up to: 5.6
Stable tag: 2.1.1
License: GPL-2.0

Willow ~ A logic-less template engine built for WordPress.

Willow has been designed to meet the needs of both front-end and back-end developers by providing a small, yet powerful set of tags and tools to speed up template development and prototype iteration.

Hello Willow

All Willow tags include a matching opening and closing pair, starting and ending with a curly bracket and one other internal character, as follows:

{~ ui~hello {  Willow says <strong>{{ what }}</strong>  } ~}

This tag calls the class ui method hello - ui->hello() - and wraps the returned data in any markup passed in the Willow argument:

class ui {

	function hello( $args = null ) {

		// define key   value to render ##
		return [
			'what' => 'Hello'
		];

	}

}

Return:

Willow says <strong>Hello<strong>

Wiki

Visit the documentation site for further details -> https://qstudio.us/docs/willow/