You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
{% load static %} |
|
|
|
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width,initial-scale=1"> |
|
<title>{% block title %}lonk{% endblock %}</title> |
|
<link rel="stylesheet" href="{% static 'css/index.css' %}"> |
|
{# <link rel="stylesheet" href="{% static 'css/normalize.css' %}">#} |
|
{# <link rel="stylesheet" href="{% static 'forkawesome/css/fork-awesome.css' %}">#} |
|
{# <link rel="stylesheet" href="{% static 'css/terminal.css' %}">#} |
|
{# <link rel="stylesheet" href="{% static 'entropybase/base.css' %}">#} |
|
|
|
{% block meta %}{% endblock %} |
|
{% block css %}{% endblock %} |
|
</head> |
|
<body> |
|
<header> |
|
<nav> |
|
{# <a href="{% url 'interface.domain.create' %}">+ domain</a>#} |
|
<a href="{% url 'interface.overview' %}">Home</a> |
|
<a href="{% url 'interface.link.create' %}">Create Lonk</a> |
|
{# <a href="{% url '' %}"></a>#} |
|
</nav> |
|
</header> |
|
<main> |
|
{% block main %}{% endblock %} |
|
</main> |
|
{% block js %}{% endblock %} |
|
</body> |
|
</html>
|
|
|