diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-05 15:30:50 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-05 15:30:50 +0200 |
commit | 7eca3552c8f14a57b59bdb4be4ea8994616467d7 (patch) | |
tree | da887386bfc99b1c6f98b34b39902de0edef3e3d /tpl/index.html | |
parent | 386407c14a63c6314142ad827bbd89703a0b1092 (diff) | |
download | wallabag-7eca3552c8f14a57b59bdb4be4ea8994616467d7.tar.gz wallabag-7eca3552c8f14a57b59bdb4be4ea8994616467d7.tar.zst wallabag-7eca3552c8f14a57b59bdb4be4ea8994616467d7.zip |
mise en page de l'affichage d'un article
Diffstat (limited to 'tpl/index.html')
-rwxr-xr-x | tpl/index.html | 46 |
1 files changed, 30 insertions, 16 deletions
diff --git a/tpl/index.html b/tpl/index.html index b4aba16c..3f3b28f0 100755 --- a/tpl/index.html +++ b/tpl/index.html | |||
@@ -1,18 +1,32 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]--> | ||
3 | <!--[if lte IE 7]> <html class="no-js ie7 ie67 ie678" lang="en"> <![endif]--> | ||
4 | <!--[if IE 8]> <html class="no-js ie8 ie678" lang="en"> <![endif]--> | ||
5 | <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | ||
1 | <html> | 6 | <html> |
2 | <head> | 7 | <head> |
3 | <link rel='stylesheet' href='./css/reset.css' type='text/css' media='all' /> | 8 | <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> |
4 | <link rel='stylesheet' href='./css/typography.css' type='text/css' media='all' /> | 9 | <meta charset="utf-8"> |
5 | 10 | <meta http-equiv="X-UA-Compatible" content="IE=10"> | |
6 | <title>{$title}</title> | 11 | <link rel="stylesheet" href="./css/knacss.css" media="all"> |
7 | </head> | 12 | <link rel="stylesheet" href="./css/style.css" media="all"> |
8 | <body> | 13 | <title>{$title}</title> |
9 | <article> | 14 | </head> |
10 | <h1><a href="{$url}">{$title}</a></h1> | 15 | <body class="article"> |
11 | <div id="readityourselfcontent"> | 16 | <div id="article" class="w600p"> |
12 | {$content} | 17 | <div> |
13 | </div> | 18 | <a href="index.php" title="back to home">←</a> |
14 | <span class="comeFrom">Come From : <a href="{$url}">{$url}</a> | 19 | </div> |
15 | </article> | 20 | <header class="mbm"> |
16 | {include="footer"} | 21 | <h1><a href="{$url}">{$title}</a></h1> |
17 | </body> | 22 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank">view original</a></div> |
23 | </header> | ||
24 | <article> | ||
25 | <div id="readityourselfcontent"> | ||
26 | {$content} | ||
27 | </div> | ||
28 | </article> | ||
29 | </div> | ||
30 | {include="footer"} | ||
31 | </body> | ||
18 | </html> | 32 | </html> |