Tina4

Chapter 4: Templates#

1. Why Templates#

In Chapter 1, $response->render("products.html", $data) produced a full HTML page. Frond did the rendering -- Tina4's built-in template engine. Zero dependencies. Twig-compatible syntax. If you know Twig, Jinja2, or Nunjucks, you know 90% of Frond.

Templates live in src/templates/. Call $response->render("page.html", $data). Frond loads the file, processes tags and expressions, returns final HTML.

This chapter covers every feature. After reading it, you build real pages.


2. Variables and Expressions#

Double curly braces output a variable:

html
<h1>Hello, {{ name }}!</h1>

Route handler:

php
<?phpuse Tina4\Router;โ€‹Router::get("/welcome", function ($request, $response) {    return $response->render("welcome.html", [        "name" => "Alice"    ]);});

Create src/templates/welcome.html:

html
<!DOCTYPE html><html><head><title>Welcome</title></head><body>    <h1>Hello, {{ name }}!</h1></body></html>

Output:

Hello, Alice!

Accessing Nested Data#

Dot notation reaches into nested arrays:

php
$data = [    "user" => [        "name" => "Alice",        "email" => "alice@example.com",        "address" => [            "city" => "Cape Town",            "country" => "South Africa"        ]    ]];โ€‹return $response->render("profile.html", $data);
html
<p>{{ user.name }} lives in {{ user.address.city }}, {{ user.address.country }}.</p>

Output:

Alice lives in Cape Town, South Africa.

Method Calls on Values#

When a variable is an object or an array containing a callable, you can call methods directly in dot notation:

html
<p>{{ user.getName() }}</p><p>{{ translator.t("welcome_message") }}</p><p>{{ cart.total() }}</p>

Arguments are passed as normal function arguments. This works on both objects (calls the method) and arrays (calls the callable stored at that key).

Expressions#

Basic arithmetic and string concatenation work inside {{ }}:

html
<p>Total: ${{ price * quantity }}</p><p>Discounted: ${{ price * 0.9 }}</p><p>Full name: {{ first_name ~ " " ~ last_name }}</p>

The ~ operator concatenates strings.


3. Template Inheritance#

The headline feature. Define a base layout once. Extend it everywhere.

Base Layout#

Create src/templates/base.twig:

html
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>{% block title %}My App{% endblock %}</title>    <link rel="stylesheet" href="/css/tina4.css">    {% block head %}{% endblock %}</head><body>    <nav>        <a href="/">Home</a>        <a href="/about">About</a>        <a href="/contact">Contact</a>    </nav>     <main>        {% block content %}{% endblock %}    </main>     <footer>        <p>&copy; 2026 My App. All rights reserved.</p>    </footer>     <script src="/js/frond.js"></script>    {% block scripts %}{% endblock %}</body></html>

Four blocks: title, head, content, scripts. Child templates override only what they need.

Child Template#

Create src/templates/about.twig:

html
{% extends "base.twig" %} {% block title %}About Us{% endblock %} {% block content %}    <h1>About Us</h1>    <p>We have been building things since {{ founded_year }}.</p>    <p>Our team has {{ team_size }} members across {{ office_count }} offices.</p>{% endblock %}

Route handler:

php
<?phpuse Tina4\Router;โ€‹Router::get("/about", function ($request, $response) {    return $response->render("about.twig", [        "founded_year" => 2020,        "team_size" => 12,        "office_count" => 3    ]);});

Result: A full HTML page with the nav, the "About Us" content, and the footer. The <title> reads "About Us". The head and scripts blocks stay empty because the child did not override them.

Using {{ parent() }}#

Add to a block instead of replacing it:

html
{% extends "base.twig" %} {% block head %}    {{ parent() }}    <link rel="stylesheet" href="/css/contact-form.css">{% endblock %} {% block content %}    <h1>Contact Us</h1>    <form>...</form>{% endblock %}

The head block now contains everything from the base plus the extra stylesheet.


4. Includes#

Break templates into reusable pieces with {% include %}:

Create src/templates/partials/header.twig:

html
<header>    <div class="logo">{{ site_name | default("My App") }}</div>    <nav>        <a href="/">Home</a>        <a href="/products">Products</a>        <a href="/contact">Contact</a>    </nav></header>

