forked from wezm/wezm.net
8 lines
198 B
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>
|