46 lines
1.9 KiB
Twig
46 lines
1.9 KiB
Twig
{% extends 'faq/base.html.twig' %}
|
|
|
|
{% block title %}FAQ{% endblock %}
|
|
|
|
{% block body %}
|
|
{{ parent() }}
|
|
<nav class='faq-nav'>
|
|
<ul>
|
|
<li>
|
|
<a href="{{ path('doc_faq') }}" class='hover-effect active'>FAQ</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('doc_help') }}" class='hover-effect'>Help</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('doc_about') }}" class='hover-effect'>About</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('doc_contact') }}" class='hover-effect'>Contact</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('doc_tags') }}" class='hover-effect'>Tags</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('doc_groups') }}" class='hover-effect'>Groups</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('doc_api') }}" class='hover-effect'>API</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('doc_openid') }}" class='hover-effect'>OpenID</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="content">
|
|
{% apply markdown_to_html %}
|
|
## What is this site?
|
|
This is a social network, running the GNU social software.
|
|
|
|
You can use it to make connections between friends, family and colleagues -- writing short notices about yourself, where you are, and what you're doing, and those notices will be sent to all your contacts.
|
|
|
|
In the future, we'll be adding support for photo, video and file sharing, as well as events, better contact management and mobile devices.
|
|
{% endapply %}
|
|
</div>
|
|
{% endblock %} |