mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
17 lines
472 B
HTML
17 lines
472 B
HTML
{% extends 'layout.html' %}
|
|
{% load static %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block meta %}
|
|
<link rel="stylesheet"
|
|
type="text/css"
|
|
href="{% static 'main/css/index.css' %}"/>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="center">
|
|
<p>At the moment this website is under construction.</p>
|
|
<p>
|
|
For now you can check out <a href="{% url 'instructions' %}">KARBS</a>.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|