{% extends "includes/skeleton_archive.html" %}
{% macro seo_title() %}{{ fp(config.site_name) }}{% endmacro %}
{% block title %}{{ seo_title() }}{% endblock title %}
{% block og_title %}{{ seo_title() }}{% endblock %}
{% block og_description %}{{ fp(config.description) }}{% endblock %}
{% block og_url %}{{ Router.gen_permalink('index', '', current_page) }}{% endblock %}
{% block twitter_title %}{{ seo_title() }}{% endblock %}
{% block more_section %}
{% for content in content_list %}
-
{{ content.meta['title'] }}
{% if content.meta['showfull'] %}
{{ content.parsed }}
{% else %}
{{ content.excerpt }}
{% endif %}
{% endfor %}
{% endblock more_section %}