diff options
Diffstat (limited to 'tpl')
48 files changed, 554 insertions, 261 deletions
diff --git a/tpl/_bookmarklet.twig b/tpl/_bookmarklet.twig new file mode 100644 index 00000000..2f3b2d16 --- /dev/null +++ b/tpl/_bookmarklet.twig | |||
@@ -0,0 +1,3 @@ | |||
1 | <script type="text/javascript"> | ||
2 | top["bookmarklet-url@inthepoche.com"]=""+"<!DOCTYPE html>"+"<html>"+"<head>"+"<title>poche it !</title>"+'<link rel="icon" href="{{poche_url}}tpl/img/favicon.ico" />'+"</head>"+"<body>"+"<script>"+"window.onload=function(){"+"window.setTimeout(function(){"+"history.back();"+"},250);"+"};"+"</scr"+"ipt>"+"</body>"+"</html>" | ||
3 | </script> \ No newline at end of file | ||
diff --git a/tpl/_footer.twig b/tpl/_footer.twig new file mode 100644 index 00000000..6891756a --- /dev/null +++ b/tpl/_footer.twig | |||
@@ -0,0 +1,4 @@ | |||
1 | <footer class="w600p center mt3 smaller txtright"> | ||
2 | <p>{% trans "powered by" %} <a href="http://inthepoche.com">poche</a></p> | ||
3 | {% if constant('DEBUG_POCHE') == 1 %}<p><strong>{% trans "debug mode is on so cache is off." %} {% trans "your poche version:" %}{{constant('POCHE_VERSION')}}. {% trans "storage:" %} {{constant('STORAGE')}}</strong></p>{% endif %} | ||
4 | </footer> \ No newline at end of file | ||
diff --git a/tpl/_head.twig b/tpl/_head.twig new file mode 100644 index 00000000..f25f0471 --- /dev/null +++ b/tpl/_head.twig | |||
@@ -0,0 +1,9 @@ | |||
1 | <link rel="shortcut icon" type="image/x-icon" href="./tpl/img/favicon.ico" /> | ||
2 | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="./tpl/img/apple-touch-icon-144x144-precomposed.png"> | ||
3 | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="./tpl/img/apple-touch-icon-72x72-precomposed.png"> | ||
4 | <link rel="apple-touch-icon-precomposed" href="./tpl/img/apple-touch-icon-precomposed.png"> | ||
5 | <link rel="stylesheet" href="./tpl/css/knacss.css" media="all"> | ||
6 | <link rel="stylesheet" href="./tpl/css/style.css" media="all"> | ||
7 | <link rel="stylesheet" href="./tpl/css/style-{{ constant('THEME') }}.css" media="all" title="{{ constant('THEME') }} theme"> | ||
8 | <link rel="stylesheet" href="./tpl/css/messages.css" media="all"> | ||
9 | <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'> \ No newline at end of file | ||
diff --git a/tpl/_menu.twig b/tpl/_menu.twig new file mode 100644 index 00000000..699d6a0c --- /dev/null +++ b/tpl/_menu.twig | |||
@@ -0,0 +1,7 @@ | |||
1 | <ul id="links"> | ||
2 | <li><a href="./" {% if view == 'home' %}class="current"{% endif %}>{% trans "home" %}</a></li> | ||
3 | <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> | ||
4 | <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> | ||
5 | <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> | ||
6 | <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> | ||
7 | </ul> \ No newline at end of file | ||
diff --git a/tpl/_messages.twig b/tpl/_messages.twig new file mode 100644 index 00000000..679aa098 --- /dev/null +++ b/tpl/_messages.twig | |||
@@ -0,0 +1 @@ | |||
{{ messages | raw }} \ No newline at end of file | |||
diff --git a/tpl/_top.twig b/tpl/_top.twig new file mode 100644 index 00000000..ae01cc3f --- /dev/null +++ b/tpl/_top.twig | |||
@@ -0,0 +1,3 @@ | |||
1 | <header class="w600p center mbm"> | ||
2 | <h1><a href="./" title="{% trans "back to home" %}" ><img src="./tpl/img/logo.png" alt="logo poche" /></a></h1> | ||
3 | </header> \ No newline at end of file | ||
diff --git a/tpl/config.html b/tpl/config.html deleted file mode 100644 index 2c7df4f7..00000000 --- a/tpl/config.html +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | <div id="content"> | ||
2 | <h2>Bookmarklet</h2> | ||
3 | <p>Thanks to the bookmarklet, you will be able to easily add a link to your poche. If you don't know how use a bookmarklet, <a href="http://support.mozilla.org/en-US/kb/bookmarklets-perform-common-web-page-tasks">have a look here</a>.</p> | ||
4 | <p>Drag & drop this link to your bookmarks bar and have fun with poche.</p> | ||
5 | <p><a ondragend="this.click();" style="cursor: move; border: 1px dashed grey; background: white;" title="i am a bookmarklet, use me !" href="javascript:if(top['bookmarklet-url@inthepoche.com']){top['bookmarklet-url@inthepoche.com'];}else{(function(){var%20url%20=%20location.href%20||%20url;window.open('{$poche_url}?action=add&url='%20+%20btoa(url),'_self');})();void(0);}">poche it !</a></p> | ||
6 | |||
7 | <h2>Password</h2> | ||
8 | <form method="post" action="?config" name="loginform"> | ||
9 | <fieldset class="w500p"> | ||
10 | <div class="row"> | ||
11 | <label class="col w150p" for="password">New password</label> | ||
12 | <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2"> | ||
13 | </div> | ||
14 | <div class="row"> | ||
15 | <label class="col w150p" for="password_repeat">Repeat your new password</label> | ||
16 | <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3"> | ||
17 | </div> | ||
18 | <div class="row mts txtcenter"> | ||
19 | <button class="bouton" type="submit" tabindex="4">Update</button> | ||
20 | </div> | ||
21 | </fieldset> | ||
22 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | ||
23 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | ||
24 | </form> | ||
25 | <h2>Export</h2> | ||
26 | <p><a href="?view=export" target="_blank">Click here</a> to export your poche datas.</p> | ||
27 | </div> \ No newline at end of file | ||
diff --git a/tpl/config.twig b/tpl/config.twig new file mode 100644 index 00000000..95d5d8cf --- /dev/null +++ b/tpl/config.twig | |||
@@ -0,0 +1,57 @@ | |||
1 | {% extends "layout.twig" %} | ||
2 | |||
3 | {% block title %}{% trans "config" %}{% endblock %} | ||
4 | {% block menu %} | ||
5 | <ul id="links"> | ||
6 | <li><a href="./" {% if view == 'home' %}class="current"{% endif %}>{% trans "home" %}</a></li> | ||
7 | <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> | ||
8 | <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> | ||
9 | <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> | ||
10 | <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> | ||
11 | </ul> | ||
12 | {% endblock %} | ||
13 | {% block content %} | ||
14 | <h2>{% trans "Bookmarklet" %}</h2> | ||
15 | <p>{% trans "Thanks to the bookmarklet, you will be able to easily add a link to your poche." %} {% trans "Have a look to this documentation:" %} <a href="http://inthepoche.com/?pages/Documentation">inthepoche.com</a>.</p> | ||
16 | <p>{% trans "Drag & drop this link to your bookmarks bar and have fun with poche." %}</p> | ||
17 | <p class="txtcenter"><a ondragend="this.click();" style="cursor: move; border: 1px dashed grey; background: white; padding: 5px;" title="i am a bookmarklet, use me !" href="javascript:if(top['bookmarklet-url@inthepoche.com']){top['bookmarklet-url@inthepoche.com'];}else{(function(){var%20url%20=%20location.href%20||%20url;window.open('{{ poche_url }}?action=add&url='%20+%20btoa(url),'_self');})();void(0);}">{% trans "poche it!" %}</a></p> | ||
18 | |||
19 | <h2>{% trans "Updating poche" %}</h2> | ||
20 | <p><ul> | ||
21 | <li>{% trans "your version" %} : <strong>{{ constant('POCHE_VERSION') }}</strong></li> | ||
22 | <li>{% trans "latest stable version" %} : {{ prod }}. {% if compare_prod == -1 %}<strong><a href="http://inthepoche.com/?pages/T%C3%A9l%C3%A9charger-poche">{% trans "a more recent stable version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> | ||
23 | <li>{% trans "latest dev version" %} : {{ dev }}. {% if compare_dev == -1 %}<strong><a href="http://inthepoche.com/?pages/T%C3%A9l%C3%A9charger-poche">{% trans "a more recent development version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> | ||
24 | </ul> | ||
25 | </p> | ||
26 | |||
27 | <h2>{% trans "Change your password" %}</h2> | ||
28 | <form method="post" action="?config" name="loginform"> | ||
29 | <fieldset class="w500p"> | ||
30 | <div class="row"> | ||
31 | <label class="col w150p" for="password">{% trans "New password:" %}</label> | ||
32 | <input class="col" type="password" id="password" name="password" placeholder="{% trans "Password" %}" tabindex="2"> | ||
33 | </div> | ||
34 | <div class="row"> | ||
35 | <label class="col w150p" for="password_repeat">{% trans "Repeat your new password:" %}</label> | ||
36 | <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="{% trans "Password" %}" tabindex="3"> | ||
37 | </div> | ||
38 | <div class="row mts txtcenter"> | ||
39 | <button class="bouton" type="submit" tabindex="4">{% trans "Update" %}</button> | ||
40 | </div> | ||
41 | </fieldset> | ||
42 | <input type="hidden" name="returnurl" value="{{ referer }}"> | ||
43 | <input type="hidden" name="token" value="{{ token }}"> | ||
44 | </form> | ||
45 | |||
46 | <h2>{% trans "Import" %}</h2> | ||
47 | <p>{% trans "Please execute the import script locally, it can take a very long time." %}</p> | ||
48 | <p>{% trans "More infos in the official doc:" %} <a href="http://inthepoche.com/?pages/Documentation">inthepoche.com</a></p> | ||
49 | <p><ul> | ||
50 | <li><a href="./?import&from=pocket">{% trans "import from Pocket" %}</a> (you must have a "ril_export.html" file on your server)</li> | ||
51 | <li><a href="./?import&from=readability">{% trans "import from Readability" %}</a> (you must have a "readability" file on your server)</li> | ||
52 | <li><a href="./?import&from=instapaper">{% trans "import from Instapaper" %}</a> (you must have a "instapaper-export.html" file on your server)</li> | ||
53 | </ul></p> | ||
54 | |||
55 | <h2>{% trans "Export your poche datas" %}</h2> | ||
56 | <p><a href="./?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your poche datas." %}</p> | ||
57 | {% endblock %} \ No newline at end of file | ||
diff --git a/tpl/css/knacss.css b/tpl/css/knacss.css new file mode 100644 index 00000000..ca0696b7 --- /dev/null +++ b/tpl/css/knacss.css | |||
@@ -0,0 +1 @@ | |||
html{font-size:62.5%}body{font-family:"Century Gothic",helvetica,arial,sans-serif;font-size:1.4em;line-height:1.5;color:#000;background-color:#FFF}p,ul,ol,dl,blockquote,pre,td,th,label,textarea,caption,details,figure,hgroup{margin:.75em 0 0;font-size:1em;line-height:1.5}h1,.h1-like{margin:.8077em 0 0 0;font-size:1.8571em;font-weight:normal;line-height:1.6154em}h2,.h2-like{margin:.875em 0 0 0;font-size:1.7143em;font-weight:normal;line-height:1.75em}h3,.h3-like{margin:.9545em 0 0 0;font-size:1.5714em;font-weight:normal;line-height:1.909em}h4,.h4-like{margin:1.05em 0 0 0;font-size:1.4286em;font-weight:normal;line-height:1.05em}h5,.h5-like{margin:1.1667em 0 0 0;font-size:1.2857em;font-weight:normal;line-height:1.1667em}h6,.h6-like{margin:1.3125em 0 0 0;font-size:1.1429em;font-weight:normal;line-height:1.3125em}.smaller{font-size:.7143em}.small{font-size:.8571em}.big{font-size:1.1429em}.bigger{font-size:1.2857em}.biggest{font-size:1.4286em}html,body,textarea,figure,label{margin:0;padding:0}ul,ol{padding-left:2em}code,pre,samp,kbd{font-family:consolas,'DejaVu Sans Mono',courier,monospace;line-height:1em;white-space:pre-wrap}code,kbd,mark{border-radius:2px}em{font-style:italic}strong{font-weight:bold}kbd{padding:0 2px;border:1px solid #999}code{padding:2px 4px;color:#B11;background:rgba(0,0,0,.04)}mark{padding:2px 4px;background:#FF0}table{margin-bottom:1.5em}p:first-child,ul:first-child,ol:first-child,dl:first-child,blockquote:first-child,pre:first-child,h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}li p,li ul,li ol{margin-top:0;margin-bottom:0}img,table,td,blockquote,code,pre,textarea,input,video{max-width:100%}div,textarea,table,td,th,code,pre,samp{word-wrap:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;-o-hyphens:auto;hyphens:auto}img{height:auto;vertical-align:middle}#map_canvas img,.gmnoprint img{max-width:none}a img{border:0}body > script{display:none !important}.skip-links{position:absolute}.skip-links a{position:absolute;left:-7000px;padding:.5em;text-decoration:none;color:#FFF;background:#000}.skip-links a:focus{position:static}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mod,.item{overflow:hidden}.row{display:table;width:100%;table-layout:fixed}.row > *,.col{display:table-cell;vertical-align:top}.clear,.line,.row{clear:both}.clearfix:after,.line:after,.mod:after{content:"";display:table;clear:both}.left{float:left}img.left{margin-right:1em}.right{float:right}img.right{margin-left:1em}img.left,img.right{margin-bottom:5px}.center{margin-right:auto;margin-left:auto}.txtleft{text-align:left}.txtright{text-align:right}.txtcenter{text-align:center}.inbl{display:inline-block;margin-right:-.25em;vertical-align:top}.w10{width:10%}.w20{width:20%}.w25{width:25%}.w30{width:30%}.w33{width:33.333%}.w40{width:40%}.w50{width:50%}.w60{width:60%}.w66{width:66.666%}.w70{width:70%}.w75{width:75%}.w80{width:80%}.w90{width:90%}.w100{width:100%}.w50p{width:50px}.w100p{width:100px}.w150p{width:150px}.w200p{width:200px}.w300p{width:300px}.w400p{width:400px}.w500p{width:500px}.w600p{width:600px}.w700p{width:700px}.w800p{width:800px}.w960p{width:960px}.mw960p{max-width:960px}.m-reset,.ma0{margin:0 !important}.p-reset,.pa0{padding:0 !important}.ma1,.mas{margin:10px !important}.ma2,.mam{margin:20px !important}.ma3,.mal{margin:30px !important}.pa1,.pas{padding:10px}.pa2,.pam{padding:20px}.pa3,.pal{padding:30px}.mt0,.mtn{margin-top:0 !important}.mt1,.mts{margin-top:10px !important}.mt2,.mtm{margin-top:20px !important}.mt3,.mtl{margin-top:30px !important}.mr0,.mrn{margin-right:0}.mr1,.mrs{margin-right:10px}.mr2,.mrm{margin-right:20px}.mr3,.mrl{margin-right:30px}.mb0,.mbn{margin-bottom:0 !important}.mb1,.mbs{margin-bottom:10px !important}.mb2,.mbm{margin-bottom:20px !important}.mb3,.mbl{margin-bottom:30px !important}.ml0,.mln{margin-left:0}.ml1,.mls{margin-left:10px}.ml2,.mlm{margin-left:20px}.ml3,.mll{margin-left:30px}.pt0,.ptn{padding-top:0}.pt1,.pts{padding-top:10px}.pt2,.ptm{padding-top:20px}.pt3,.ptl{padding-top:30px}.pr0,.prn{padding-right:0}.pr1,.prs{padding-right:10px}.pr2,.prm{padding-right:20px}.pr3,.prl{padding-right:30px}.pb0,.pbn{padding-bottom:0}.pb1,.pbs{padding-bottom:10px}.pb2,.pbm{padding-bottom:20px}.pb3,.pbl{padding-bottom:30px}.pl0,.pln{padding-left:0}.pl1,.pls{padding-left:10px}.pl2,.plm{padding-left:20px}.pl3,.pll{padding-left:30px}.visually-hidden{position:absolute;left:-7000px;overflow:hidden}[dir=rtl] .visually-hidden{right:-7000px;left:auto}.desktop-hidden{display:none}form,fieldset{border:none}input,button,select,label,.btn{font-family:inherit;vertical-align:middle}textarea{font-family:inherit;resize:vertical}.ie67 .clearfix,.ie67 .line,.ie67 .mod,.ie67 .row,.ie67 .col{zoom:1}.ie67 .btn,.ie67 .col,.ie67 .inbl{display:inline;zoom:1}.ie8 img{width:auto}@media print{p,blockquote{orphans:2;widows:2}blockquote,ul,ol{page-break-inside:avoid}h1,h2,h3,caption{page-break-after:avoid}}@media(orientation:landscape)and(max-device-width:768px){html,body{-webkit-text-size-adjust:100%}}[class*=grid] > *{float:left}[class*=grid] > * + *{margin-left:2%}.grid2 > *{width:49%}.grid3 > *{width:32%}.grid4 > *{width:23.5%}.grid5 > *{width:18.4%}.grid6 > *{width:15%}.grid2-1 > *:first-child,.grid1-2 > * + *{width:66%}.grid1-2 > *:first-child,.grid2-1 > * + *{width:32%}.grid1-3 > *:first-child,.grid3-1 > * + *{width:23.5%}.grid3-1 > *:first-child,.grid1-3 > * + *{width:74.5%}table,.table{max-width:100%;border-collapse:collapse;table-layout:fixed;vertical-align:top}table{width:100%}.table{display:table}caption{padding:10px;font-style:italic;color:#555}table{border:1px solid #CCC}tr > * + *{border-left:1px solid #CCC}th,td{padding:.3em .8em;border-bottom:1px solid #CCC;text-align:left}td{color:#333}.alternate{border:0}.alternate tbody{border:1px solid #CCC}.alternate thead tr > * + *{border-left:0}.alternate tbody tr > * + *{border-left:1px solid #CCC}.alternate-vert{border:0;border-right:1px solid #CCC}.alternate-vert tr >:first-child{border-bottom:0}.alternate-vert tr > * + *{border-top:1px solid #CCC}.striped tbody tr:nth-child(odd){background:#EEE;background:rgba(0,0,0,.05)}.striped-vert tr >:first-child{background:#EEE;background:rgba(0,0,0,.05)}.btn{display:inline-block}label{display:inline-block;vertical-align:middle;cursor:pointer}legend{border:0;white-space:normal}button,input,select{margin:0;font-family:"Century Gothic",helvetica,arial,sans-serif;font-size:100%;vertical-align:middle}textarea{min-height:5em;overflow:auto;font-size:1.75em;vertical-align:top;resize:vertical}}ol.styled{counter-reset:styled}ol.styled > li{counter-increment:styled;margin-bottom:.3em;list-style-type:none}ol.styled > li:before{content:counter(styled);display:inline-block;width:1em;height:1em;margin-right:.4em;padding:2px;border-radius:50%;text-align:center;text-indent:-.1em;font-size:.9em;line-height:1;vertical-align:middle;color:#FFF;background:rgba(0,0,0,.5)}@media(min-width:1280px){.large-hidden,.tablet-hidden{display:none !important}.large-visible{display:block !important}.large-no-float{float:none}.large-inbl{display:inline-block;float:none;vertical-align:top}.large-row{display:table;width:100% !important;table-layout:fixed}.large-col{display:table-cell;vertical-align:top}.large-w25{width:25% !important}.large-w33{width:33.3333% !important}.large-w50{width:50% !important}.large-w66{width:66.6666% !important}.large-w75{width:75% !important}.large-w100{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.large-ma0,.large-man{margin:0 !important}}@media(max-width:768px){.w60,.w66,.w70,.w75,.w80,.w90,.w100,.w600p,.w700p,.w800p,.w960p,.mw960p,.medium-wauto{width:auto}.medium-hidden,.tablet-hidden{display:none !important}.medium-visible{display:block !important}.medium-no-float{float:none}.medium-inbl{display:inline-block;float:none;vertical-align:top}.medium-row{display:table;width:100% !important;table-layout:fixed}.medium-col{display:table-cell;vertical-align:top}.medium-w25{width:25% !important}.medium-w33{width:33.3333% !important}.medium-w50{width:50% !important}.medium-w66{width:66.6666% !important}.medium-w75{width:75% !important}.medium-w100{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.medium-ma0,.medium-man{margin:0 !important}.grid4 > *{width:49% !important}.grid4 >:first-child + * + *{margin-left:0 !important}.grid6 > *{width:32% !important}.grid6 >:first-child + * + * + *{margin-left:0 !important}}@media(max-width:640px){.mod,.item,.col,fieldset{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.w30,.w33,.w40,.w50,.w300p,.w400p,.w500p{width:auto}.row{display:block !important;width:100% !important}.tiny-hidden,.phone-hidden{display:none !important}.tiny-visible{display:block !important}.tiny-no-float{float:none}.tiny-inbl{display:inline-block;float:none;vertical-align:top}.tiny-row{display:table;width:100% !important;table-layout:fixed}.tiny-col{display:table-cell;vertical-align:top}th,td{display:block !important;width:auto !important;text-align:left !important}thead{display:none}.tiny-w25{width:25% !important}.tiny-w33{width:33.3333% !important}.tiny-w50{width:50% !important}.tiny-w66{width:66.6666% !important}.tiny-w75{width:75% !important}.tiny-w100{display:block !important;float:none !important;clear:none !important;width:auto !important;margin-right:0 !important;margin-left:0 !important;border:0}.tiny-ma0,.tiny-man{margin:0 !important}} \ No newline at end of file | |||
diff --git a/tpl/css/messages.css b/tpl/css/messages.css new file mode 100755 index 00000000..9222bb88 --- /dev/null +++ b/tpl/css/messages.css | |||
@@ -0,0 +1,13 @@ | |||
1 | .messages { width: 400px; -moz-border-radius: 4px; border-radius: 4px; display: block; padding: 10px 0; margin: 10px auto 10px; clear: both; } | ||
2 | .messages a.closeMessage { margin: -14px -8px 0 0; display:none; width: 16px; height: 16px; float: right; background: url(../img/messages/close.png) no-repeat; } | ||
3 | /*.messages:hover a.closeMessage { visibility:visible; }*/ | ||
4 | .messages p { margin: 3px 0 3px 10px !important; padding: 0 10px 0 23px !important; font-size: 14px; line-height: 16px; } | ||
5 | .messages.error { border: 1px solid #C42608; color: #c00 !important; background: #FFF0EF; } | ||
6 | .messages.error p { background: url(../img/messages/cross.png ) no-repeat 0px 50%; color:#c00 !important; } | ||
7 | .messages.success {background: #E0FBCC; border: 1px solid #6DC70C; } | ||
8 | .messages.success p { background: url(../img/messages/tick.png) no-repeat 0px 50%; color: #2B6301 !important; } | ||
9 | .messages.warning { background: #FFFCD3; border: 1px solid #EBCD41; color: #000; } | ||
10 | .messages.warning p { background: url(../img/messages/warning.png ) no-repeat 0px 50%; color: #5F4E01; } | ||
11 | .messages.information, .messages.info { background: #DFEBFB; border: 1px solid #82AEE7; } | ||
12 | .messages.information p, .messages.info p { background: url(../img/messages/help.png ) no-repeat 0px 50%; color: #064393; } | ||
13 | .messages.information a { text-decoration: underline; } \ No newline at end of file | ||
diff --git a/tpl/css/style-light.css b/tpl/css/style-light.css new file mode 100644 index 00000000..9ea7955a --- /dev/null +++ b/tpl/css/style-light.css | |||
@@ -0,0 +1,53 @@ | |||
1 | |||
2 | a.back span { | ||
3 | background: url('../img/light/left.png') no-repeat; | ||
4 | } | ||
5 | |||
6 | a.top span { | ||
7 | background: url('../img/light/top.png') no-repeat; | ||
8 | } | ||
9 | |||
10 | |||
11 | a.fav span { | ||
12 | background: url('../img/light/star-on.png') no-repeat; | ||
13 | } | ||
14 | |||
15 | a.fav span:hover { | ||
16 | background: url('../img/light/star-off.png') no-repeat; | ||
17 | } | ||
18 | |||
19 | a.fav-off span { | ||
20 | background: url('../img/light/star-off.png') no-repeat; | ||
21 | } | ||
22 | |||
23 | a.fav-off span:hover { | ||
24 | background: url('../img/light/star-on.png') no-repeat; | ||
25 | } | ||
26 | |||
27 | a.archive span { | ||
28 | background: url('../img/light/checkmark-on.png') no-repeat; | ||
29 | } | ||
30 | |||
31 | a.archive span:hover { | ||
32 | background: url('../img/light/checkmark-off.png') no-repeat; | ||
33 | } | ||
34 | |||
35 | a.archive-off span { | ||
36 | background: url('../img/light/checkmark-off.png') no-repeat; | ||
37 | } | ||
38 | |||
39 | a.archive-off span:hover { | ||
40 | background: url('../img/light/checkmark-on.png') no-repeat; | ||
41 | } | ||
42 | |||
43 | a.twitter span { | ||
44 | background: url('../img/light/twitter.png') no-repeat; | ||
45 | } | ||
46 | |||
47 | a.email span { | ||
48 | background: url('../img/light/envelop.png') no-repeat; | ||
49 | } | ||
50 | |||
51 | a.delete span { | ||
52 | background: url('../img/light/remove.png') no-repeat; | ||
53 | } \ No newline at end of file | ||
diff --git a/tpl/css/style.css b/tpl/css/style.css new file mode 100644 index 00000000..d23c1896 --- /dev/null +++ b/tpl/css/style.css | |||
@@ -0,0 +1,244 @@ | |||
1 | body { | ||
2 | font-size: 16px; | ||
3 | font-family: 'Roboto', sans-serif; | ||
4 | margin: 10px; | ||
5 | } | ||
6 | |||
7 | header { | ||
8 | text-align: center; | ||
9 | } | ||
10 | |||
11 | header h1 { | ||
12 | font-size: 1.3em; | ||
13 | } | ||
14 | |||
15 | .bouton { | ||
16 | border-radius: 2px; | ||
17 | } | ||
18 | |||
19 | #main { | ||
20 | margin: 0 auto; | ||
21 | } | ||
22 | |||
23 | #main ul#links { | ||
24 | padding: 0; | ||
25 | list-style-type: none; | ||
26 | text-align: center; | ||
27 | font-size: 0.9em; | ||
28 | } | ||
29 | |||
30 | #main ul#links li { | ||
31 | display: inline; | ||
32 | } | ||
33 | |||
34 | #main ul#links li a.current { | ||
35 | -webkit-border-radius: 2px; | ||
36 | border-radius: 2px; | ||
37 | } | ||
38 | |||
39 | #main ul#sort { | ||
40 | padding: 0; | ||
41 | list-style-type: none; | ||
42 | text-align: center; | ||
43 | opacity: 0.5; | ||
44 | } | ||
45 | |||
46 | #main ul#sort li { | ||
47 | display: inline; | ||
48 | font-size: 0.9em; | ||
49 | } | ||
50 | |||
51 | #main ul#sort img:hover { | ||
52 | cursor: pointer; | ||
53 | } | ||
54 | |||
55 | |||
56 | #links a{ | ||
57 | text-decoration: none; | ||
58 | padding: 5px 10px; | ||
59 | } | ||
60 | #links a:hover{ | ||
61 | -webkit-border-radius: 2px; | ||
62 | border-radius: 2px; | ||
63 | } | ||
64 | |||
65 | /*** ***/ | ||
66 | /*** LINKS DISPLAY ***/ | ||
67 | |||
68 | #main a.tool { | ||
69 | text-decoration: none; | ||
70 | cursor: pointer; | ||
71 | } | ||
72 | |||
73 | #main #content { | ||
74 | margin-top: 20px; | ||
75 | } | ||
76 | |||
77 | #main #content h2 { | ||
78 | font-size: 1.3em; | ||
79 | text-decoration: none; | ||
80 | } | ||
81 | |||
82 | #main #content .entrie { | ||
83 | border-bottom: 1px dashed #222222; | ||
84 | } | ||
85 | |||
86 | #main .entrie ul.tools { | ||
87 | list-style-type: none; | ||
88 | } | ||
89 | |||
90 | #main .entrie ul.tools li { | ||
91 | /*display: inline;*/ | ||
92 | } | ||
93 | |||
94 | .tools { | ||
95 | float: right; | ||
96 | text-align: right; | ||
97 | opacity: 0.5; | ||
98 | } | ||
99 | |||
100 | .tools p { | ||
101 | font-size: 0.8em;} | ||
102 | |||
103 | /* | ||
104 | .tools ul { | ||
105 | padding: 0; margin: 0; | ||
106 | list-style-type: none; | ||
107 | } | ||
108 | |||
109 | .tools ul li { | ||
110 | line-height: 20px; | ||
111 | } | ||
112 | |||
113 | .tools a.tool { | ||
114 | cursor: pointer; | ||
115 | }*/ | ||
116 | |||
117 | #main .entrie .tools a.tool span, #article .tools a.tool span { | ||
118 | display: inline-block; | ||
119 | width: 16px; | ||
120 | height: 16px; | ||
121 | } | ||
122 | |||
123 | #main .entrie .url { | ||
124 | font-size: 13px; | ||
125 | } | ||
126 | |||
127 | |||
128 | /*** ***/ | ||
129 | /*** ARTICLE PAGE ***/ | ||
130 | |||
131 | #article { | ||
132 | margin: 0 auto; | ||
133 | } | ||
134 | #article header { | ||
135 | text-align: left; | ||
136 | } | ||
137 | |||
138 | #article header a { | ||
139 | text-decoration: none; | ||
140 | } | ||
141 | |||
142 | .vieworiginal a, .vieworiginal a:hover, .vieworiginal a:visited { | ||
143 | text-decoration: none; | ||
144 | color: #888888; | ||
145 | } | ||
146 | |||
147 | .backhome { | ||
148 | display: inline; | ||
149 | } | ||
150 | |||
151 | #article .tools { | ||
152 | position: relative; | ||
153 | display: inline; | ||
154 | top: 0px; | ||
155 | right: 0px; | ||
156 | width: 100%; | ||
157 | } | ||
158 | |||
159 | #article .tools ul li{ | ||
160 | display: inline; | ||
161 | } | ||
162 | |||
163 | |||
164 | /*** GENERAL ***/ | ||
165 | body { | ||
166 | color: #000; | ||
167 | } | ||
168 | |||
169 | a, a:hover, a:visited { | ||
170 | color: #000; | ||
171 | } | ||
172 | |||
173 | .bouton { | ||
174 | background-color: #000; | ||
175 | color: #fff; | ||
176 | border: none; | ||
177 | } | ||
178 | .bouton:hover { | ||
179 | background-color: #222222; | ||
180 | color: #F1F1F1; | ||
181 | } | ||
182 | |||
183 | #main ul#links li a.current { | ||
184 | background-color: #000; | ||
185 | color: #fff; | ||
186 | } | ||
187 | |||
188 | #links a:hover{ | ||
189 | background-color: #040707; | ||
190 | color: #F1F1F1; | ||
191 | } | ||
192 | |||
193 | |||
194 | /*** ***/ | ||
195 | /*** ARTICLE PAGE ***/ | ||
196 | |||
197 | #article header, #article article { | ||
198 | border-bottom: 1px solid #222222; | ||
199 | } | ||
200 | |||
201 | |||
202 | /* Pagination */ | ||
203 | .pagination { | ||
204 | clear: both; | ||
205 | padding-bottom: 20px; | ||
206 | padding-top: 10px; | ||
207 | text-align: right; | ||
208 | } | ||
209 | .pagination a { | ||
210 | border: 1px solid #D5D5D5; | ||
211 | color: #333; | ||
212 | font-size: 11px; | ||
213 | font-weight: bold; | ||
214 | height: 25px; | ||
215 | padding: 4px 8px; | ||
216 | text-decoration: none; | ||
217 | margin:2px; | ||
218 | } | ||
219 | .pagination a:hover, .pagination a:active { | ||
220 | background:#efefef; | ||
221 | } | ||
222 | .pagination span.current { | ||
223 | background-color: #ccc; | ||
224 | border: 1px solid #D5D5D5; | ||
225 | color: #000; | ||
226 | font-size: 11px; | ||
227 | font-weight: bold; | ||
228 | height: 25px; | ||
229 | padding: 4px 8px; | ||
230 | text-decoration: none; | ||
231 | margin:2px; | ||
232 | } | ||
233 | .pagination span.disabled { | ||
234 | border: 1px solid #EEEEEE; | ||
235 | color: #DDDDDD; | ||
236 | margin:2px; | ||
237 | padding: 4px 8px; | ||
238 | font-size: 11px; | ||
239 | font-weight: bold; | ||
240 | } | ||
241 | |||
242 | footer { | ||
243 | clear: both; | ||
244 | } \ No newline at end of file | ||
diff --git a/tpl/entries.html b/tpl/entries.html deleted file mode 100644 index 83e58c74..00000000 --- a/tpl/entries.html +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | <div id="content"> | ||
2 | {loop="entries"} | ||
3 | <div id="entry-{$value.id}" class="entrie mb2"> | ||
4 | <span class="content"> | ||
5 | <h2 class="h6-like"> | ||
6 | <a href="index.php?&view=view&id={$value.id}">{$value.title}</a> | ||
7 | </h2> | ||
8 | <div class="tools"> | ||
9 | <ul> | ||
10 | <li> | ||
11 | <a title="toggle mark as read" class="tool archive {if="$value.is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$value.id})"><span></span></a></li> | ||
12 | <li><a title="toggle favorite" class="tool fav {if="$value.is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$value.id})"><span></span></a></li> | ||
13 | <li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;"><input type="hidden" name="token" id="token" value="<?php echo Session::getToken(); ?>" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="view" name="view" value="{$view}" /><input type="hidden" id="id" name="id" value="{$value.id}" /><input type="submit" class="delete" title="toggle delete" /></form> | ||
14 | </li> | ||
15 | </ul> | ||
16 | </div> | ||
17 | <div class="url">{$value.url}</div> | ||
18 | </span> | ||
19 | </div> | ||
20 | {/loop} | ||
21 | </div> \ No newline at end of file | ||
diff --git a/tpl/export.html b/tpl/export.html deleted file mode 100644 index d22d05fc..00000000 --- a/tpl/export.html +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | export {$export} \ No newline at end of file | ||
diff --git a/tpl/export.twig b/tpl/export.twig new file mode 100644 index 00000000..4adb9540 --- /dev/null +++ b/tpl/export.twig | |||
@@ -0,0 +1 @@ | |||
{{ export }} \ No newline at end of file | |||
diff --git a/tpl/footer.html b/tpl/footer.html deleted file mode 100644 index b8bd755c..00000000 --- a/tpl/footer.html +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | </div> | ||
2 | <footer class="mr2 mt3 smaller"> | ||
3 | <p>powered by <a href="http://inthepoche.com">poche</a><br />follow us on <a href="https://twitter.com/getpoche" title="follow us on twitter">twitter</a></p> | ||
4 | </footer> | ||
5 | |||
6 | </body> | ||
7 | </html> \ No newline at end of file | ||
diff --git a/tpl/head.html b/tpl/head.html deleted file mode 100644 index dfb12788..00000000 --- a/tpl/head.html +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
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]--> | ||
6 | <html> | ||
7 | <head> | ||
8 | <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> | ||
9 | <meta charset="utf-8"> | ||
10 | <meta http-equiv="X-UA-Compatible" content="IE=10"> | ||
11 | <title>{$title}</title> | ||
12 | <link rel="shortcut icon" type="image/x-icon" href="./img/favicon.ico" /> | ||
13 | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="./img/apple-touch-icon-144x144-precomposed.png"> | ||
14 | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="./img/apple-touch-icon-72x72-precomposed.png"> | ||
15 | <link rel="apple-touch-icon-precomposed" href="./img/apple-touch-icon-precomposed.png"> | ||
16 | <link rel="stylesheet" href="./css/knacss.css" media="all"> | ||
17 | <link rel="stylesheet" href="./css/style.css" media="all"> | ||
18 | <!-- Light Theme --> | ||
19 | <link rel="stylesheet" href="./css/style-light.css" media="all" title="light-style"> | ||
20 | <!-- Dark Theme --> | ||
21 | <link rel="alternate stylesheet" href="./css/style-dark.css" media="all" title="dark-style"> | ||
22 | <script> | ||
23 | top["bookmarklet-url@inthepoche.com"] = '' | ||
24 | +'<!DOCTYPE html>' | ||
25 | +'<html>' | ||
26 | +'<head>' | ||
27 | +'<title>poche it !</title>' | ||
28 | +'<link rel="icon" href="{$poche_url}img/favicon.ico" />' | ||
29 | +'</head>' | ||
30 | +'<body>' | ||
31 | +'<script>' | ||
32 | +'window.onload=function(){' | ||
33 | +'window.setTimeout(function(){' | ||
34 | +'history.back();' | ||
35 | +'},250);' | ||
36 | +'};' | ||
37 | +'</scr'+'ipt>' | ||
38 | +'</body>' | ||
39 | +'</html>' | ||
40 | ; | ||
41 | </script> | ||
42 | </head> \ No newline at end of file | ||
diff --git a/tpl/home.html b/tpl/home.html deleted file mode 100644 index 90e247f7..00000000 --- a/tpl/home.html +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | <body class="light-style"> | ||
2 | <header> | ||
3 | <h1><a href="index.php"><img src="./img/logo.png" alt="logo poche" /></a>poche</h1> | ||
4 | </header> | ||
5 | <div id="main"> | ||
6 | <ul id="links"> | ||
7 | <li><a href="index.php" {if="$view == 'index'"}class="current"{/if}>home</a></li> | ||
8 | <li><a href="?view=fav" {if="$view == 'fav'"}class="current"{/if}>favorites</a></li> | ||
9 | <li><a href="?view=archive" {if="$view == 'archive'"}class="current"{/if}>archive</a></li> | ||
10 | <li><a href="?view=config" {if="$view == 'config'"}class="current"{/if}>config</a></li> | ||
11 | <li><a href="?logout" title="Logout">logout</a></li> | ||
12 | </ul> | ||
13 | {if condition="isset($entries)"} | ||
14 | <ul id="sort"> | ||
15 | <li><img src="img/up.png" onclick="sort_links('{$view}', 'ia');" title="by date asc" /> by date <img src="img/down.png" onclick="sort_links('{$view}', 'id');" title="by date desc" /></li> | ||
16 | <li><img src="img/up.png" onclick="sort_links('{$view}', 'ta');" title="by title asc" /> by title <img src="img/down.png" onclick="sort_links('{$view}', 'td');" title="by title desc" /></li> | ||
17 | </ul> | ||
18 | {/if} | ||
19 | {include="messages"} \ No newline at end of file | ||
diff --git a/tpl/home.twig b/tpl/home.twig new file mode 100644 index 00000000..a6da641f --- /dev/null +++ b/tpl/home.twig | |||
@@ -0,0 +1,29 @@ | |||
1 | {% extends "layout.twig" %} | ||
2 | {% block title %}{% trans "home" %}{% endblock %} | ||
3 | {% block menu %} | ||
4 | {% include '_menu.twig' %} | ||
5 | {% endblock %} | ||
6 | {% block precontent %} | ||
7 | <ul id="sort"> | ||
8 | <li><a href="./?sort=ia&view={{ view }}"><img src="./tpl/img/{{ constant('THEME') }}/top.png" alt="{% trans "by date asc" %}" title="{% trans "by date asc" %}" /></a> {% trans "by date" %} <a href="./?sort=id&view={{ view }}"><img src="./tpl/img/{{ constant('THEME') }}/down.png" alt="{% trans "by date desc" %}" title="{% trans "by date desc" %}" /></a></li> | ||
9 | <li><a href="./?sort=ta&view={{ view }}"><img src="./tpl/img/{{ constant('THEME') }}/top.png" alt="{% trans "by title asc" %}" title="{% trans "by title asc" %}" /></a> {% trans "by title" %} <a href="./?sort=td&view={{ view }}"><img src="./tpl/img/{{ constant('THEME') }}/down.png" alt="{% trans "by title desc" %}" title="{% trans "by title desc" %}" /></a></li> | ||
10 | </ul> | ||
11 | {% endblock %} | ||
12 | {% block content %} | ||
13 | {{ page_links | raw }} | ||
14 | {% for entry in entries %} | ||
15 | <div id="entry-{{ entry.id|e }}" class="entrie"> | ||
16 | <h2><a href="index.php?view=view&id={{ entry.id|e }}">{{ entry.title|e }}</a></h2> | ||
17 | <ul class="tools"> | ||
18 | <li> | ||
19 | <a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li> | ||
20 | <li><a title="{% trans "toggle favorite" %}" class="tool fav {% if entry.is_fav == 0 %}fav-off{% endif %}" href="./?action=toggle_fav&id={{ entry.id|e }}"><span></span></a></li> | ||
21 | <li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span></span></a></li> | ||
22 | </li> | ||
23 | </ul> | ||
24 | <p>{{ entry.content|striptags|slice(0, 300) }}...</p> | ||
25 | <p class="vieworiginal txtright small"><a href="{{ entry.url|e }}" target="_blank" title="{% trans "original" %} : {{ entry.title|e }}">{{ entry.url | e | getDomain }}</a></p> | ||
26 | </div> | ||
27 | {% endfor %} | ||
28 | {{ page_links | raw }} | ||
29 | {% endblock %} \ No newline at end of file | ||
diff --git a/tpl/img/apple-touch-icon-144x144-precomposed.png b/tpl/img/apple-touch-icon-144x144-precomposed.png new file mode 100644 index 00000000..557b479c --- /dev/null +++ b/tpl/img/apple-touch-icon-144x144-precomposed.png | |||
Binary files differ | |||
diff --git a/tpl/img/apple-touch-icon-72x72-precomposed.png b/tpl/img/apple-touch-icon-72x72-precomposed.png new file mode 100644 index 00000000..e167d3a4 --- /dev/null +++ b/tpl/img/apple-touch-icon-72x72-precomposed.png | |||
Binary files differ | |||
diff --git a/tpl/img/apple-touch-icon.png b/tpl/img/apple-touch-icon.png new file mode 100644 index 00000000..4d222fba --- /dev/null +++ b/tpl/img/apple-touch-icon.png | |||
Binary files differ | |||
diff --git a/tpl/img/favicon.ico b/tpl/img/favicon.ico new file mode 100644 index 00000000..0e9ff779 --- /dev/null +++ b/tpl/img/favicon.ico | |||
Binary files differ | |||
diff --git a/tpl/img/light/checkmark-off.png b/tpl/img/light/checkmark-off.png new file mode 100644 index 00000000..3db5a06d --- /dev/null +++ b/tpl/img/light/checkmark-off.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/checkmark-on.png b/tpl/img/light/checkmark-on.png new file mode 100644 index 00000000..cd3abb2c --- /dev/null +++ b/tpl/img/light/checkmark-on.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/down.png b/tpl/img/light/down.png new file mode 100644 index 00000000..b9d536a7 --- /dev/null +++ b/tpl/img/light/down.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/envelop.png b/tpl/img/light/envelop.png new file mode 100755 index 00000000..6be1c886 --- /dev/null +++ b/tpl/img/light/envelop.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/left.png b/tpl/img/light/left.png new file mode 100755 index 00000000..a0a53631 --- /dev/null +++ b/tpl/img/light/left.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/remove.png b/tpl/img/light/remove.png new file mode 100644 index 00000000..f8ad56a3 --- /dev/null +++ b/tpl/img/light/remove.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/star-off.png b/tpl/img/light/star-off.png new file mode 100644 index 00000000..6a0133a7 --- /dev/null +++ b/tpl/img/light/star-off.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/star-on.png b/tpl/img/light/star-on.png new file mode 100644 index 00000000..a9f96eaa --- /dev/null +++ b/tpl/img/light/star-on.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/top.png b/tpl/img/light/top.png new file mode 100755 index 00000000..954a8c0a --- /dev/null +++ b/tpl/img/light/top.png | |||
Binary files differ | |||
diff --git a/tpl/img/light/twitter.png b/tpl/img/light/twitter.png new file mode 100755 index 00000000..cfcfe419 --- /dev/null +++ b/tpl/img/light/twitter.png | |||
Binary files differ | |||
diff --git a/tpl/img/logo.png b/tpl/img/logo.png new file mode 100644 index 00000000..549b8466 --- /dev/null +++ b/tpl/img/logo.png | |||
Binary files differ | |||
diff --git a/tpl/img/messages/close.png b/tpl/img/messages/close.png new file mode 100755 index 00000000..731aa018 --- /dev/null +++ b/tpl/img/messages/close.png | |||
Binary files differ | |||
diff --git a/tpl/img/messages/cross.png b/tpl/img/messages/cross.png new file mode 100755 index 00000000..1514d51a --- /dev/null +++ b/tpl/img/messages/cross.png | |||
Binary files differ | |||
diff --git a/tpl/img/messages/help.png b/tpl/img/messages/help.png new file mode 100755 index 00000000..5c870176 --- /dev/null +++ b/tpl/img/messages/help.png | |||
Binary files differ | |||
diff --git a/tpl/img/messages/tick.png b/tpl/img/messages/tick.png new file mode 100755 index 00000000..a9925a06 --- /dev/null +++ b/tpl/img/messages/tick.png | |||
Binary files differ | |||
diff --git a/tpl/img/messages/warning.png b/tpl/img/messages/warning.png new file mode 100755 index 00000000..628cf2da --- /dev/null +++ b/tpl/img/messages/warning.png | |||
Binary files differ | |||
diff --git a/tpl/install.html b/tpl/install.html deleted file mode 100644 index d11a7810..00000000 --- a/tpl/install.html +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | {include="head"} | ||
2 | <body class="light-style"> | ||
3 | <header> | ||
4 | <h1><a href="index.php"><img src="./img/logo.png" alt="logo poche" /></a>poche</h1> | ||
5 | </header> | ||
6 | <div id="main"> | ||
7 | <form method="post" action="?install" name="loginform"> | ||
8 | <fieldset class="w500p center"> | ||
9 | <h2 class="mbs txtcenter">install your poche</h2> | ||
10 | <div class="row"> | ||
11 | <label class="col w150p" for="login">Login</label> | ||
12 | <input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus /> | ||
13 | </div> | ||
14 | <div class="row"> | ||
15 | <label class="col w150p" for="password">Password</label> | ||
16 | <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2"> | ||
17 | </div> | ||
18 | <div class="row"> | ||
19 | <label class="col w150p" for="password_repeat">Repeat your password</label> | ||
20 | <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3"> | ||
21 | </div> | ||
22 | <div class="row mts txtcenter"> | ||
23 | <button class="bouton" type="submit" tabindex="4">Install</button> | ||
24 | </div> | ||
25 | </fieldset> | ||
26 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | ||
27 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | ||
28 | </form> | ||
29 | |||
30 | {include="footer"} | ||
diff --git a/tpl/install.twig b/tpl/install.twig new file mode 100644 index 00000000..8bcede0d --- /dev/null +++ b/tpl/install.twig | |||
@@ -0,0 +1,28 @@ | |||
1 | {% extends "layout.twig" %} | ||
2 | {% block title %}{% trans "installation" %}{% endblock %} | ||
3 | {% block content %} | ||
4 | <form method="post" action="?install" name="loginform"> | ||
5 | <fieldset class="w500p center"> | ||
6 | <h2 class="mbs txtcenter">{% trans "install your poche" %}</h2> | ||
7 | <p> | ||
8 | {% trans "poche is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://inthepoche.com/?pages/Documentation'>read the documentation on poche website</a>." %} | ||
9 | </p> | ||
10 | <div class="row"> | ||
11 | <label class="col w150p" for="login">{% trans "Login" %}</label> | ||
12 | <input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus /> | ||
13 | </div> | ||
14 | <div class="row"> | ||
15 | <label class="col w150p" for="password">{% trans "Password" %}</label> | ||
16 | <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2"> | ||
17 | </div> | ||
18 | <div class="row"> | ||
19 | <label class="col w150p" for="password_repeat">{% trans "Repeat your password" %}</label> | ||
20 | <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3"> | ||
21 | </div> | ||
22 | <div class="row mts txtcenter"> | ||
23 | <button class="bouton" type="submit" tabindex="4">{% trans "Install" %}</button> | ||
24 | </div> | ||
25 | </fieldset> | ||
26 | <input type="hidden" name="token" value="{{ token }}"> | ||
27 | </form> | ||
28 | {% endblock %} \ No newline at end of file | ||
diff --git a/tpl/js.html b/tpl/js.html deleted file mode 100644 index a02212b0..00000000 --- a/tpl/js.html +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | <script type="text/javascript" src="js/jquery-1.9.1.min.js"></script> | ||
2 | <script type="text/javascript" src="js/poche.js"></script> | ||
3 | |||
4 | {if="$load_all_js == '1'"} | ||
5 | <script type="text/javascript" src="js/jquery.masonry.min.js"></script> | ||
6 | <script type="text/javascript"> | ||
7 | $( window ).load( function() | ||
8 | { | ||
9 | var columns = 3, | ||
10 | setColumns = function() { columns = $( window ).width() > 640 ? 3 : $( window ).width() > 320 ? 2 : 1; }; | ||
11 | |||
12 | setColumns(); | ||
13 | $( window ).resize( setColumns ); | ||
14 | |||
15 | $( '#content' ).masonry( | ||
16 | { | ||
17 | itemSelector: '.entrie', | ||
18 | columnWidth: function( containerWidth ) { return containerWidth / columns; } | ||
19 | }); | ||
20 | }); | ||
21 | </script> | ||
22 | {/if} \ No newline at end of file | ||
diff --git a/tpl/layout.twig b/tpl/layout.twig new file mode 100644 index 00000000..c4bbe779 --- /dev/null +++ b/tpl/layout.twig | |||
@@ -0,0 +1,29 @@ | |||
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]--> | ||
6 | <html> | ||
7 | <head> | ||
8 | <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> | ||
9 | <meta charset="utf-8"> | ||
10 | <meta http-equiv="X-UA-Compatible" content="IE=10"> | ||
11 | <title>{% block title %}{% endblock %} - poche</title> | ||
12 | {% include '_head.twig' %} | ||
13 | {% include '_bookmarklet.twig' %} | ||
14 | </head> | ||
15 | <body> | ||
16 | {% include '_top.twig' %} | ||
17 | <div id="main"> | ||
18 | {% block menu %}{% endblock %} | ||
19 | {% block precontent %}{% endblock %} | ||
20 | {% block messages %} | ||
21 | {% include '_messages.twig' %} | ||
22 | {% endblock %} | ||
23 | <div id="content" class="w600p center"> | ||
24 | {% block content %}{% endblock %} | ||
25 | </div> | ||
26 | </div> | ||
27 | {% include '_footer.twig' %} | ||
28 | </body> | ||
29 | </html> \ No newline at end of file | ||
diff --git a/tpl/login.html b/tpl/login.html deleted file mode 100644 index 6db742c3..00000000 --- a/tpl/login.html +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | {include="head"} | ||
2 | <body class="light-style"> | ||
3 | <header> | ||
4 | <h1><a href="index.php"><img src="./img/logo.png" alt="logo poche" /></a>poche</h1> | ||
5 | </header> | ||
6 | <div id="main"> | ||
7 | <form method="post" action="?login" name="loginform"> | ||
8 | <fieldset class="w500p center"> | ||
9 | <h2 class="mbs txtcenter">login to your poche</h2> | ||
10 | <div class="row"> | ||
11 | <label class="col w150p" for="login">Login</label> | ||
12 | <input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus {if="$demo == '1'"}value="poche"{/if} /> | ||
13 | </div> | ||
14 | <div class="row"> | ||
15 | <label class="col w150p" for="password">Password</label> | ||
16 | <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2" {if="$demo == '1'"}value="poche"{/if} /> | ||
17 | </div> | ||
18 | <div class="row"> | ||
19 | <label class="col w150p">Stay signed in</label> | ||
20 | <div class="col"> | ||
21 | <input type="checkbox" name="longlastingsession" tabindex="3"> | ||
22 | <small class="inbl">(Do not check on public computers)</small> | ||
23 | </div> | ||
24 | </div> | ||
25 | <div class="row mts txtcenter"> | ||
26 | <button class="bouton" type="submit" tabindex="4">Sign in</button> | ||
27 | </div> | ||
28 | </fieldset> | ||
29 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | ||
30 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | ||
31 | </form> | ||
32 | |||
33 | {include="footer"} | ||
diff --git a/tpl/login.twig b/tpl/login.twig new file mode 100644 index 00000000..0ae130bc --- /dev/null +++ b/tpl/login.twig | |||
@@ -0,0 +1,32 @@ | |||
1 | {% extends "layout.twig" %} | ||
2 | |||
3 | {% block title %}{% trans "login to your poche" %}{% endblock %} | ||
4 | {% block content %} | ||
5 | <form method="post" action="?login" name="loginform"> | ||
6 | <fieldset class="w500p center"> | ||
7 | <h2 class="mbs txtcenter">{% trans "login to your poche" %}</h2> | ||
8 | {% if constant('MODE_DEMO') == 1 %}<p>{% trans "you are in demo mode, some features may be disabled." %}</p>{% endif %} | ||
9 | <div class="row"> | ||
10 | <label class="col w150p" for="login">{% trans "Login" %}</label> | ||
11 | <input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} /> | ||
12 | </div> | ||
13 | |||
14 | <div class="row"> | ||
15 | <label class="col w150p" for="password">{% trans "Password" %}</label> | ||
16 | <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2" {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} /> | ||
17 | </div> | ||
18 | <div class="row"> | ||
19 | <label class="col w150p" for="longlastingsession">{% trans "Stay signed in" %}</label> | ||
20 | <div class="col"> | ||
21 | <input type="checkbox" id="longlastingsession" name="longlastingsession" tabindex="3"> | ||
22 | <small class="inbl">{% trans "(Do not check on public computers)" %}</small> | ||
23 | </div> | ||
24 | </div> | ||
25 | <div class="row mts txtcenter"> | ||
26 | <button class="bouton" type="submit" tabindex="4">{% trans "Login" %}</button> | ||
27 | </div> | ||
28 | </fieldset> | ||
29 | <input type="hidden" name="returnurl" value="{{ referer }}"> | ||
30 | <input type="hidden" name="token" value="{{ token }}"> | ||
31 | </form> | ||
32 | {% endblock %} \ No newline at end of file | ||
diff --git a/tpl/messages.html b/tpl/messages.html deleted file mode 100644 index 87af259b..00000000 --- a/tpl/messages.html +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | <div id="messages"><?php echo $msg->display(); ?></div> \ No newline at end of file | ||
diff --git a/tpl/view.html b/tpl/view.html deleted file mode 100644 index e68cd1a1..00000000 --- a/tpl/view.html +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
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]--> | ||
6 | <html> | ||
7 | <head> | ||
8 | <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> | ||
9 | <meta charset="utf-8"> | ||
10 | <meta http-equiv="X-UA-Compatible" content="IE=10"> | ||
11 | <title>{$title}</title> | ||
12 | <link rel="shortcut icon" type="image/x-icon" href="./img/favicon.ico" /> | ||
13 | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="./img/apple-touch-icon-144x144-precomposed.png"> | ||
14 | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="./img/apple-touch-icon-72x72-precomposed.png"> | ||
15 | <link rel="apple-touch-icon-precomposed" href="./img/apple-touch-icon-precomposed.png"> | ||
16 | <link rel="stylesheet" href="./css/knacss.css" media="all"> | ||
17 | <link rel="stylesheet" href="./css/style.css" media="all"> | ||
18 | <!-- Light Theme --> | ||
19 | <link rel="stylesheet" href="./css/style-light.css" media="all" title="light-style"> | ||
20 | <!-- Dark Theme --> | ||
21 | <link rel="alternate stylesheet" href="./css/style-dark.css" media="all" title="dark-style"> | ||
22 | </head> | ||
23 | <body class="article light-style"> | ||
24 | <div id="article" class="w600p"> | ||
25 | <div class="backhome"> | ||
26 | <a href="index.php" title="back to home">←</a> | ||
27 | </div> | ||
28 | <div class="tools"> | ||
29 | <ul> | ||
30 | <li><a title="toggle mark as read" class="tool archive {if="$is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$id})"><span></span></a></li> | ||
31 | <li><a href="#" id="themeswitch">dark</a></li> | ||
32 | <li><a title="toggle favorite" class="tool fav {if="$is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$id})"><span></span></a></li> | ||
33 | <li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;" action="index.php"><input type="hidden" name="token" id="token" value="<?php echo Session::getToken(); ?>" /><input type="hidden" id="view" name="view" value="index" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="id" name="id" value="{$id}" /><input type="submit" class="delete" title="toggle delete" /></form></li> | ||
34 | <li><a href="?logout" title="Logout">logout</a></li> | ||
35 | </ul> | ||
36 | </div> | ||
37 | <header class="mbm"> | ||
38 | <h1><a href="{$url}">{$title}</a></h1> | ||
39 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> | ||
40 | </header> | ||
41 | {include="messages"} | ||
42 | <article> | ||
43 | <div id="readityourselfcontent"> | ||
44 | {$content} | ||
45 | </div> | ||
46 | </article> | ||
47 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> | ||
48 | <div class="backhome"> | ||
49 | <a href="index.php" title="back to home">←</a> | ||
50 | <a href="#" title="back to top">↑</a> | ||
51 | </div> | ||
52 | <div class="support"> | ||
53 | this article appears wrong? <a href="https://github.com/inthepoche/poche/issues/new">create an issue</a> or <a href="mailto:support@inthepoche.com">contact us by mail</a> | ||
54 | </div> | ||
55 | |||
56 | |||
57 | {include="js"} | ||
58 | {include="footer"} \ No newline at end of file | ||
diff --git a/tpl/view.twig b/tpl/view.twig new file mode 100644 index 00000000..e999afa1 --- /dev/null +++ b/tpl/view.twig | |||
@@ -0,0 +1,40 @@ | |||
1 | {% extends "layout.twig" %} | ||
2 | {% block title %}{% trans "home" %}{% endblock %} | ||
3 | {% block content %} | ||
4 | <div id="article"> | ||
5 | <div class="tools"> | ||
6 | <ul class="tools"> | ||
7 | <li> | ||
8 | <li><a href="{{ referer }}" title="{% trans "back to home" %}" class="tool back"><span></span></a></li> | ||
9 | <a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li> | ||
10 | <li><a title="{% trans "toggle favorite" %}" class="tool fav {% if entry.is_fav == 0 %}fav-off{% endif %}" href="./?action=toggle_fav&id={{ entry.id|e }}"><span></span></a></li> | ||
11 | <li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span></span></a></li> | ||
12 | {% if constant('SHARE_TWITTER') == 1 %}<li><a href="https://twitter.com/home?status={{entry.title}}%20{{ entry.url|e }}%20via%20@getpoche" target="_blank" class="tool twitter" title="{% trans "tweet" %}"><span></span></a></li>{% endif %} | ||
13 | {% if constant('SHARE_MAIL') == 1 %}<li><a href="mailto:?subject={{ entry.title|e }}&body={{ entry.url|e }} via @getpoche" class="tool email" title="{% trans "email" %}"><span></span></a></li>{% endif %} | ||
14 | </li> | ||
15 | </ul> | ||
16 | </div> | ||
17 | <header class="mbm"> | ||
18 | <h1>{{ entry.title|e }}</h1> | ||
19 | <div class="vieworiginal txtright small"><a href="{{ entry.url|e }}" target="_blank" title="{% trans "original" %} : {{ entry.title|e }}">{{ entry.url | e | getDomain }}</a></div> | ||
20 | </header> | ||
21 | <article> | ||
22 | {{ content | raw }} | ||
23 | <div class="vieworiginal txtright small"><a href="{{ entry.url|e }}" target="_blank" title="{% trans "original" %} : {{ entry.title|e }}">{{ entry.url | e | getDomain }}</a></div> | ||
24 | </article> | ||
25 | <div class="tools"> | ||
26 | <ul class="tools"> | ||
27 | <li> | ||
28 | <li><a href="{{ referer }}" title="{% trans "back to home" %}" class="tool back"><span></span></a></li> | ||
29 | <li><a href="#" title="{% trans "back to top" %}" class="tool top"><span></span></a></li> | ||
30 | <a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li> | ||
31 | <li><a title="{% trans "toggle favorite" %}" class="tool fav {% if entry.is_fav == 0 %}fav-off{% endif %}" href="./?action=toggle_fav&id={{ entry.id|e }}"><span></span></a></li> | ||
32 | <li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span></span></a></li> | ||
33 | {% if constant('SHARE_TWITTER') == 1 %}<li><a href="https://twitter.com/home?status={{entry.title}}%20{{ entry.url|e }}%20via%20@getpoche" target="_blank" class="tool twitter" title="{% trans "tweet" %}"><span></span></a></li>{% endif %} | ||
34 | {% if constant('SHARE_MAIL') == 1 %}<li><a href="mailto:?subject={{ entry.title|e }}&body={{ entry.url|e }} via @getpoche" class="tool email" title="{% trans "email" %}"><span></span></a></li>{% endif %} | ||
35 | </li> | ||
36 | </ul> | ||
37 | <p>{% trans "this article appears wrong?" %} <a href="https://github.com/inthepoche/poche/issues/new">{% trans "create an issue" %}</a> {% trans "or" %} <a href="mailto:support@inthepoche.com?subject=Wrong display in poche&body={{ entry.url|e }}">{% trans "contact us by mail" %}</a></p> | ||
38 | </div> | ||
39 | </div> | ||
40 | {% endblock %} \ No newline at end of file | ||