{% extends "base.html" %}
{% block site_meta %}
    
    
    {% if page.meta and page.meta.description %}
    
    {% elif config.site_description %}
    
    {% endif %}
    {% if page.meta and page.meta.author %}
    
    {% elif config.site_author %}
    
    {% endif %}
    {% if page.canonical_url %}
    
    {% endif %}
    {% if page.previous_page %}
    
    {% endif %}
    {% if page.next_page %}
    
    {% endif %}
    {% if config.extra.alternate is iterable %}
    {% for alt in config.extra.alternate %}
        
    {% endfor %}
    {% endif %}
    {% if "rss" in config.plugins %}
    
    
    {% endif %}
    
    
{% endblock %}