diff --git a/pelicanconf.py b/pelicanconf.py index 581cb62..b4870d7 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -28,6 +28,8 @@ USE_FOLDER_AS_CATEGORY = True DEFAULT_PAGINATION = False +TEMPLATE_PAGES = {'home.html': 'index.html',} + # Uncomment following line if you want document-relative URLs when developing #RELATIVE_URLS = True diff --git a/themes/default/templates/home.html b/themes/default/templates/home.html new file mode 100644 index 0000000..d5c71ee --- /dev/null +++ b/themes/default/templates/home.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block content %} + +{% block content_title %} +{% endblock %} + +:) + +{% endblock content %}