fimfarchive/fimfarchive/converters/json_fpub/chapter.html
2022-03-16 14:19:40 +01:00

21 lines
750 B
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>{{ title }}</title>
</head>
<body>
{%- autoescape false %}
{%- if authors_note_position == 'top' %}
<h2>{{ "Author's Note" | e }}</h2>
<div id='authors-note'>{{ authors_note_html }}</div>
{%- endif %}
<div id='content'>{{ content_html }}</div>
{%- if authors_note_position == 'bottom' %}
<h2>{{ "Author's Note" | e }}</h2>
<div id='authors-note'>{{ authors_note_html }}</div>
{%- endif %}
{%- endautoescape %}
</body>
</html>