mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2025-04-01 08:45:29 +02:00
21 lines
750 B
HTML
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>
|