Skip to content

Instantly share code, notes, and snippets.

@cblte
Created November 14, 2012 20:20
Show Gist options
  • Save cblte/4074505 to your computer and use it in GitHub Desktop.
Save cblte/4074505 to your computer and use it in GitHub Desktop.
<div class="item-header">
{% if post.exturl %}
<h1>
<a href="{{ post.exturl }}" title="Link zu {{ post.exturl }}" target="_blank">{{ post.title }}</a>
</h1>
{% else %}
<h1>{{ post.title }}</h1>
{% endif %}
<h2>{{ post.date }}{% if post.tags %} <span>&raquo;</span> {% for tag in post.tags %}<a href="{{ get_url(tags[tag].url) }}">{{ tag }}</a>{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}</h2>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment