An open API service indexing awesome lists of open source software.

https://github.com/creatiwity/wtemplate

Template Compiler written in PHP
https://github.com/creatiwity/wtemplate

Last synced: 11 months ago
JSON representation

Template Compiler written in PHP

Awesome Lists containing this project

README

          

# wityTemplate

PHP Template compiler

## Features

- Variables printing
- Conditioning
- Loops
- Assignments
- Default values
- etc.

## Sample code

```
{for $language in $languages}

{$language.id}
{$language.name}
{$language.iso}
{$language.code}

{if {$language.enabled} == 0}

{else}

{/if}


{/for}
```