aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-10 17:33:15 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-08-23 16:49:21 +0200
commitf3d0cb91063840f2b05c63954d3fef3e5b8943fd (patch)
tree5ee9a0c73e7a3e4c8d6da1761a8ce23110f8125a /src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig
parent1bee9e0760c89756ebab0b67f9ab7efc5c6a709b (diff)
downloadwallabag-f3d0cb91063840f2b05c63954d3fef3e5b8943fd.tar.gz
wallabag-f3d0cb91063840f2b05c63954d3fef3e5b8943fd.tar.zst
wallabag-f3d0cb91063840f2b05c63954d3fef3e5b8943fd.zip
Share entry with a public URL
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig
new file mode 100644
index 00000000..37ca14f1
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/share.html.twig
@@ -0,0 +1,39 @@
1<html>
2 <head>
3 <title>{{ entry.title | raw }}</title>
4 <style>
5 body {
6 margin: 10px;
7 font-family: 'Roboto',Verdana,Geneva,sans-serif;
8 font-size: 16px;
9 color: #000;
10 }
11 header {
12 text-align: center;
13 }
14
15 header h1 {
16 font-size: 1.3em;
17 }
18
19 a,
20 a:hover,
21 a:visited {
22 color: #000;
23 }
24
25 article {
26 margin: 0 auto;
27 width: 600px;
28 }
29 </style>
30 </head>
31 <body>
32 <header>
33 <h1>{{ entry.title | raw }}</h1>
34 </header>
35 <article>
36 {{ entry.content | raw }}
37 </article>
38 </body>
39</html>