diff options
author | Nicolas LÅ“uillet <nicolas@coteo.com> | 2013-04-03 15:14:01 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@coteo.com> | 2013-04-03 15:14:01 +0200 |
commit | 1a268ba710b2cdb4ede98af3368c43d66c4c5e53 (patch) | |
tree | 5a2f00523e7f7aefc0cd0e48254fa20aa907bb6f /tpl | |
download | wallabag-1a268ba710b2cdb4ede98af3368c43d66c4c5e53.tar.gz wallabag-1a268ba710b2cdb4ede98af3368c43d66c4c5e53.tar.zst wallabag-1a268ba710b2cdb4ede98af3368c43d66c4c5e53.zip |
first commit
Diffstat (limited to 'tpl')
-rwxr-xr-x | tpl/footer.html | 7 | ||||
-rwxr-xr-x | tpl/index.html | 18 |
2 files changed, 25 insertions, 0 deletions
diff --git a/tpl/footer.html b/tpl/footer.html new file mode 100755 index 00000000..8385b969 --- /dev/null +++ b/tpl/footer.html | |||
@@ -0,0 +1,7 @@ | |||
1 | <footer> | ||
2 | <div> | ||
3 | Copyright © <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:memiks@memiks.fr">Contact</a><br> | ||
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 new file mode 100755 index 00000000..b4aba16c --- /dev/null +++ b/tpl/index.html | |||
@@ -0,0 +1,18 @@ | |||
1 | <html> | ||
2 | <head> | ||
3 | <link rel='stylesheet' href='./css/reset.css' type='text/css' media='all' /> | ||
4 | <link rel='stylesheet' href='./css/typography.css' type='text/css' media='all' /> | ||
5 | |||
6 | <title>{$title}</title> | ||
7 | </head> | ||
8 | <body> | ||
9 | <article> | ||
10 | <h1><a href="{$url}">{$title}</a></h1> | ||
11 | <div id="readityourselfcontent"> | ||
12 | {$content} | ||
13 | </div> | ||
14 | <span class="comeFrom">Come From : <a href="{$url}">{$url}</a> | ||
15 | </article> | ||
16 | {include="footer"} | ||
17 | </body> | ||
18 | </html> | ||