atom-engine 5.0.2

A component-oriented template engine built on Tera with props, slots, and provide/inject context
Documentation
1
2
3
4
5
6
7
8
9
10
11
{# Test: Core Variable Features #}
{# This tests variable interpolation, comments, and whitespace control #}
Variable: {{ name }}
Uppercase: {{ name | upper }}
Lowercase: {{ name | lower }}
Number: {{ count }}
Boolean: {{ is_active }}
Null: {{ nullable | default(value="fallback") }}
Array: {{ items | join(", ") }}
Object: {{ user.name }}, {{ user.email }}
Nested: {{ company.address.city }}