contact.html.twig 980 B

12345678910111213141516171819202122
  1. {% extends 'doc/faq/faq.html.twig' %}
  2. {% block title %}Contact us!{% endblock %}
  3. {% block body %}
  4. {{ parent() }}
  5. {% endblock %}
  6. {% block nav %}
  7. {{ parent() }}
  8. {% endblock %}
  9. {% block markdown %}
  10. {% apply markdown_to_html %}
  11. ## Bugs
  12. If you think you've found a bug in the underlying [GNU social](https://gnu.io/social/) software, or if there's a new feature you'd like to see, add it into the [GNU social task list](https://git.gnu.io/gnu/gnu-social/issues). Don't forget to
  13. check the list of existing bugs to make sure it hasn't already been reported! ## Post a notice If you have a question about how to do something, just post a notice with your question, preferably tagged with #NewHere. Watch your inbox for replies.
  14. ## Post a notice
  15. If you have a question about how to do something, just post a notice with your question, preferably tagged with #NewHere. Watch your inbox for replies.
  16. {% endapply %}
  17. {% endblock %}