11 lines
296 B
HTML
11 lines
296 B
HTML
|
{% extends 'base.html' %}
|
||
|
{% block head %}
|
||
|
<link rel="stylesheet" href="{{ SITE_URL }}/{{ THEME_STATIC_DIR }}/css/index.css" type="text/css"">
|
||
|
{% endblock head %}
|
||
|
|
||
|
{% set index = (hidden_pages|pages_get_page_with_slug_index) %}
|
||
|
|
||
|
{% block content %}
|
||
|
{{ index.content }}
|
||
|
{% endblock content %}
|