15 lines
235 B
HTML
15 lines
235 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="content">
|
|
Dobro pozhalovat. AGAIN.
|
|
</div>
|
|
|
|
{% for board in boards %}
|
|
<div class="link">
|
|
<a href="{{board}}">/{{board}}</a>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
{% endblock content %} |