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
12
13
14
15
{% extends "base.html" %}

{% block content %}
  <h2>About Us</h2>
  <p>We are a company that builds great things.</p>
  
  <h3>Our Team</h3>
  <ul>
  {% for member in team %}
    <li>
      <strong>{{ member.name }}</strong> - {{ member.role }}
    </li>
  {% endfor %}
  </ul>
{% endblock %}