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
- Host: GitHub
- URL: https://github.com/creatiwity/wtemplate
- Owner: Creatiwity
- License: mit
- Created: 2013-05-19T10:57:49.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T07:29:45.000Z (almost 8 years ago)
- Last Synced: 2025-02-15T11:20:57.527Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 35.2 KB
- Stars: 3
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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}
```