{% extends "base.html" %}
{% block site_meta %}
{% if page and page.meta and page.meta.description %}
{% elif config.site_description %}
{% endif %}
{% if page and page.meta and page.meta.redirect %}
{% elif page.canonical_url %}
{% endif %}
{% if page and page.meta and page.meta.author %}
{% elif config.site_author %}
{% endif %}
{% for key in [
"clipboard.copy",
"clipboard.copied",
"search.language",
"search.pipeline.stopwords",
"search.pipeline.trimmer",
"search.result.none",
"search.result.one",
"search.result.other",
"search.tokenizer"
] %}
{% endfor %}
{% endblock %}
{% block extrahead %}
{% set title = config.site_name %}
{% if page and page.title and not page.is_homepage %}
{% set title = config.site_name ~ " - " ~ page.title | striptags %}
{% endif %}
{% set image = config.site_url ~ 'latest/assets/images/Pachyderm-Character_stacked--1200.png' %}
{% endblock %}
{% block announce %}
For updates follow @pachyderminc on
Twitter
{% endblock %}