userscripts/index.html

19 lines
539 B
HTML
Raw Normal View History

2016-12-02 13:27:56 -06:00
---
title: Userscripts
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>{{ page.title }}</title>
</head>
<body>
<ul>
{% for script in site.userscripts %}
<li><a href="{{ site.baseurl }}/{{ script.file }}">{{ script.name }}</a><br/>
Bookmarklet <a href="javascript:(function(){var e=document.createElement('script');e.src='{{ site.url }}{{ site.baseurl }}/{{ script.file }}';document.body.appendChild(e);})()">{{ script.name }}</a></li>
{% endfor %}
</ul>
</body>
</html>