kristofersxyz/templates/main/index.html
2022-08-06 16:17:18 +03:00

13 lines
373 B
HTML

{% extends 'layout.html' %}
{% load static %}
{% block title %} {{ title }} {% endblock %}
{% block meta %}
<link rel="stylesheet" href="{% static 'css/index.css' %}" />
{% endblock %}
{% block content %}
<div>
<p>At the moment this website is under construction.</p>
<p>For now you can check out <a href="">karbs</a>.</p>
</div>
{% endblock %}