aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornicosomb <nicolas@loeuillet.org>2013-04-08 14:25:55 +0200
committernicosomb <nicolas@loeuillet.org>2013-04-08 14:25:55 +0200
commit598d07a818482c982ddc5da7f3548d079094826d (patch)
treeceb3f9715b3823e2f8a38c3c46bb525d4cc65cff
parent670ef6bb1bdbbcf874d6c14b222ddd960861e315 (diff)
downloadwallabag-598d07a818482c982ddc5da7f3548d079094826d.tar.gz
wallabag-598d07a818482c982ddc5da7f3548d079094826d.tar.zst
wallabag-598d07a818482c982ddc5da7f3548d079094826d.zip
ajout du lien retour à l'accueil en pied de page #22
-rw-r--r--css/style.css11
-rwxr-xr-xtpl/index.html8
2 files changed, 14 insertions, 5 deletions
diff --git a/css/style.css b/css/style.css
index fa12eaf0..add05b85 100644
--- a/css/style.css
+++ b/css/style.css
@@ -27,8 +27,13 @@ header {
27 text-decoration: none; 27 text-decoration: none;
28} 28}
29 29
30#article header .vieworiginal a { 30#article article {
31 border-bottom: 1px solid #222222;
32}
33
34.vieworiginal a {
31 color: #888888; 35 color: #888888;
36 text-decoration: none;
32} 37}
33 38
34#main, #article { 39#main, #article {
@@ -44,11 +49,11 @@ header {
44#main ul#links li { 49#main ul#links li {
45 display: inline; 50 display: inline;
46} 51}
47#links a, #backhome a{ 52#links a, .backhome a{
48 text-decoration: none; 53 text-decoration: none;
49 padding: 5px 10px; 54 padding: 5px 10px;
50} 55}
51#links a:hover, #backhome a{ 56#links a:hover, .backhome a{
52 -webkit-border-radius: 2px; 57 -webkit-border-radius: 2px;
53 border-radius: 2px; 58 border-radius: 2px;
54 background-color: #040707; 59 background-color: #040707;
diff --git a/tpl/index.html b/tpl/index.html
index 5d7baa89..c8b54c84 100755
--- a/tpl/index.html
+++ b/tpl/index.html
@@ -14,18 +14,22 @@
14 </head> 14 </head>
15 <body class="article"> 15 <body class="article">
16 <div id="article" class="w600p"> 16 <div id="article" class="w600p">
17 <div id="backhome"> 17 <div class="backhome">
18 <a href="index.php" title="back to home">&larr;</a> 18 <a href="index.php" title="back to home">&larr;</a>
19 </div> 19 </div>
20 <header class="mbm"> 20 <header class="mbm">
21 <h1><a href="{$url}">{$title}</a></h1> 21 <h1><a href="{$url}">{$title}</a></h1>
22 <div class="vieworiginal txtright small"><a href="{$url}" target="_blank">view original</a></div> 22 <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div>
23 </header> 23 </header>
24 <article> 24 <article>
25 <div id="readityourselfcontent"> 25 <div id="readityourselfcontent">
26 {$content} 26 {$content}
27 </div> 27 </div>
28 </article> 28 </article>
29 <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div>
30 <div class="backhome">
31 <a href="index.php" title="back to home">&larr;</a>
32 </div>
29 </div> 33 </div>
30 {include="footer"} 34 {include="footer"}
31 </body> 35 </body>