atom-engine 5.0.2

A component-oriented template engine built on Tera with props, slots, and provide/inject context
Documentation
<!DOCTYPE html>
<html>
<head>
  <title>Includes Test</title>
</head>
<body>
  {% include "include_header.html" %}
  
  <div class="container">
    {% include "include_sidebar.html" %}
    
    <main>
      <h1>{{ page_title }}</h1>
      <p>{{ content }}</p>
    </main>
  </div>
  
  {% include "include_footer.html" %}
</body>
</html>