Files
ivatar/templates/home.html
Oliver Falk 516b31a69c Home page
2018-05-16 13:18:24 +02:00

41 lines
2.3 KiB
HTML

{% extends 'base.html' %}
{% load i18n %}
{% load bootstrap4 %}
{% block title %}ivatar - {% trans 'federated avatar hosting service' %}{% endblock %}
{% block content %}
{% url 'new_account' as new_account_url %}
<div id="action-panel">
{% if not user.is_authenticated and not disable_signup %}
<p>{% blocktrans %}Create a <a href="{{ new_account_url }}">free account</a>{% endblocktrans %}</p>
{% endif %}
<p>{% trans 'Download the <a href="https://github.com/ofalk/ivatar">source code</a>' %}</p>
<p>{% trans 'File <a href="https://github.com/ofalk/ivatar/issues">bugs</a>' %}</p>
<p>{% trans 'Read our <a href="https://github.com/ofalk/ivatar/wiki">wiki</a>' %}</p>
<!--
<p>{% trans 'Follow us on <a href="https://identi.ca/libravatar">Identica</a>' %} / <a href="https://twitter.com/libravatar">Twitter</a></p>
<p id="contribute-button"><a href="https://wiki.libravatar.org/contribute/">{% trans 'Contribute!' %}</a></p>
-->
</div>
<p>{% blocktrans %}ivatar is a service which delivers your avatar (profile picture) to other websites. If you <a href="{{ new_account_url }}">create an account</a> with us, your photo could start popping up next to forum posts or blog comments on any site where you left your email address.{% endblocktrans %} {% trans '<a href="https://github.com/ofalk/ivatar/wiki">Read more...</a>' %}</p>
<h2>{% trans 'Federated Open Source Service' %}</h2>
<p>{% trans 'This service is powered by <a href="https://www.gnu.org/licenses/agpl.html">Free and Open Source software</a> and allows owners of a domain name to <a href="https://github.com/ofalk/ivatar/wiki/running_your_own/">run their own instance</a> of ivatar and serve avatars themselves.' %}</p>
<h2>{% trans 'Simple API for Developers' %}</h2>
<p>{% trans 'Application developers can easily add support for this service using our <a href="https://github.com/ofalk/ivatar/wiki/api">simple API</a> or one of the <a href="https://github.com/ofalk/ivatar/wiki/libraries">libraries and plugins</a> available for a number of platforms and languages.' %}</p>
<!--
<p>{% trans 'Big thanks to our sponsors without whom none of this would be possible!' %}</p>
<div id="sponsors">
<a href="https://www.rackspace.com/"><img src="/img/rackspace.png" title="Rackspace" alt="{% trans 'Rackspace Logo' %}" width="154" height="46"></a>
</div>
-->
{% endblock %}