Twig is a simple template system used in Symfony and Slim Framework. This is something different to implement your code in HTML file as other frameworks or CMS. If you want to implement conditional statement(if else) in twig template system. You can follow the below example for the same.
<table class="table">
{% if posts == false %}
<!-- You can put your code over here for if condition -->
<div>Sorry you have no post to display.</div>
{% else %}
<!-- You can put your code over here for else condition -->
<div>Yes you have some posts......................</div>
{% endif %}
</table>
0 Comment(s)