wezm.net/v2/templates/shortcodes/tweet_list.html

8 lines
198 B
HTML

{% set tweets = load_data(path="content/posts/2020/100-rust-binaries/tweets.json", format="json") %}
<ol>
{% for tweet in tweets %}
<li>
{{ tweet.html | safe }}
</li>
{% endfor %}
</ol>