source.html.twig 1.2 KB

123456789101112131415161718192021222324
  1. {% extends 'doc/base.html.twig' %}
  2. {% block title %}Source{% endblock %}
  3. {% block body %}
  4. {{ parent() }}
  5. <div class='content'>
  6. <div class='markd markd-single'>
  7. {% block markdown %}
  8. {% apply markdown_to_html %}
  9. ## Source
  10. This service uses a Free microblogging tool called GNU social. GNU social is available under the GNU Affero General Public License Version 3.0, a Free Software license for network services.
  11. You can get a copy of the software by following links from the GNU social main site¹. The version of the software that runs on this site is unmodified from that version. The site also depends on certain libraries and other software; these are all bundled in the GNU social repository² and release archive files.
  12. ## References
  13. - GNU social main site, https://gnu.io
  14. - GNU social repository, https://notabug.org/gnu/gnu-social
  15. {% endapply %}
  16. {% endblock %}
  17. </div>
  18. </div>
  19. {% endblock %}