20 lines
400 B
HTML
20 lines
400 B
HTML
{% extends 'main/pagetemplate.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block additional_css %}
|
|
<link rel="stylesheet" href="{% static 'faerun_calendar/css/main.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block pagetitle %}
|
|
Календарь
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="calendarpage">
|
|
<h1 class="title">Календарь</h1>
|
|
{% include 'faerun_calendar/calendar.html' %}
|
|
</div>
|
|
{% endblock %}
|
|
|