Created
May 5, 2014 09:06
-
-
Save arth2o/44d88b6bdb81c06c8f2a to your computer and use it in GitHub Desktop.
Twig cheatsheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Twig list and dinamic url | |
{% extends 'GleamPageBundle::base.html.twig' %} | |
{% block body %} | |
{% if pages %} | |
<ul> | |
{% for page in pages %} | |
<li><a href="{{ path('gleam_page_showcontent', {'id': page.id}) }}" target="_blank" title="{{ page.title }}">{{ page.title }}</a></li> | |
{% endfor %} | |
</ul> | |
{% endif %} | |
{% endblock %} | |
------------------------------------- | |
------------------------------------- | |
------------------------------------- | |
------------------------------------- | |
------------------------------------- | |
------------------------------------- | |
------------------------------------- | |
------------------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment