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