Files
infomate.club/templates/index.html
2020-09-03 20:01:02 +02:00

18 lines
700 B
HTML

{% extends "layout.html" %}
{% block title %}{{ block.super }} — {{ settings.APP_TITLE }}{% endblock %}
{% block content %}
<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>
{% if board.curator_title %}
<span class="landing-board-title">{{ board.curator_title }}</span>
{% endif %}
</a>
{% endfor %}
</div>
{% endblock %}