Skip to content

Instantly share code, notes, and snippets.

@issackelly
Created December 10, 2010 19:56
Show Gist options
  • Save issackelly/736712 to your computer and use it in GitHub Desktop.
Save issackelly/736712 to your computer and use it in GitHub Desktop.
How to use biblion tags in your template...untested
{% load biblion_tags %} <!-- at the top of the page -->
{% latest_blog_posts as posts %}<!-- gets 5 posts -->
{% for post in posts %}
{% if forloop.first %}
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
{{ post.content_html|truncatewords_html:30 }}
{% else %}
<h3><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h3>
{{ post.content_html|truncatewords_html:15 }}
{% endif %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment