Files
infomate.club/templates/index.html
vas3k 154aab0da3 MVP
2020-01-05 12:23:57 +01:00

20 lines
650 B
HTML

{% extends "layout.html" %}
{% block title %}{{ block.super }} | {{ settings.APP_TITLE }}{% endblock %}
{% block content %}
<div class="landing-top">
<h2>{{ settings.APP_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 }}');"></span>
<span class="landing-board-name">{{ board.curator_name }}</span>
<span class="landing-board-title">{{ board.curator_title }}</span>
</a>
{% endfor %}
</div>
{% endblock %}