forked from varia/varia.website
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.
17 lines
450 B
17 lines
450 B
6 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="{{ DEFAULT_LANG }}">
|
||
|
<head>
|
||
|
{% block head %}
|
||
|
<title>{% block title %}{{ SITENAME }} {{SITESUBTITLE}}{% endblock title %}</title>
|
||
|
<meta charset="utf-8" />
|
||
|
<link rel="icon" href="{{ SITEURL }}/favicon.ico" type="image/x-icon">
|
||
|
<link rel="stylesheet" type="text/css" href="{{ THEME_STATIC_DIR }}/css/stylesheet.css">
|
||
|
{% endblock %}
|
||
|
</head>
|
||
|
|
||
|
<body id="index" class="home">
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
</body>
|
||
|
</html>
|