forked from wtf-eg/handbuch-gen
5b242831b6
Makefile adapted to new directory structure and mixed with the one from Sphinx
24 lines
666 B
HTML
24 lines
666 B
HTML
{#
|
|
epub/epub-cover.html
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Sample template for the html cover page.
|
|
|
|
:copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
#}
|
|
{%- extends "layout.html" %}
|
|
{%- block header %}{% endblock %}
|
|
{%- block rootrellink %}{% endblock %}
|
|
{%- block relbaritems %}{% endblock %}
|
|
{%- block sidebarlogo %}{% endblock %}
|
|
{%- block linktags %}{% endblock %}
|
|
{%- block relbar1 %}{% endblock %}
|
|
{%- block sidebar1 %}{% endblock %}
|
|
{%- block sidebar2 %}{% endblock %}
|
|
{%- block footer %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="epub-cover" style="background-image: url('{{ image }}');"></div>
|
|
{% endblock %}
|