Created
April 25, 2016 17:11
-
-
Save hoosteeno/7d240b5f67a88bfbe33c72f990b886cb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
--- | |
model: | |
conferences: conferences | |
this_conf: berlin | |
--- | |
<ul> | |
{% for conference in model.conferences %} | |
<li> | |
<a href="/{{ conference.folder }}">{{ conference.location }} - {{conference.date}}</a> | |
</li> | |
{% if conference.slug == this_conf %} | |
<h3>This is berlin</h3> | |
{% endif %} | |
{% endfor %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment