mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
- custom cover page for pdf - Center and resize logo - Place slogan just below logo - Ensure all text on cover page is in matching grey Please note, the mkdocs-to-pdf plugin works, but it has a bug in the enumeration of sections. We may need to fork it to make it work the way users expect. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
24 lines
613 B
HTML
24 lines
613 B
HTML
<article id="doc-cover">
|
|
{% if cover_logo is defined %}
|
|
<div class="wrapper upper">
|
|
<img src="{{ cover_logo | to_url }}" alt="Logo" class="logo">
|
|
</div>
|
|
{% else %}
|
|
<div class="wrapper"></div>
|
|
{% endif %}
|
|
|
|
<div class="wrapper">
|
|
<h2>{{ cover_subtitle | e }}</h2>
|
|
<div class="divider"></div>
|
|
<h1>{{ cover_title | e }}</h1>
|
|
</div>
|
|
|
|
<div class="properties">
|
|
<address>
|
|
{% if copyright is defined %}
|
|
<p id="copyright">{{ copyright | e }}</p>
|
|
{% endif %}
|
|
</address>
|
|
</div>
|
|
</article>
|