aboutsummaryrefslogtreecommitdiffstats
path: root/template.jinja2
blob: c61d7c2296851f6e5c1594386721862a46fe7e9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>{% block title %}{% endblock %}</title>
    <style>
      img {
        filter: sepia(1) brightness(.5) contrast(1) saturate(.6);
      }

      img:hover {
        filter: none;
      }

      .container-chapter-reader {
        background-color: #000000;
      }

      .center {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
      }
    </style>
</head>
<body style="font-size:14px;">
  <p align="center">
    <div>
      {% for image in image_list %}
      <img src={{image}} alt="" align="middle" class="center">
      {% endfor %}
    </div>
  </p>
</body>
</html>