Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/operfildoluiz/leoch

๐Ÿƒยท Leoch is a lightweight PHP server-side template rendering engine
https://github.com/operfildoluiz/leoch

package php rendering template-engine template-rendering

Last synced: 27 days ago
JSON representation

๐Ÿƒยท Leoch is a lightweight PHP server-side template rendering engine

Awesome Lists containing this project

README

        

[![Sele_o_001.png](https://s17.postimg.cc/kjbvqrcm7/Sele_o_001.png)](https://postimg.org/image/ugmwjtk7v/)

Leoch is a simple PHP server-side template rendering engine.

## Demo

See `demo/index.php` for server-side reference and `demo/templates/index.leoch.php` for Leoch syntax reference.

## Basic Syntax

Variables

{{$var}}

Conditional Sentences

@if[...]

@elseif[...]

@else

@endif

Iterators

@foreach($array in $var)

I'm a $var

@endforeach

Loops

@while[$i < 10]

$i++

@endwhile

Inside code blocks, there's no need to declare the variable under brackets.

## Rendering

use Leoch\App\Processor\TemplateProcessor;

$template = new Template('demo');
$template->setSrc('example')
->fill([
'somevar' => 'Some Var',
'level' => 'basic',
'somenumber' => 2,
'somearray' => array('Red', 'Blue'),
'somearray2' => array('Vermelho', 'Azul'),
])
->render();