Skip to content

Instantly share code, notes, and snippets.

@dsyph3r
Created March 21, 2011 20:07
Show Gist options
  • Save dsyph3r/880106 to your computer and use it in GitHub Desktop.
Save dsyph3r/880106 to your computer and use it in GitHub Desktop.
Blog: Symfony 2, Doctrine 2 and Twig: First impressions
{% block sidebar %}
<h3>Navigation</h3>
{{ parent() }}
{% endblock %}
<ul>
{% for foo in bar %}
<li>{{ foo.name }}</li>
{% else %}
<li>No foo found</li>
{% endfor %}
</ul>
clients:
resource: "@ClientAdminBundle/Resources/config/routing.yml"
prefix: /clients
{% block sidebar %}
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
{% endblock %}
./app/console doctrine:schema:update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment