forked from gulliver/rtfm
feat: added initial version of png cover image to epub
This commit is contained in:
parent
218595c922
commit
0bc31c418d
BIN
sphinx/source/_static/epub_cover.png
Normal file
BIN
sphinx/source/_static/epub_cover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 163 KiB |
@ -91,4 +91,4 @@ latex_logo = '_static/wtf_coop_header.png'
|
||||
latex_show_urls = 'footnote'
|
||||
|
||||
epub_theme = 'wtf_epub'
|
||||
epub_cover = ('_static/wtf_coop_header.png', 'epub-cover.html')
|
||||
epub_cover = ('_static/epub_cover.png', 'epub-cover.html')
|
||||
|
@ -19,7 +19,5 @@ Sample template for the html cover page.
|
||||
{%- block footer %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="epub-cover">
|
||||
<img src="{{ image }}" alt="Cover image" />
|
||||
</div>
|
||||
<div class="epub-cover" style="background-image: url('{{ image }}');"></div>
|
||||
{% endblock %}
|
||||
|
9
sphinx/theme/wtf_epub/static/css/style.css
Normal file
9
sphinx/theme/wtf_epub/static/css/style.css
Normal file
@ -0,0 +1,9 @@
|
||||
.epub-cover {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
@ -1,2 +1,3 @@
|
||||
[theme]
|
||||
inherit = epub
|
||||
stylesheet = css/style.css
|
||||
|
Loading…
Reference in New Issue
Block a user