]>
Commit | Line | Data |
---|---|---|
1 | <html> | |
2 | <head> | |
3 | <title>{{ entry.title|e|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: 900px; | |
28 | } | |
29 | </style> | |
30 | <meta property="og:title" content="{{ entry.title|e|raw }}" /> | |
31 | <meta property="og:type" content="article" /> | |
32 | <meta property="og:url" content="{{ app.request.uri }}" /> | |
33 | {% set picturePath = app.request.schemeAndHttpHost ~ asset('bundles/wallabagcore/themes/_global/img/logo-other_themes.png') %} | |
34 | {% if entry.previewPicture is not null %} | |
35 | {% set picturePath = entry.previewPicture %} | |
36 | {% endif %} | |
37 | <meta property="og:image" content="{{ picturePath }}" /> | |
38 | <meta name="twitter:card" content="summary" /> | |
39 | <meta name="twitter:image" content="{{ picturePath }}" /> | |
40 | <meta name="twitter:site" content="@wallabagapp" /> | |
41 | <meta name="twitter:title" content="{{ entry.title|e|raw }}" /> | |
42 | <meta name="twitter:description" content="{{ entry.content|striptags|slice(0, 300)|raw }}…" /> | |
43 | </head> | |
44 | <body> | |
45 | <header> | |
46 | <h1>{{ entry.title|e|raw }}</h1> | |
47 | <div><a href="{{ entry.url|e }}" target="_blank" title="{{ 'entry.view.original_article'|trans }} : {{ entry.title|e|raw }}" class="tool">{{ entry.domainName|removeWww }}</a></div> | |
48 | <div>{{ "entry.public.shared_by_wallabag"|trans({'%wallabag_instance%': url('homepage'), '%username%': entry.user.username})|raw }}.</div> | |
49 | ||
50 | {% if entry.previewPicture is not null %} | |
51 | <div><img class="preview" src="{{ entry.previewPicture }}" alt="{{ entry.title|striptags|e('html_attr') }}" /></div> | |
52 | {% endif %} | |
53 | </header> | |
54 | <article> | |
55 | {{ entry.content | raw }} | |
56 | </article> | |
57 | </body> | |
58 | </html> |