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

9 lines
198 B
HTML
Raw Normal View History

2020-09-05 02:34:13 +00:00
{% 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>