aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl
diff options
context:
space:
mode:
authornicosomb <nicolas@loeuillet.org>2013-04-05 15:30:50 +0200
committernicosomb <nicolas@loeuillet.org>2013-04-05 15:30:50 +0200
commit7eca3552c8f14a57b59bdb4be4ea8994616467d7 (patch)
treeda887386bfc99b1c6f98b34b39902de0edef3e3d /tpl
parent386407c14a63c6314142ad827bbd89703a0b1092 (diff)
downloadwallabag-7eca3552c8f14a57b59bdb4be4ea8994616467d7.tar.gz
wallabag-7eca3552c8f14a57b59bdb4be4ea8994616467d7.tar.zst
wallabag-7eca3552c8f14a57b59bdb4be4ea8994616467d7.zip
mise en page de l'affichage d'un article
Diffstat (limited to 'tpl')
-rwxr-xr-xtpl/footer.html10
-rwxr-xr-xtpl/index.html46
2 files changed, 33 insertions, 23 deletions
diff --git a/tpl/footer.html b/tpl/footer.html
index 8385b969..51b38b97 100755
--- a/tpl/footer.html
+++ b/tpl/footer.html
@@ -1,7 +1,3 @@
1<footer> 1 <footer class="mr2 mt3">
2 <div> 2 <p class="smaller"><a href="http://github.com/nicosomb/poche">poche</a> is a read it later open source system, based on <a href="http://www.memiks.fr/readityourself/">ReadItYourself</a>. <a href="https://twitter.com/getpoche" title="follow us on twitter">@getpoche</a>. Logo by <a href="http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon">Brightmix</a>. poche is developed by <a href="http://nicolas.loeuillet.org">Nicolas LÅ“uillet</a> under the <a href="http://www.wtfpl.net/">WTFPL</a>.</p>
3 Copyright &copy; <a href="http://www.memiks.fr/">memiks.fr</a> | <a href="http://shaarli.memiks.fr/">Liens</a> / <a href="http://rss.memiks.fr/">RSS</a> / <a href="http://wiki.memiks.fr/">Wiki</a> / <a href="mailto:&#109;&#101;&#109;&#105;&#107;&#115;&#064;&#109;&#101;&#109;&#105;&#107;&#115;&#046;&#102;&#114;">Contact</a><br> 3 </footer>
4 Licence: WTF Licence<br>
5 More information HERE: <a href="http://www.memiks.fr/readityourself/">http://www.memiks.fr/readityourself/</a> Version : <span class="version">{$version}</span>
6 </div>
7</footer>
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">&larr;</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>