aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig
blob: 37ca14f1f5a4b42409f788cf9f85c86b1ed8eb7e (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
39
<html>
    <head>
        <title>{{ entry.title | raw }}</title>
        <style>
            body {
                margin: 10px;
                font-family: 'Roboto',Verdana,Geneva,sans-serif;
                font-size: 16px;
                color: #000;
            }
            header {
                text-align: center;
            }

            header h1 {
                font-size: 1.3em;
            }

            a,
            a:hover,
            a:visited {
                color: #000;
            }

            article {
                margin: 0 auto;
                width: 600px;
            }
        </style>
    </head>
    <body>
        <header>
            <h1>{{ entry.title | raw }}</h1>
        </header>
        <article>
            {{ entry.content | raw }}
        </article>
    </body>
</html>