Create src/templates/partials/product-card.twig:

html
<div class="product-card{{ product.featured ? ' featured' : '' }}">    <h3>{{ product.name }}</h3>    <p class="price">${{ product.price | number_format(2) }}</p>    {% if product.in_stock %}        <span class="badge-success">In Stock</span>    {% else %}        <span class="badge-danger">Out of Stock</span>    {% endif %}</div>

Use them in a page:

html
{% extends "base.twig" %} {% block content %}    {% include "partials/header.twig" %}     <h1>Products</h1>    {% for product in products %}        {% include "partials/product-card.twig" %}    {% endfor %}{% endblock %}

The product variable is available inside the included template because it exists in the current scope -- the for loop.

Passing Variables to Includes#

Explicit variable passing with with:

html
{% include "partials/header.twig" with {"site_name": "Cool Store"} %}

Isolate the included template from the parent scope with only:

html
{% include "partials/header.twig" with {"site_name": "Cool Store"} only %}

With only, the included template sees site_name and nothing else.


5. For Loops#

Loop through arrays with {% for %}:

html
<ul>{% for item in items %}    <li>{{ item }}</li>{% endfor %}</ul>

The loop Variable#

Inside every for loop, Frond provides a loop variable:

PropertyTypeDescription
loop.indexintCurrent iteration (1-based)
loop.index0intCurrent iteration (0-based)
loop.firstboolTrue on the first iteration
loop.lastboolTrue on the last iteration
loop.lengthintTotal number of items
loop.revindexintIterations remaining (1-based)
html
<table>    <thead>        <tr><th>#</th><th>Name</th><th>Price</th></tr>    </thead>    <tbody>    {% for product in products %}        <tr class="{{ loop.index is odd ? 'row-light' : 'row-dark' }}">            <td>{{ loop.index }}</td>            <td>{{ product.name }}</td>            <td>${{ product.price | number_format(2) }}</td>        </tr>    {% endfor %}    </tbody></table>

Empty Lists#

Handle empty lists with {% else %}:

html
{% for product in products %}    <div class="product-card">        <h3>{{ product.name }}</h3>    </div>{% else %}    <p>No products found.</p>{% endfor %}

If products is empty or undefined, the else block renders instead.

Looping Over Key-Value Pairs#

html
{% for key, value in metadata %}    <dt>{{ key }}</dt>    <dd>{{ value }}</dd>{% endfor %}

6. Conditionals#

if / elseif / else#

html
{% if user.role == "admin" %}    <a href="/admin">Admin Panel</a>{% elseif user.role == "editor" %}    <a href="/editor">Editor Dashboard</a>{% else %}    <a href="/profile">My Profile</a>{% endif %}

Ternary Operator#

Inline conditionals:

html
<span class="{{ is_active ? 'text-green' : 'text-gray' }}">    {{ is_active ? 'Active' : 'Inactive' }}</span>

Testing for Existence#

html
{% if error_message is defined %}    <div class="alert alert-danger">{{ error_message }}</div>{% endif %}

Truthiness#

False values: false, null, 0, "" (empty string), [] (empty array). Everything else is true.

html
{% if items %}    <p>{{ items | length }} items found.</p>{% else %}    <p>No items.</p>{% endif %}

The not Operator in Output#

not works in an output expression, not only in a condition:

html
{{ not user.active }}
html
false

It reads the same way it does inside {% if %}, because both go through the same evaluator. {% if not user.active %} and {{ not user.active }} agree by construction.

PHP has always handled this correctly. The note records that Python, Ruby and Node.js dropped the standalone form until 3.13.87 and now match.

Printing a Boolean#

A boolean prints as true or false, lowercase, in every Tina4 framework.

html
<div data-active="{{ user.active }}">
html
<div data-active="true">

Lowercase is the form the browser already understands. Read it back with el.dataset.active === "true" and it works. There is no casing to translate and no special case to write.

A false value prints the word false. It does not print blank. That distinction earns its keep: a blank attribute reads as a missing value, and a template that shows nothing where it should show false is wrong in a way nobody notices.

