Skip to content

Instantly share code, notes, and snippets.

@jc4p
Forked from milank-s/category_lists.html
Last active January 3, 2017 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jc4p/9adb705c324a7c477270076dca0ffd84 to your computer and use it in GitHub Desktop.
Save jc4p/9adb705c324a7c477270076dca0ffd84 to your computer and use it in GitHub Desktop.
<p class="category col two"><em>{{ category.title }}</em></p>
<ul class="project-list col seven">
{% foreach post in category.posts %}
<li>
<div class="thumbnail col two">
<img src="{{ post.thumb }}" alt=""></a>
</div>
<div class="summary col two">
<p><a href="{{ url_for(post) }}">{{ post.title }}</a></p>
<p><em>{{ post.date|relative }}</em></p>
<p><em class="background">{{ post.keywords|commaify }}</em></p>
</div>
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment