{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

Gists

Share and discover code snippets
{{ total_count }} gist{{ 's' if total_count != 1 else '' }}
{% for item in gists %}

{{ item.gist['title'] }}

📝 {{ language_name(item.gist['language']) }}
{% if item.gist.get('description') %}
{{ item.gist['description'][:200] }}{% if item.gist['description']|length > 200 %}...{% endif %}
{% endif %}
{% else %}
No gists found. Create one!
{% endfor %}
{% if user %} {% endif %} {% endblock %} {% block extra_js %} {% endblock %}