rushlink/assets/templates/html/index.html.tmpl

26 lines
740 B
Cheetah
Raw Normal View History

2019-09-15 19:51:54 +02:00
{{define "body"}}
<pre>
2019-08-25 21:33:56 +02:00
#RU URL SHORTENER
=================
Based on https://0x0.st/, this site allows you to easily shorten URLs using
the command line.
## USAGE
# Upload a file
curl -F'file=@yourfile.png' <a href="{{.Host}}">{{.Host}}</a>
2019-08-25 21:33:56 +02:00
# Shorten a URL
curl -F'shorten=http://example.com/some/long/url' <a href="{{.Host}}">{{.Host}}</a>
# The first line of the result will contain the shortened URL.
#
# In the other lines, you will find other information, including
# information on how to delete the shortened object.
# To upload a file and only extract the shortened URL (i.e. throw away the rest)
curl -F'file=@yourfile.png' <a href="{{.Host}}">{{.Host}}</a> | head -n 1
2019-09-15 19:51:54 +02:00
</pre>
{{end}}