Skip to content

Instantly share code, notes, and snippets.

@arth2o
Created May 5, 2014 09:06
Show Gist options
  • Save arth2o/44d88b6bdb81c06c8f2a to your computer and use it in GitHub Desktop.
Save arth2o/44d88b6bdb81c06c8f2a to your computer and use it in GitHub Desktop.
Twig cheatsheet
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