15 lines
328 B
HTML
15 lines
328 B
HTML
{%- import "utils.html" as utils with context -%}
|
|
{% extends "layout.html" %}
|
|
|
|
{% block head %}
|
|
<title>blog.zak - Snippets</title>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% for anybox_object in threads %}
|
|
<div class="actor-action"></div>
|
|
{{ utils.display_object(anybox_object, is_code=True) }}
|
|
{% endfor %}
|
|
{% endblock %}
|