Breaking in 3.13.87. The four frameworks used to give four different answers here. Python printed Python's True and False. PHP printed 1 for true and an empty string for false. Ruby printed false for a comparison but an empty string for a stored false value. Node.js already printed true and false. All four now agree, and a 72 expression corpus in every test suite holds them there.

Two things change for PHP templates. A test against the rendered 1 now sees true. And a false value that used to render as nothing now renders the word false, so a layout that relied on the blank output needs a conditional.

{% set %} -- Local Variables#

Create or update a variable inside a template:

html
{% set greeting = "Hello" %}{% set full_name = user.first_name ~ " " ~ user.last_name %}{% set total = price * quantity %}{% set discount = total - rebate %} <p>{{ greeting }}, {{ full_name }}!</p><p>Total: {{ total }}, After discount: {{ discount }}</p>

The ~ operator concatenates strings. Arithmetic operators (+, -, *, /, //, %, **) work in set and expressions.

When combining filters with arithmetic, assign the filtered values first:

html
{% set dr = account.dr|default(0) %}{% set cr = account.cr|default(0) %}{% set balance = dr - cr %}<p>Balance: {{ balance }}</p>

set as a block -- capture rendered markup#

The block form captures whatever its body renders and binds it to the name. Nothing is printed where the block stands:

html
{% set badge %}    <span class="badge">{{ order.status|upper }}</span>{% endset %} <td>{{ badge }}</td><td class="mobile-only">{{ badge }}</td>

Build the markup once, use it twice. The capture is marked safe, so the badge renders as HTML rather than as escaped angle brackets. A value interpolated into the body is still escaped on the way in, which is the correct place for it: the escaping happens once, where the untrusted value enters.

Which form you get is decided by one rule: an = in the tag means assignment, so {% set label = "a = b" %} is never mistaken for a block.

This form is new in 3.13.89. Before that it printed its body inline and bound nothing.

An unknown tag is an error#

A tag Frond does not recognise raises, naming the tag and listing the ones it knows:

html
{% iff user.is_admin %}    <a href="/admin">Admin</a>{% endiff %}
Frond: unknown tag "iff" -- known tags are: autoescape, block, cache, extends,for, from, if, import, include, live, macro, raw, set, spaceless

That one is worth staring at. Before 3.13.89 the mistyped tag rendered nothing and its body rendered as ordinary content, so the admin link appeared for every visitor. The template looked guarded. It was not.

Frond has no plugin system for tags, so an unrecognised name is always a typo. Twig and Jinja2 both raise on one too.


7. Filters#

Filters transform values. Apply them with |:

html
{{ name | upper }}

Complete Filter Reference#

String Filters#

FilterExampleDescription

| upper | {{ name \| upper }} | Convert to uppercase | | lower | {{ name \| lower }} | Convert to lowercase | | capitalize | {{ name \| capitalize }} | Capitalize first letter | | title | {{ name \| title }} | Capitalize each word | | trim | {{ name \| trim }} | Strip leading/trailing whitespace | | ltrim | {{ name \| ltrim }} | Strip leading whitespace | | rtrim | {{ name \| rtrim }} | Strip trailing whitespace | | slug | {{ title \| slug }} | Convert to URL-friendly slug | | wordwrap(80) | {{ text \| wordwrap(80) }} | Wrap text at N characters | | truncate(100) | {{ text \| truncate(100) }} | Truncate to N characters with ellipsis | | nl2br | {{ text \| nl2br }} | Convert newlines to <br> tags | | striptags | {{ html \| striptags }} | Remove all HTML tags | | replace("a", "b") | {{ text \| replace("old", "new") }} | Replace occurrences of a substring |

Array Filters#

FilterExampleDescription

| length | {{ items \| length }} | Count items in array or string length | | reverse | {{ items \| reverse }} | Reverse order of items | | sort | {{ items \| sort }} | Sort items ascending | | shuffle | {{ items \| shuffle }} | Randomly shuffle items | | first | {{ items \| first }} | Get the first item | | last | {{ items \| last }} | Get the last item | | join(", ") | {{ items \| join(", ") }} | Join array items with separator | | split(",") | {{ csv \| split(",") }} | Split string into array | | unique | {{ items \| unique }} | Remove duplicate values | | filter | {{ items \| filter }} | Remove falsy values from array | | map("name") | {{ items \| map("name") }} | Extract a property from each item | | column("name") | {{ items \| column("name") }} | Extract a column from array of objects | | batch(3) | {{ items \| batch(3) }} | Group items into batches of N | | slice(0, 3) | {{ items \| slice(0, 3) }} | Extract a slice from offset with length |

Encoding Filters#

FilterExampleDescription

| escape (e) | {{ text \| escape }} | HTML-escape special characters | | raw (safe) | {{ html \| raw }} | Output without auto-escaping | | url_encode | {{ text \| url_encode }} | URL-encode a string | | base64_encode (base64encode) | {{ text \| base64_encode }} | Base64-encode a string | | base64_decode (base64decode) | {{ data \| base64_decode }} | Base64-decode a string | | md5 | {{ text \| md5 }} | Compute MD5 hash | | sha256 | {{ text \| sha256 }} | Compute SHA-256 hash |

Numeric Filters#

FilterExampleDescription

| abs | {{ num \| abs }} | Absolute value | | round(2) | {{ price \| round(2) }} | Round to N decimal places | | number_format(2) | {{ price \| number_format(2) }} | Format with decimals and thousands separator | | int | {{ val \| int }} | Cast to integer | | float | {{ val \| float }} | Cast to float | | string | {{ val \| string }} | Cast to string |

JSON Filters#

FilterExampleDescription

| json_encode | {{ data \| json_encode }} | Encode value as JSON string | | to_json (tojson) | {{ data \| to_json }} | Encode value as JSON string (alias) | | json_decode | {{ str \| json_decode }} | Decode JSON string to object | | js_escape | {{ text \| js_escape }} | Escape string for safe use in JavaScript |

Dict Filters#

FilterExampleDescription

| keys | {{ obj \| keys }} | Get dictionary keys as array | | values | {{ obj \| values }} | Get dictionary values as array | | merge(other) | {{ defaults \| merge(overrides) }} | Merge two dictionaries |

Other Filters#

FilterExampleDescription

| default("fallback") | {{ name \| default("Guest") }} | Fallback when value is empty or undefined | | date("Y-m-d") | {{ created \| date("Y-m-d") }} | Format a date value | | format(val) | {{ "%.2f" \| format(price) }} | Format string with value (sprintf-style) | | data_uri | {{ content \| data_uri }} | Convert to a data URI string | | dump | {{ var \| dump }} or {{ dump(var) }} | Debug output, gated on TINA4_DEBUG=true (see Dumping Values) | | form_token | {{ form_token() }} | Generate a CSRF hidden input with token | | formTokenValue | {{ formTokenValue("context") }} | Return just the raw JWT token string | | to_json | {{ data \| to_json }} | JSON-encode a value (safe, no double-escaping) | | js_escape | {{ text \| js_escape }} | Escape for safe use in JavaScript strings |

json_encode Is Ready for a Script Block#

json_encode gives you JSON that parses as JSON and runs as JavaScript. Frond does not HTML-escape it, because an entity-encoded payload is a syntax error the moment the browser reads it:

html
<script>    const product = {{ product | json_encode }};</script>
html
<script>    const product = {"id":1,"name":"Widget"};</script>

The output is still safe on the page. Frond escapes the four characters that can break out of HTML, as JSON unicode escapes rather than entities, so </script> inside a string arrives as \u003c/script\u003e and cannot close the block early. A single quote becomes \u0027, so the same value drops straight into a single-quoted attribute:

html
<div data-product='{{ product | json_encode }}'>

Use single quotes there. JSON is full of double quotes, so a double-quoted attribute needs | e on top:

html
<div data-product="{{ product | json_encode | e }}">

A value JSON cannot represent becomes null. Infinity, NaN and anything the serializer refuses all serialize as null, so the payload always arrives and always parses. It is never blank, and it is never a bare token that JSON.parse would reject.

to_json and tojson are the same filter under two more names.

Breaking in 3.13.88. 3.13.87 HTML-escaped this filter in all four frameworks, which turned every <script> block that used it into a SyntaxError. That is reverted: json_encode no longer produces entities, and | raw after it is now a no-op you can delete. If you added | raw for 3.13.87, nothing breaks by leaving it. Any double-quoted attribute holding json_encode output wants | e instead.

Chaining Filters#

Left to right:

html
{{ name | trim | lower | capitalize }}{# "  ALICE SMITH  " -> "Alice smith" #}

Dumping Values for Debugging#

The dump helper lets you inspect any variable mid-template. Two interchangeable forms are supported:

html
{{ user | dump }}{{ dump($user) }}

Both produce the same <pre>-wrapped, HTML-escaped var_dump() of the value. Handles arrays, objects, class instances, and cyclic references, PHP's var_dump prints *RECURSION* for back-edges.

html
{{ dump($order) }} {# Output: #}{# <pre>object(Order)#42 (3) {                              #}{#   ["id"]=> int(42)                                       #}{#   ["items"]=> array(2) { ... }                           #}{#   ["total"]=> float(99.99)                               #}{# }</pre>                                                  #}

dump is gated on TINA4_DEBUG=true. In production (env var unset or false) both the filter and function form silently return an empty string. This prevents accidental leaks of internal state, object shapes, or sensitive values into rendered HTML if a developer leaves a {{ dump($x) }} call in a template.

ini
# .env - devTINA4_DEBUG=true    # dump() outputs the valueโ€‹# .env - productionTINA4_DEBUG=false   # dump() is a no-op

You can rely on this gate for safety, but treat dump as a development-only convenience. For structured output in production code paths, use to_json.


8. Macros#

Macros are reusable template functions. Define once, call many times.

Defining a Macro#

Create src/templates/macros.twig:

html
{% macro button(text, url, style) %}    <a href="{{ url | default('#') }}" class="btn btn-{{ style | default('primary') }}">        {{ text }}    </a>{% endmacro %} {% macro alert(message, type) %}    <div class="alert alert-{{ type | default('info') }}">        {{ message }}    </div>{% endmacro %} {% macro input(name, label, type, value) %}    <div class="form-group">        <label for="{{ name }}">{{ label | default(name | capitalize) }}</label>        <input type="{{ type | default('text') }}" id="{{ name }}" name="{{ name }}" value="{{ value | default('') }}">    </div>{% endmacro %}

Using Macros#

Import and use:

html
{% from "macros.twig" import button, alert, input %} {% extends "base.twig" %} {% block content %}    {{ alert("Your profile has been updated.", "success") }}     <form method="POST" action="/profile">        {{ input("name", "Full Name", "text", user.name) }}        {{ input("email", "Email Address", "email", user.email) }}        {{ input("phone", "Phone Number", "tel", user.phone) }}         {{ button("Save Changes", "", "primary") }}        {{ button("Cancel", "/dashboard", "secondary") }}    </form>{% endblock %}

Output (simplified):

html
<div class="alert alert-success">    Your profile has been updated.</div> <form method="POST" action="/profile">    <div class="form-group">        <label for="name">Full Name</label>        <input type="text" id="name" name="name" value="Alice">    </div>    <div class="form-group">        <label for="email">Email Address</label>        <input type="email" id="email" name="email" value="alice@example.com">    </div>    <div class="form-group">        <label for="phone">Phone Number</label>        <input type="tel" id="phone" name="phone" value="">    </div>     <a href="#" class="btn btn-primary">Save Changes</a>    <a href="/dashboard" class="btn btn-secondary">Cancel</a></form>

Two Ways to Import Macros#

Frond accepts both Twig import forms and they behave identically.

Name the macros you want:

html
{% from "macros.twig" import button, alert %} {{ button("Save", "", "primary") }}

Or bind the whole file to an alias:

html
{% import "macros.twig" as forms %} {{ forms.button("Save", "", "primary") }}

The alias form keeps the names namespaced, which earns its keep the moment two macro files both define a button. Arguments bind the same way in either form: the first argument you pass is the first parameter the macro declares.

New in 3.13.87. The alias form used to render as nothing at all: the tag parsed, the macros were never registered, and the call produced an empty string with no error. Only {% from %} worked. Both forms now work.

9. Special Tags#

{% raw %} -- Literal Output#

Output literal {{ }} or {% %} without processing. Essential for Vue.js or Angular templates:

html
{% raw %}    <div id="app">        {{ message }}    </div>{% endraw %}

Outputs the literal text {{ message }}.

{% spaceless %} -- Remove Whitespace#

Strip whitespace between HTML tags:

html
{% spaceless %}    <div>        <span>Hello</span>    </div>{% endspaceless %}

Output:

html
<div><span>Hello</span></div>

Useful for inline elements where whitespace creates unwanted gaps.

{% autoescape %} -- Control Escaping#

Override auto-escaping for a block:

html
{% autoescape false %}    {{ trusted_html }}{% endautoescape %}

Everything inside outputs without HTML escaping. Equivalent to | raw on every variable, but more convenient for large blocks of trusted content.

Comments#

Template comments are invisible in the output:

html
{# This comment will not appear in the HTML output #} {#    Multi-line comments work too.    Use them to document template logic.#}

10. tina4css Integration#

Every Tina4 project includes tina4.css -- a built-in CSS utility framework. Available at /css/tina4.css. Layout, typography, common UI patterns. No external dependencies.

Include it in your base template:

html
<link rel="stylesheet" href="/css/tina4.css">

Layout Classes#

html
<div class="container">    <div class="row">        <div class="col-6">Left half</div>        <div class="col-6">Right half</div>    </div></div>

Common Components#

html
<!-- Buttons --><button class="btn btn-primary">Primary</button><button class="btn btn-secondary">Secondary</button><button class="btn btn-danger">Danger</button> <!-- Cards --><div class="card">    <div class="card-header">Title</div>    <div class="card-body">Content here</div>    <div class="card-footer">Footer</div></div> <!-- Alerts --><div class="alert alert-success">Operation completed.</div><div class="alert alert-danger">Something went wrong.</div><div class="alert alert-warning">Please review your input.</div> <!-- Forms --><div class="form-group">    <label for="name">Name</label>    <input type="text" id="name" class="form-control"></div>

Utility Classes#

html
<p class="text-center">Centered text</p><p class="text-right">Right-aligned text</p><div class="mt-4">Margin top</div><div class="p-3">Padding all around</div><span class="text-muted">Gray text</span><span class="text-primary">Primary color text</span>

No Bootstrap. No Tailwind. If you prefer those, swap the <link> tag. Tina4 does not care.


11. Exercise: Build a Product Catalog Page#

Build a catalog page with a base layout, product cards, category filters, and a reusable card macro.

Requirements#

  1. Create a base layout at src/templates/catalog-base.twig with blocks for title, content, and scripts
  2. Create a macro file at src/templates/catalog-macros.twig with:
    • A productCard(product) macro that renders a styled card with name, category, price, stock status, and optional featured badge
    • A categoryFilter(categories, active) macro that renders filter buttons
  3. Create a page template at src/templates/catalog.twig that:
    • Extends the base layout
    • Uses the macros
    • Shows a heading with total product count
    • Shows category filter buttons (All, plus one per unique category)
    • Shows product cards in a grid
    • Highlights featured products
    • Handles empty filter results
  4. Create a route at GET /catalog that accepts an optional ?category= filter

Data#

Use this product list in your route handler:

php
$products = [    ["name" => "Espresso Machine", "category" => "Kitchen", "price" => 299.99, "in_stock" => true, "featured" => true],    ["name" => "Yoga Mat", "category" => "Fitness", "price" => 29.99, "in_stock" => true, "featured" => false],    ["name" => "Standing Desk", "category" => "Office", "price" => 549.99, "in_stock" => true, "featured" => true],    ["name" => "Blender", "category" => "Kitchen", "price" => 89.99, "in_stock" => false, "featured" => false],    ["name" => "Running Shoes", "category" => "Fitness", "price" => 119.99, "in_stock" => true, "featured" => false],    ["name" => "Desk Lamp", "category" => "Office", "price" => 39.99, "in_stock" => true, "featured" => true],    ["name" => "Cast Iron Skillet", "category" => "Kitchen", "price" => 44.99, "in_stock" => true, "featured" => false]];

Test with:#

http://localhost:7145/cataloghttp://localhost:7145/catalog?category=Kitchenhttp://localhost:7145/catalog?category=Fitness

12. Solution#

Create src/templates/catalog-base.twig:

html
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>{% block title %}Product Catalog{% endblock %}</title>    <link rel="stylesheet" href="/css/tina4.css">    <style>        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; margin: 0; padding: 0; background: #f8f9fa; }        .container { max-width: 1000px; margin: 0 auto; padding: 20px; }        .header { background: #2c3e50; color: white; padding: 20px; margin-bottom: 24px; }        .header h1 { margin: 0; }        .header p { margin: 4px 0 0; opacity: 0.8; }        .filters { margin-bottom: 20px; }        .filter-btn { display: inline-block; padding: 6px 14px; margin: 0 6px 6px 0; border-radius: 20px; text-decoration: none; font-size: 0.9em; border: 1px solid #dee2e6; color: #495057; background: white; }        .filter-btn.active { background: #2c3e50; color: white; border-color: #2c3e50; }        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }        .product-card { background: white; border: 2px solid #e9ecef; border-radius: 8px; padding: 16px; transition: border-color 0.2s; }        .product-card:hover { border-color: #adb5bd; }        .product-card.featured { border-color: #f39c12; background: #fef9e7; }        .product-name { font-size: 1.1em; font-weight: 600; margin: 0 0 4px; }        .product-category { font-size: 0.85em; color: #6c757d; margin: 0 0 8px; }        .product-price { font-size: 1.2em; font-weight: bold; color: #27ae60; }        .badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 0.75em; font-weight: 600; margin-left: 8px; }        .badge-featured { background: #f39c12; color: white; }        .badge-stock { background: #d4edda; color: #155724; }        .badge-nostock { background: #f8d7da; color: #721c24; }        .empty-state { text-align: center; padding: 40px; color: #6c757d; }    </style></head><body>    {% block content %}{% endblock %}     <script src="/js/frond.js"></script>    {% block scripts %}{% endblock %}</body></html>

Create src/templates/catalog-macros.twig:

html
{% macro productCard(product) %}    <div class="product-card{{ product.featured ? ' featured' : '' }}">        <p class="product-name">            {{ product.name }}            {% if product.featured %}                <span class="badge badge-featured">Featured</span>            {% endif %}        </p>        <p class="product-category">{{ product.category }}</p>        <p class="product-price">            ${{ product.price | number_format(2) }}            {% if product.in_stock %}                <span class="badge badge-stock">In Stock</span>            {% else %}                <span class="badge badge-nostock">Out of Stock</span>            {% endif %}        </p>    </div>{% endmacro %} {% macro categoryFilter(categories, active) %}    <div class="filters">        <a href="/catalog" class="filter-btn{{ active is not defined or active == '' ? ' active' : '' }}">All</a>        {% for cat in categories %}            <a href="/catalog?category={{ cat }}" class="filter-btn{{ active == cat ? ' active' : '' }}">{{ cat }}</a>        {% endfor %}    </div>{% endmacro %}

Create src/templates/catalog.twig:

html
{% extends "catalog-base.twig" %} {% from "catalog-macros.twig" import productCard, categoryFilter %} {% block title %}{{ active_category | default("All") }} Products - Catalog{% endblock %} {% block content %}    <div class="header">        <h1>Product Catalog</h1>        <p>{{ products | length }} product{{ products | length != 1 ? 's' : '' }}{% if active_category %} in {{ active_category }}{% endif %}</p>    </div>     <div class="container">        {{ categoryFilter(categories, active_category) }}         {% if products | length > 0 %}            <div class="product-grid">                {% for product in products %}                    {{ productCard(product) }}                {% endfor %}            </div>        {% else %}            <div class="empty-state">                <h2>No products found</h2>                <p>Try a different category or <a href="/catalog">view all products</a>.</p>            </div>        {% endif %}    </div>{% endblock %}

Create src/routes/catalog.php:

php
<?phpuse Tina4\Router;โ€‹Router::get("/catalog", function ($request, $response) {    $allProducts = [        ["name" => "Espresso Machine", "category" => "Kitchen", "price" => 299.99, "in_stock" => true, "featured" => true],        ["name" => "Yoga Mat", "category" => "Fitness", "price" => 29.99, "in_stock" => true, "featured" => false],        ["name" => "Standing Desk", "category" => "Office", "price" => 549.99, "in_stock" => true, "featured" => true],        ["name" => "Blender", "category" => "Kitchen", "price" => 89.99, "in_stock" => false, "featured" => false],        ["name" => "Running Shoes", "category" => "Fitness", "price" => 119.99, "in_stock" => true, "featured" => false],        ["name" => "Desk Lamp", "category" => "Office", "price" => 39.99, "in_stock" => true, "featured" => true],        ["name" => "Cast Iron Skillet", "category" => "Kitchen", "price" => 44.99, "in_stock" => true, "featured" => false]    ];โ€‹    // Get unique categories    $categories = array_unique(array_column($allProducts, "category"));    sort($categories);โ€‹    // Filter by category if specified    $activeCategory = $request->params["category"] ?? "";    if (!empty($activeCategory)) {        $products = array_values(array_filter(            $allProducts,            fn($p) => strtolower($p["category"]) === strtolower($activeCategory)        ));    } else {        $products = $allProducts;    }โ€‹    return $response->render("catalog.twig", [        "products" => $products,        "categories" => $categories,        "active_category" => $activeCategory    ]);});

Expected browser output for /catalog:

  • A dark header with "Product Catalog" and "7 products"
  • Filter buttons: All (active), Fitness, Kitchen, Office
  • A grid of 7 product cards
  • Three cards (Espresso Machine, Standing Desk, Desk Lamp) have a gold border and "Featured" badge
  • The Blender card shows an "Out of Stock" badge in red

Expected browser output for /catalog?category=Kitchen:

  • Header shows "3 products in Kitchen"
  • The Kitchen filter button is active
  • Three cards: Espresso Machine, Blender, Cast Iron Skillet

13. Gotchas#

1. {% extends %} Must Be the First Tag#

Problem: Template inheritance does not work. The page renders without the base layout.

Cause: {% extends "base.twig" %} must be the very first tag. Any text, whitespace, or comment before it breaks inheritance.

Fix: Put {% extends %} on the absolute first line. Move {% from %} imports after it.

2. Undefined Variables Show Nothing#

Problem: {{ username }} renders as blank instead of an error.

Cause: Frond silently outputs nothing for undefined variables. By design, like Twig. But it hides bugs.

Fix: Use the default filter: {{ username | default("Guest") }}. Or check with {% if username is defined %}.

3. Auto-Escaping Prevents HTML Output#

Problem: HTML content like "<strong>bold</strong>" appears as literal text.

Cause: Auto-escaping converts < to &lt; and > to &gt; for security.

Fix: Trusted content: {{ content | raw }}. Never use raw on user-supplied input.

4. Variable Scope in Includes#

Problem: A variable defined inside a {% for %} loop is not accessible after the loop ends.

Cause: Loop variables are scoped to the loop. They do not leak.

Fix: Use {% set %} before the loop and update inside it. Or restructure to keep all logic within the loop.

5. Macro Arguments Are Positional#

Problem: {{ button("Click", style="danger") }} does not work.

Cause: Frond macros use positional arguments. Order matters. Keyword arguments are not supported.

Fix: Pass arguments in definition order: {{ button("Click", "/url", "danger") }}. For many optional arguments, pass a single object.

6. Template File Extension Does Not Matter#

Problem: Unsure whether to use .html, .twig, or .tpl.

Cause: Frond processes any file in src/templates/ regardless of extension.

Fix: Pick one extension. Be consistent. This book uses .twig for templates with Twig syntax and .html for simple files. Both work identically.

7. Filters Are Not PHP Functions#

Problem: {{ items | count }} or {{ name | strtoupper }} causes an error.

Cause: Frond filters follow Twig conventions, not PHP function names.

Fix: {{ items | length }} not count. {{ name | upper }} not strtoupper. {{ text | lower }} not strtolower. See the filter table in section 7.