Files
infomate.club/templates/index.html
2020-01-05 20:57:45 +01:00

20 lines
813 B
HTML

{% extends "layout.html" %}
{% block title %}{{ block.super }} — {{ settings.APP_TITLE }}{% endblock %}
{% block content %}
<div class="landing-top">
<h2 class="landing-top-title">Читай то, что читают другие. Формируй собственное инфополе.</h2>
</div>
<div class="landing-boards">
{% for board in boards %}
<a class="landing-board" href="{% url "board" board.slug %}">
<span class="avatar landing-board-avatar" style="background-image: url('{{ board.avatar }}'), linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);"></span>
<span class="landing-board-name">{{ board.curator_name }}</span>
<span class="landing-board-title">{{ board.curator_title }}</span>
</a>
{% endfor %}
</div>
{% endblock %}