version.html.twig 1.5 KB

1234567891011121314151617181920212223242526272829
  1. {% extends 'doc/base.html.twig' %}
  2. {% block title %}Version{% endblock %}
  3. {% block body %}
  4. {{ parent() }}
  5. <div class='content'>
  6. <div class='markd'>
  7. {% block markdown %}
  8. {% apply markdown_to_html %}
  9. ## GNU social 3
  10. This site is powered by GNU social version 3, Copyright 2010 Free Software Foundation, Inc.
  11. ## Contributors
  12. See https://notabug.org/diogo/gnu-social/src/nightly/CREDITS.md for a full list of contributors.
  13. ##License
  14. GNU social is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
  15. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
  16. You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/agpl.html.
  17. {% endapply %}
  18. {% endblock %}
  19. </div>
  20. </div>
  21. {% endblock %}