diff options
Diffstat (limited to '')
-rw-r--r-- | _layouts/post.html | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 13dbf21..345f781 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -19,10 +19,7 @@ layout: default </audio> <div class="torrent-link"> - {% capture torrent-file %}{{ ogg | absolute_url | append: ".torrent" }}{% endcapture %} - <a href="{{ torrent-file }}">torrent</a> - | - <a href="/torrent.html?torrent={{ torrent-file | uri_escape }}">online webtorrent</a> + <a href="{{ ogg | absolute_url | append: ".torrent" }}">torrent</a> </div> {% endif %} @@ -33,10 +30,7 @@ layout: default </video> <div class="torrent-link"> - {% capture torrent-file %}{{ webm | absolute_url | append: ".torrent" }}{% endcapture %} - <a href="{{ torrent-file }}">torrent</a> - | - <a href="/torrent.html?torrent={{ torrent-file | uri_escape }}">online webtorrent</a> + <a href="{{ webm | absolute_url | append: ".torrent" }}">torrent</a> </div> {% endif %} |