"The flexible, fast, and secure
template engine for PHP"
<?php echo htmlspecialchars($var, ENT_QUOTES, 'UTF-8') ?> {{ var }}<?php if ($items): ?>
<?php foreach ($item as $item): ?>
* <?php echo $item; ?>
<?php endforeach; ?>
<?php else : ?>
No items have been found
<?php endif; ?>{% for items in items %}* {{ item }}{% else %}No items have been found{% endfor %}
<!-- base.html.twig --> <html><body>{% block content %}{% endblock %} </body> </html>
<!-- index.html.twig -->{% extends "base.html.twig" %}{% block content %}Some content{% endblock %}
