diff --git a/404.html b/404.html deleted file mode 100644 index cc2ba6e..0000000 --- a/404.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "index.html" %} - -{% block title %} -404 | {{ config.title }} -{% endblock title %} - -{% block header_menu %} -{{ menu_macros::menu_for(config=config, current_item="") }} -{% endblock header_menu %} - -{% block content %} -
-

{% block heading %}Lost?{% endblock heading %}

-

{% block message %}This page does not exist.{% endblock message %}

-
-{% endblock content %} diff --git a/archive.html b/archive.html deleted file mode 100644 index af9df6e..0000000 --- a/archive.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "index.html" %} - -{%- block title -%} -{{ title_macros::title(page_title=page.title, main_title=config.title) }} -{%- endblock -%} - -{% block content %} -
-

{{ page.title }}

- - {% set section = get_section(path="_index.md") %} - - {{ post_macros::list_posts(pages=section.pages) }} -
-{% endblock content %} diff --git a/index.html b/index.html deleted file mode 100644 index 8b67c98..0000000 --- a/index.html +++ /dev/null @@ -1,132 +0,0 @@ -{% import "macros/date.html" as date_macros -%} -{% import "macros/head.html" as head_macros -%} -{% import "macros/menu.html" as menu_macros -%} -{% import "macros/post.html" as post_macros -%} -{% import "macros/title.html" as title_macros -%} - - - - - - {%- block title %}{{ config.title }}{% endblock title -%} - {{ head_macros::head(config=config) }} - - {%- block open_graph %}{{ head_macros::open_graph(config=config) }}{% endblock open_graph -%} - - {%- if config.generate_feed %} - {%- if "rss" in config.feed_filename %} - {% set feed_type = 'rss+xml' %} - {%- else %} - {% set feed_type = 'atom+xml' %} - {% endif -%} - - {% endif -%} - - {%- if config.extra.favicon %} - - {% endif -%} - - {%- block extra_head %} - {% endblock extra_head -%} - - - -
- {% block header %} -
-
- -
- - {% block header_menu %} - {{ menu_macros::menu(config=config, current_path=current_path) }} - {% endblock header_menu %} -
- {% endblock header %} - -
- {% block content %} -
- {%- if paginator %} - {%- set show_pages = paginator.pages -%} - {% else %} - {%- set show_pages = section.pages -%} - {% endif -%} - - {%- for page in show_pages %} -
- {{ post_macros::header(page=page) }} - - {{ post_macros::content(page=page, summary=true, show_only_description=page.extra.show_only_description | default(value=false)) }} -
- {% endfor -%} - -
- {% endblock content %} -
- - {% block footer %} - - {% endblock footer %} - -
-{%- block extra_body %} -{% endblock extra_body -%} - - - diff --git a/page.html b/page.html deleted file mode 100644 index 9dea4cc..0000000 --- a/page.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "index.html" %} - -{%- block title -%} -{{ title_macros::title(page_title=page.title, main_title=config.title) }} -{%- endblock -%} - -{% block content %} -
- {{ post_macros::header(page=page) }} - {{ post_macros::content(page=page, summary=false, show_only_description=false) }} - {{ post_macros::earlier_later(page=page) }} -
-{% endblock content %}