Fix wording

This commit is contained in:
vas3k
2020-01-05 20:57:45 +01:00
parent d9f59e8d68
commit e70d4da417
4 changed files with 7 additions and 5 deletions

View File

@@ -88,7 +88,7 @@ CSS_HASH = str(random())
# App settings
APP_NAME = "Infomate"
APP_TITLE = "Смотри, что читают другие"
APP_TITLE = "Читай то, что читают другие"
APP_DESCRIPTION = ""
APP_HOST = "https://infomate.club"

View File

@@ -313,9 +313,11 @@
}
.logout-button {
display: inline-block;
color: var(--opposite-text-color) !important;
font-size: 90%;
padding: 5px 15px;
margin-top: 40px;
}
.privacy-policy {

View File

@@ -1,10 +1,10 @@
{% extends "layout.html" %}
{% block title %}{{ block.super }} | {{ settings.APP_TITLE }}{% endblock %}
{% block title %}{{ block.super }} {{ settings.APP_TITLE }}{% endblock %}
{% block content %}
<div class="landing-top">
<h2 class="landing-top-title">Смотри, что читают другие. Формируй своё инфополе.</h2>
<h2 class="landing-top-title">Читай то, что читают другие. Формируй собственное инфополе.</h2>
</div>
<div class="landing-boards">

View File

@@ -32,10 +32,10 @@
{% block footer %}
<div class="footer">
Сделал <a href="https://vas3k.ru">Вастрик</a>.<br>
Сделал <a href="https://vas3k.ru">Вастрик</a>.<br><br>
Сайт использует <a href="https://ru.wikipedia.org/wiki/Cookie" target="_blank">куки</a> для авторизации<br> и <a href="{% url "privacy_policy" %}">не собирает данные</a> больше, чем нужно.
{% if me %}
<br><br><a href="{% url "logout" %}" class="button logout-button">Выйти</a>
<br><a href="{% url "logout" %}" class="button logout-button">Выйти</a>
{% endif %}
</div>
{% endblock %}