{# -*- coding: utf-8 -*-
This file is part of Invenio.
Copyright (C) 2015-2018 CERN.
Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
#}
{# Create Twitter card meta-tags.
#
# Configuration variable THEME_TWITTERHANDLE should be set to your Twitter
# handle. See https://dev.twitter.com/cards/overview for details.
#}
{%- macro meta_twittercard(title, description, card='summary', site='') %}
{%- endmacro %}
{# Create OpenGraph meta-tags. #}
{%- macro meta_opengraph(title, description, url='', site_name='') %}
{%- endmacro %}
{# Create HighWire Press meta-tags. #}
{%- macro meta_highwire(title, description, authors=[], publisher='', publication_date='', doi='', keywords=[], url='', pdf_url='') %}
{%- for a in authors %}
{%- endfor %}
{%- for c in contributors %}
{%- endfor %}
{%- if publisher %}
{%- endif %}
{%- if publication_date %}
{%- endif %}
{%- if doi %}
{%- endif %}
{%- for k in keywords %}
{%- endfor %}
{%- if url %}
{%- endif %}
{%- if pdf_url %}
{%- endif %}
{%- endmacro %}