mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-16 13:08:03 +00:00
Merge branch 'fix_site_name' into 'devel'
differentiate between software (ivatar) and a site_name See merge request oliver/ivatar!105
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
{% load i18n %}<!DOCTYPE HTML>
|
{% load i18n %}<!DOCTYPE HTML>
|
||||||
{% include 'header.html' %}
|
{% include 'header.html' %}
|
||||||
<title>iVatar :: {% block title %}{% trans 'Freeing the Web, one face at a time!' %}{% endblock title %}</title>
|
<title>{{ site_name }} :: {% block title %}{% trans 'Freeing the Web, one face at a time!' %}{% endblock title %}</title>
|
||||||
|
|
||||||
{% spaceless %}
|
{% spaceless %}
|
||||||
<div id="page">
|
<div id="page">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
{% load i18n %}<!DOCTYPE HTML>
|
{% load i18n %}<!DOCTYPE HTML>
|
||||||
{% include 'header.html' %}
|
{% include 'header.html' %}
|
||||||
<title>iVatar :: {% block title %}{% trans 'Freeing the Web, one face at a time!' %}{% endblock title %}</title>
|
<title>{{ site_name }} :: {% block title %}{% trans 'Freeing the Web, one face at a time!' %}{% endblock title %}</title>
|
||||||
{% if not user.is_anonymous %}
|
{% if not user.is_anonymous %}
|
||||||
{% include 'navbar.html' %}
|
{% include 'navbar.html' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<div class="hero">
|
<div class="hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<header>
|
<header>
|
||||||
<h1>{% trans 'ivatar' %}</h1>
|
<h1>{{ site_name }}</h1>
|
||||||
<h2>{% trans 'freeing the web one face at a time' %}</h2>
|
<h2>{% trans 'freeing the web one face at a time' %}</h2>
|
||||||
<a href="/accounts/login/" class="btn btn-lg btn-primary">{% trans 'Login' %}</a>
|
<a href="/accounts/login/" class="btn btn-lg btn-primary">{% trans 'Login' %}</a>
|
||||||
<a href="/accounts/new/" class="btn btn-lg btn-primary">{% trans 'Sign up' %}</a>
|
<a href="/accounts/new/" class="btn btn-lg btn-primary">{% trans 'Sign up' %}</a>
|
||||||
@@ -25,14 +25,14 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h2>{% trans 'The open avatar service' %}</h2>
|
<h2>{% trans 'The open avatar service' %}</h2>
|
||||||
<p class="lead">{% blocktrans %}ivatar is a service which delivers your avatar (profile picture) to other websites. If you create an account 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 %}<br>
|
<p class="lead">{% blocktrans %}{{ site_name }} is a service which delivers your avatar (profile picture) to other websites. If you create an account 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 %}<br>
|
||||||
<a href="https://wiki.libravatar.org/description/">{% trans 'Read more...' %}</a></p>
|
<a href="https://wiki.libravatar.org/description/">{% trans 'Read more...' %}</a></p>
|
||||||
</div>
|
</div>
|
||||||
<hr/>
|
<hr/>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<section class="col-md-8">
|
<section class="col-md-8">
|
||||||
<h1>{% trans 'Federated Open Source Service' %}</h1>
|
<h1>{% trans 'Federated Open Source Service' %}</h1>
|
||||||
<p class="lead">{% 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://wiki.libravatar.org/running_your_own/">run their own instance</a> of ivatar and serve avatars themselves.' %}</p>
|
<p class="lead">{% trans 'This service is powered by <a href="https://www.gnu.org/licenses/agpl.html">Free and Open Source software</a> called <a href="https://git.linux-kernel.at/oliver/ivatar">ivatar</a>. With this software you can also <a href="https://wiki.libravatar.org/running_your_own/">run your own instance</a> and serve avatars yourself.' %}</p>
|
||||||
<hr>
|
<hr>
|
||||||
<h1>{% trans 'Simple API for Developers' %}</h1>
|
<h1>{% trans 'Simple API for Developers' %}</h1>
|
||||||
<p class="lead">{% trans 'Application developers can easily add support for this service using our <a href="https://wiki.libravatar.org/api/">simple API</a> or one of the <a href="https://wiki.libravatar.org/libraries/">libraries and plugins</a> available for a number of platforms and languages.' %}</p>
|
<p class="lead">{% trans 'Application developers can easily add support for this service using our <a href="https://wiki.libravatar.org/api/">simple API</a> or one of the <a href="https://wiki.libravatar.org/libraries/">libraries and plugins</a> available for a number of platforms and languages.' %}</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user