Skip to content

Instantly share code, notes, and snippets.

@renatooliveira
Created April 4, 2013 13:43
Show Gist options
  • Save renatooliveira/5310428 to your computer and use it in GitHub Desktop.
Save renatooliveira/5310428 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% load gravatar %}
{% block title %}{{ talk.title }} | {% endblock %}
{% block content %}
<article role="article" id="palestra">
<h3>Palestra</h3>
<div class="article-content">
<article class="talk">
<h3>{{ talk.title }}</h3>
<p>{{ talk.abstract }}</p>
<h3>Referências</h3>
<ul>
{% for ref in talk.references.all %}
<li><a href="{{ ref.url }}">{{ ref.url }}</a></li>
{% endfor %}
</ul>
</article>
</div>
</article>
<article role="article" id="palestrante">
<h3>Palestrante</h3>
<div class="article-content">
<article class="talk">
<img class="img-polaroid" src="{% gravatar_for_email '{{ talk.speaker.email }}' %}" alt="{{ talk.speaker.name }}" />
<h3>{{ talk.speaker.name }}</h3>
{% if talk.speaker.twitter_profile %}
<p>Twitter: <a href="{{ talk.speaker.get_twitter_url }}">{{ talk.speaker.twitter_profile }}</a></p>
{% endif %}
<p>{{ talk.speaker.short_bio }}</p>
</article>
</div>
</article>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment