Added a FAQ
[bigly] / src / bigly / templates / bigly / faq.html
1 {% extends 'bigly/_base.html' %}
2
3 {% block body %}
4 <h1>FAQ</h1>
5
6 <section class='faq'>
7 <p class='faq-question'>What is this?</p>
8 <p>
9   Bigly is the opposite of Bit.ly: it's a link unshortener. Put in a link that
10   has been shortened using Bit.ly, TinyURL, Short.io, or any similar site, and
11   get back the longer link that the shortened URL points to.
12 </p>
13
14 <p class='faq-question'>Why?</p>
15 <p>
16   URL shorteners often collect data about the people using their service,
17   violating your privacy. Bigly doesn't do that: the code is libre software,
18   so you can verify that yourself by looking at the code.
19 </p>
20 <p>
21   Additionally, shortened URLs can be used to mask links to malicious or NSFW
22   websites. Bigly lets you see where the link is taking you before you go to it.
23 </p>
24 </section>
25 {% endblock %}