{% set _href = "/gists/" ~ (item.gist['slug'] or item.gist['uid']) %}
{% set _label = item.gist['title'] %}
{% include "_card_link.html" %}
{{ render_title(item.gist['title']) }}
{% set _type = "gist" %}{% set _uid = item.gist['uid'] %}{% set _my_vote = item.my_vote %}{% set _count = item.gist.get('stars', 0) %}{% set _btn_class = "gist-card-star" %}{% set _stop = True %}{% include "_star_vote.html" %}
📝 {{ language_name(item.gist['language']) }}
{% if item.gist.get('description') %}
{{ item.gist['description'][:200] }}{% if item.gist['description']|length > 200 %}...{% endif %}
{% endif %}
{% if item.recent_comments %}
{% from "_comment.html" import render_comment with context %}
{% for c in item.recent_comments %}
{{ render_comment(c, 0) }}
{% endfor %}
{% endif %}
{% set _comment_target_uid = item.gist['uid'] %}{% set _comment_target_type = "gist" %}{% include "_comment_form.html" %}