Introduce the new default Shaarli template
This commit is contained in:
parent
009ce93581
commit
402b034648
45 changed files with 8074 additions and 0 deletions
16
tpl/default/404.html
Normal file
16
tpl/default/404.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="pageheader">
|
||||||
|
{include="page.header"}
|
||||||
|
<div class="center" id="page404">
|
||||||
|
<h2>{'Sorry, nothing to see here.'|t}</h2>
|
||||||
|
<img src="img/sad_star.png">
|
||||||
|
<p>{$error_message}</p>
|
||||||
|
</div>
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
24
tpl/default/addlink.html
Normal file
24
tpl/default/addlink.html
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div id="addlink-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24">
|
||||||
|
<h2 class="window-title">{"Shaare a new link"|t}</h2>
|
||||||
|
<form method="GET" action="#" name="addform" class="addform">
|
||||||
|
<div>
|
||||||
|
<input type="text" name="post" placeholder="{'URL or leave empty to post a note'|t}" class="autofocus">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="submit" value="{'Add link'|t}">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
28
tpl/default/changepassword.html
Normal file
28
tpl/default/changepassword.html
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div id="addlink-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24">
|
||||||
|
<h2 class="window-title">{"Change password"|t}</h2>
|
||||||
|
<form method="POST" action="#" name="changepasswordform" id="changepasswordform">
|
||||||
|
<div>
|
||||||
|
<input type="password" name="oldpassword" placeholder="{'Current password'|t}" class="autofocus">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="password" name="setpassword" placeholder="{'New password'|t}">
|
||||||
|
</div>
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
<div>
|
||||||
|
<input type="submit" value="{'Change'|t}">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
38
tpl/default/changetag.html
Normal file
38
tpl/default/changetag.html
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div id="addlink-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24">
|
||||||
|
<h2 class="window-title">{"Manage tags"|t}</h2>
|
||||||
|
<form method="POST" action="#" name="changetag" id="changetag">
|
||||||
|
<div>
|
||||||
|
<input type="text" name="fromtag" placeholder="{'Tag'|t}"
|
||||||
|
list="tagsList" autocomplete="off" class="awesomplete autofocus" data-minChars="1">
|
||||||
|
<datalist id="tagsList">
|
||||||
|
{loop="$tags"}<option>{$key}</option>{/loop}
|
||||||
|
</datalist>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="text" name="totag" placeholder="{'New name'|t}"
|
||||||
|
list="toTagsList" autocomplete="off" class="awesomplete" data-minChars="1">
|
||||||
|
<datalist id="toTagsList">
|
||||||
|
{loop="$tags"}<option>{$key}</option>{/loop}
|
||||||
|
</datalist>
|
||||||
|
</div>
|
||||||
|
<div><i class="fa fa-info-circle"></i> {'Case sensitive'|t}</div>
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
<div>
|
||||||
|
<input type="submit" value="{'Rename'|t}" name="renametag">
|
||||||
|
<input type="submit" value="{'Delete'|t}" name="deletetag" class="button button-red confirm-delete">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
210
tpl/default/configure.html
Normal file
210
tpl/default/configure.html
Normal file
|
@ -0,0 +1,210 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
{$ratioLabel='5-12'}
|
||||||
|
{$ratioLabelMobile='7-8'}
|
||||||
|
{$ratioInput='7-12'}
|
||||||
|
{$ratioInputMobile='1-8'}
|
||||||
|
|
||||||
|
<form method="POST" action="#" name="configform" id="configform">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-8 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-3-4 pure-u-22-24 page-form page-form-complete">
|
||||||
|
<h2 class="window-title">{'Configure'|t}</h2>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="title">
|
||||||
|
<span class="label-name">Shaarli {'title'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-7-12 pure-u-1">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="text" name="title" id="title" size="50" value="{$title}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="titleLink">
|
||||||
|
<span class="label-name">{'Title link'|t}</span><br>
|
||||||
|
<span class="label-desc">{'Default value'|t}: ?</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="text" name="titleLink" id="titleLink" size="50" value="{$titleLink}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="titleLink">
|
||||||
|
<span class="label-name">{'Theme'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1">
|
||||||
|
<div class="form-input">
|
||||||
|
<select name="theme" id="theme">
|
||||||
|
{loop="$theme_available"}
|
||||||
|
<option value="{$value}"
|
||||||
|
{if="$value===$theme"}
|
||||||
|
selected="selected"
|
||||||
|
{/if}
|
||||||
|
>
|
||||||
|
{$value|ucfirst}
|
||||||
|
</option>
|
||||||
|
{/loop}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1 ">
|
||||||
|
<div class="form-label">
|
||||||
|
<label>
|
||||||
|
<span class="label-name">{'Timezone'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1 ">
|
||||||
|
<div class="form-input">
|
||||||
|
{ignore}FIXME! too hackish, needs to be fixed upstream{/ignore}
|
||||||
|
<div class="timezone" id="timezone-remove">{$timezone_form}</div>
|
||||||
|
<div class="timezone" id="timezone-add"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1 ">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="redirector">
|
||||||
|
<span class="label-name">{'Redirector'|t}</span><br>
|
||||||
|
<span class="label-desc">{'e. g.'|t} <i>http://anonym.to/?</i> {'will mask the HTTP_REFERER'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1 ">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="text" name="redirector" id="redirector" size="50" value="{$redirector}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile} ">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="disablesessionprotection">
|
||||||
|
<span class="label-name">{'Disable session cookie hijacking protection'|t}</span><br>
|
||||||
|
<span class="label-desc">
|
||||||
|
{'Check this if you get disconnected or if your IP address changes often'|t}
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile} ">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="disablesessionprotection" id="disablesessionprotection"
|
||||||
|
{if="$session_protection_disabled"}checked{/if}>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile} ">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="privateLinkByDefault">
|
||||||
|
<span class="label-name">{'Private links by default'|t}</span><br>
|
||||||
|
<span class="label-desc">{'All new links are private by default'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile} ">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="privateLinkByDefault" id="privateLinkByDefault"
|
||||||
|
{if="$private_links_default"}checked{/if}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile} ">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="enableRssPermalinks">
|
||||||
|
<span class="label-name">{'RSS direct links'|t}</span><br>
|
||||||
|
<span class="label-desc">{'Check this to use direct URL instead of permalink in feeds'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile} ">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="enableRssPermalinks" id="enableRssPermalinks"
|
||||||
|
{if="$enable_rss_permalinks"}checked{/if}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile}">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="hidePublicLinks">
|
||||||
|
<span class="label-name">{'Hide public links'|t}</span><br>
|
||||||
|
<span class="label-desc">{'Do not show any links if the user is not logged in'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile}">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="hidePublicLinks" id="hidePublicLinks"
|
||||||
|
{if="$hide_public_links"}checked{/if}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-{$ratioLabelMobile}">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="hidePublicLinks">
|
||||||
|
<span class="label-name">{'Check updates'|t}</span><br>
|
||||||
|
<span class="label-desc">{'Notify me when a new release is ready'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-{$ratioInputMobile}">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="updateCheck" id="updateCheck"
|
||||||
|
{if="$enable_update_check"}checked{/if}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="center">
|
||||||
|
<input type="submit" value="{'Save'|t}" name="save">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
(function (window, document) {
|
||||||
|
var toRemove = document.getElementById('timezone-remove');
|
||||||
|
var firstSelect = toRemove.getElementsByTagName('select')[0];
|
||||||
|
var secondSelect = toRemove.getElementsByTagName('select')[1];
|
||||||
|
toRemove.parentNode.removeChild(toRemove);
|
||||||
|
var toAdd = document.getElementById('timezone-add');
|
||||||
|
var newTimezone = '<span class="timezone-continent">Continent ' + firstSelect.outerHTML + '</span>';
|
||||||
|
newTimezone += ' <span class="timezone-country">Country ' + secondSelect.outerHTML + '</span>';
|
||||||
|
toAdd.innerHTML = newTimezone;
|
||||||
|
})(this, this.document);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
2086
tpl/default/css/font-awesome.css
vendored
Normal file
2086
tpl/default/css/font-awesome.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
BIN
tpl/default/css/font-awesome.min.css
vendored
Normal file
BIN
tpl/default/css/font-awesome.min.css
vendored
Normal file
Binary file not shown.
861
tpl/default/css/grids-responsive.css
Normal file
861
tpl/default/css/grids-responsive.css
Normal file
|
@ -0,0 +1,861 @@
|
||||||
|
/*!
|
||||||
|
Pure v0.6.0
|
||||||
|
Copyright 2014 Yahoo! Inc. All rights reserved.
|
||||||
|
Licensed under the BSD License.
|
||||||
|
https://github.com/yahoo/pure/blob/master/LICENSE.md
|
||||||
|
*/
|
||||||
|
@media screen and (min-width: 35.5em) {
|
||||||
|
.pure-u-sm-1,
|
||||||
|
.pure-u-sm-1-1,
|
||||||
|
.pure-u-sm-1-2,
|
||||||
|
.pure-u-sm-1-3,
|
||||||
|
.pure-u-sm-2-3,
|
||||||
|
.pure-u-sm-1-4,
|
||||||
|
.pure-u-sm-3-4,
|
||||||
|
.pure-u-sm-1-5,
|
||||||
|
.pure-u-sm-2-5,
|
||||||
|
.pure-u-sm-3-5,
|
||||||
|
.pure-u-sm-4-5,
|
||||||
|
.pure-u-sm-5-5,
|
||||||
|
.pure-u-sm-1-6,
|
||||||
|
.pure-u-sm-5-6,
|
||||||
|
.pure-u-sm-1-8,
|
||||||
|
.pure-u-sm-3-8,
|
||||||
|
.pure-u-sm-5-8,
|
||||||
|
.pure-u-sm-7-8,
|
||||||
|
.pure-u-sm-1-12,
|
||||||
|
.pure-u-sm-5-12,
|
||||||
|
.pure-u-sm-7-12,
|
||||||
|
.pure-u-sm-11-12,
|
||||||
|
.pure-u-sm-1-24,
|
||||||
|
.pure-u-sm-2-24,
|
||||||
|
.pure-u-sm-3-24,
|
||||||
|
.pure-u-sm-4-24,
|
||||||
|
.pure-u-sm-5-24,
|
||||||
|
.pure-u-sm-6-24,
|
||||||
|
.pure-u-sm-7-24,
|
||||||
|
.pure-u-sm-8-24,
|
||||||
|
.pure-u-sm-9-24,
|
||||||
|
.pure-u-sm-10-24,
|
||||||
|
.pure-u-sm-11-24,
|
||||||
|
.pure-u-sm-12-24,
|
||||||
|
.pure-u-sm-13-24,
|
||||||
|
.pure-u-sm-14-24,
|
||||||
|
.pure-u-sm-15-24,
|
||||||
|
.pure-u-sm-16-24,
|
||||||
|
.pure-u-sm-17-24,
|
||||||
|
.pure-u-sm-18-24,
|
||||||
|
.pure-u-sm-19-24,
|
||||||
|
.pure-u-sm-20-24,
|
||||||
|
.pure-u-sm-21-24,
|
||||||
|
.pure-u-sm-22-24,
|
||||||
|
.pure-u-sm-23-24,
|
||||||
|
.pure-u-sm-24-24 {
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
zoom: 1;
|
||||||
|
letter-spacing: normal;
|
||||||
|
word-spacing: normal;
|
||||||
|
vertical-align: top;
|
||||||
|
text-rendering: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-24 {
|
||||||
|
width: 4.1667%;
|
||||||
|
*width: 4.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-12,
|
||||||
|
.pure-u-sm-2-24 {
|
||||||
|
width: 8.3333%;
|
||||||
|
*width: 8.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-8,
|
||||||
|
.pure-u-sm-3-24 {
|
||||||
|
width: 12.5000%;
|
||||||
|
*width: 12.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-6,
|
||||||
|
.pure-u-sm-4-24 {
|
||||||
|
width: 16.6667%;
|
||||||
|
*width: 16.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-5 {
|
||||||
|
width: 20%;
|
||||||
|
*width: 19.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-5-24 {
|
||||||
|
width: 20.8333%;
|
||||||
|
*width: 20.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-4,
|
||||||
|
.pure-u-sm-6-24 {
|
||||||
|
width: 25%;
|
||||||
|
*width: 24.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-7-24 {
|
||||||
|
width: 29.1667%;
|
||||||
|
*width: 29.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-3,
|
||||||
|
.pure-u-sm-8-24 {
|
||||||
|
width: 33.3333%;
|
||||||
|
*width: 33.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-3-8,
|
||||||
|
.pure-u-sm-9-24 {
|
||||||
|
width: 37.5000%;
|
||||||
|
*width: 37.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-2-5 {
|
||||||
|
width: 40%;
|
||||||
|
*width: 39.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-5-12,
|
||||||
|
.pure-u-sm-10-24 {
|
||||||
|
width: 41.6667%;
|
||||||
|
*width: 41.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-11-24 {
|
||||||
|
width: 45.8333%;
|
||||||
|
*width: 45.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1-2,
|
||||||
|
.pure-u-sm-12-24 {
|
||||||
|
width: 50%;
|
||||||
|
*width: 49.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-13-24 {
|
||||||
|
width: 54.1667%;
|
||||||
|
*width: 54.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-7-12,
|
||||||
|
.pure-u-sm-14-24 {
|
||||||
|
width: 58.3333%;
|
||||||
|
*width: 58.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-3-5 {
|
||||||
|
width: 60%;
|
||||||
|
*width: 59.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-5-8,
|
||||||
|
.pure-u-sm-15-24 {
|
||||||
|
width: 62.5000%;
|
||||||
|
*width: 62.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-2-3,
|
||||||
|
.pure-u-sm-16-24 {
|
||||||
|
width: 66.6667%;
|
||||||
|
*width: 66.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-17-24 {
|
||||||
|
width: 70.8333%;
|
||||||
|
*width: 70.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-3-4,
|
||||||
|
.pure-u-sm-18-24 {
|
||||||
|
width: 75%;
|
||||||
|
*width: 74.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-19-24 {
|
||||||
|
width: 79.1667%;
|
||||||
|
*width: 79.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-4-5 {
|
||||||
|
width: 80%;
|
||||||
|
*width: 79.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-5-6,
|
||||||
|
.pure-u-sm-20-24 {
|
||||||
|
width: 83.3333%;
|
||||||
|
*width: 83.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-7-8,
|
||||||
|
.pure-u-sm-21-24 {
|
||||||
|
width: 87.5000%;
|
||||||
|
*width: 87.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-11-12,
|
||||||
|
.pure-u-sm-22-24 {
|
||||||
|
width: 91.6667%;
|
||||||
|
*width: 91.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-23-24 {
|
||||||
|
width: 95.8333%;
|
||||||
|
*width: 95.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-sm-1,
|
||||||
|
.pure-u-sm-1-1,
|
||||||
|
.pure-u-sm-5-5,
|
||||||
|
.pure-u-sm-24-24 {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 48em) {
|
||||||
|
.pure-u-md-1,
|
||||||
|
.pure-u-md-1-1,
|
||||||
|
.pure-u-md-1-2,
|
||||||
|
.pure-u-md-1-3,
|
||||||
|
.pure-u-md-2-3,
|
||||||
|
.pure-u-md-1-4,
|
||||||
|
.pure-u-md-3-4,
|
||||||
|
.pure-u-md-1-5,
|
||||||
|
.pure-u-md-2-5,
|
||||||
|
.pure-u-md-3-5,
|
||||||
|
.pure-u-md-4-5,
|
||||||
|
.pure-u-md-5-5,
|
||||||
|
.pure-u-md-1-6,
|
||||||
|
.pure-u-md-5-6,
|
||||||
|
.pure-u-md-1-8,
|
||||||
|
.pure-u-md-3-8,
|
||||||
|
.pure-u-md-5-8,
|
||||||
|
.pure-u-md-7-8,
|
||||||
|
.pure-u-md-1-12,
|
||||||
|
.pure-u-md-5-12,
|
||||||
|
.pure-u-md-7-12,
|
||||||
|
.pure-u-md-11-12,
|
||||||
|
.pure-u-md-1-24,
|
||||||
|
.pure-u-md-2-24,
|
||||||
|
.pure-u-md-3-24,
|
||||||
|
.pure-u-md-4-24,
|
||||||
|
.pure-u-md-5-24,
|
||||||
|
.pure-u-md-6-24,
|
||||||
|
.pure-u-md-7-24,
|
||||||
|
.pure-u-md-8-24,
|
||||||
|
.pure-u-md-9-24,
|
||||||
|
.pure-u-md-10-24,
|
||||||
|
.pure-u-md-11-24,
|
||||||
|
.pure-u-md-12-24,
|
||||||
|
.pure-u-md-13-24,
|
||||||
|
.pure-u-md-14-24,
|
||||||
|
.pure-u-md-15-24,
|
||||||
|
.pure-u-md-16-24,
|
||||||
|
.pure-u-md-17-24,
|
||||||
|
.pure-u-md-18-24,
|
||||||
|
.pure-u-md-19-24,
|
||||||
|
.pure-u-md-20-24,
|
||||||
|
.pure-u-md-21-24,
|
||||||
|
.pure-u-md-22-24,
|
||||||
|
.pure-u-md-23-24,
|
||||||
|
.pure-u-md-24-24 {
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
zoom: 1;
|
||||||
|
letter-spacing: normal;
|
||||||
|
word-spacing: normal;
|
||||||
|
vertical-align: top;
|
||||||
|
text-rendering: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-24 {
|
||||||
|
width: 4.1667%;
|
||||||
|
*width: 4.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-12,
|
||||||
|
.pure-u-md-2-24 {
|
||||||
|
width: 8.3333%;
|
||||||
|
*width: 8.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-8,
|
||||||
|
.pure-u-md-3-24 {
|
||||||
|
width: 12.5000%;
|
||||||
|
*width: 12.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-6,
|
||||||
|
.pure-u-md-4-24 {
|
||||||
|
width: 16.6667%;
|
||||||
|
*width: 16.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-5 {
|
||||||
|
width: 20%;
|
||||||
|
*width: 19.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-5-24 {
|
||||||
|
width: 20.8333%;
|
||||||
|
*width: 20.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-4,
|
||||||
|
.pure-u-md-6-24 {
|
||||||
|
width: 25%;
|
||||||
|
*width: 24.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-7-24 {
|
||||||
|
width: 29.1667%;
|
||||||
|
*width: 29.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-3,
|
||||||
|
.pure-u-md-8-24 {
|
||||||
|
width: 33.3333%;
|
||||||
|
*width: 33.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-3-8,
|
||||||
|
.pure-u-md-9-24 {
|
||||||
|
width: 37.5000%;
|
||||||
|
*width: 37.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-2-5 {
|
||||||
|
width: 40%;
|
||||||
|
*width: 39.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-5-12,
|
||||||
|
.pure-u-md-10-24 {
|
||||||
|
width: 41.6667%;
|
||||||
|
*width: 41.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-11-24 {
|
||||||
|
width: 45.8333%;
|
||||||
|
*width: 45.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1-2,
|
||||||
|
.pure-u-md-12-24 {
|
||||||
|
width: 50%;
|
||||||
|
*width: 49.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-13-24 {
|
||||||
|
width: 54.1667%;
|
||||||
|
*width: 54.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-7-12,
|
||||||
|
.pure-u-md-14-24 {
|
||||||
|
width: 58.3333%;
|
||||||
|
*width: 58.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-3-5 {
|
||||||
|
width: 60%;
|
||||||
|
*width: 59.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-5-8,
|
||||||
|
.pure-u-md-15-24 {
|
||||||
|
width: 62.5000%;
|
||||||
|
*width: 62.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-2-3,
|
||||||
|
.pure-u-md-16-24 {
|
||||||
|
width: 66.6667%;
|
||||||
|
*width: 66.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-17-24 {
|
||||||
|
width: 70.8333%;
|
||||||
|
*width: 70.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-3-4,
|
||||||
|
.pure-u-md-18-24 {
|
||||||
|
width: 75%;
|
||||||
|
*width: 74.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-19-24 {
|
||||||
|
width: 79.1667%;
|
||||||
|
*width: 79.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-4-5 {
|
||||||
|
width: 80%;
|
||||||
|
*width: 79.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-5-6,
|
||||||
|
.pure-u-md-20-24 {
|
||||||
|
width: 83.3333%;
|
||||||
|
*width: 83.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-7-8,
|
||||||
|
.pure-u-md-21-24 {
|
||||||
|
width: 87.5000%;
|
||||||
|
*width: 87.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-11-12,
|
||||||
|
.pure-u-md-22-24 {
|
||||||
|
width: 91.6667%;
|
||||||
|
*width: 91.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-23-24 {
|
||||||
|
width: 95.8333%;
|
||||||
|
*width: 95.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-md-1,
|
||||||
|
.pure-u-md-1-1,
|
||||||
|
.pure-u-md-5-5,
|
||||||
|
.pure-u-md-24-24 {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 64em) {
|
||||||
|
.pure-u-lg-1,
|
||||||
|
.pure-u-lg-1-1,
|
||||||
|
.pure-u-lg-1-2,
|
||||||
|
.pure-u-lg-1-3,
|
||||||
|
.pure-u-lg-2-3,
|
||||||
|
.pure-u-lg-1-4,
|
||||||
|
.pure-u-lg-3-4,
|
||||||
|
.pure-u-lg-1-5,
|
||||||
|
.pure-u-lg-2-5,
|
||||||
|
.pure-u-lg-3-5,
|
||||||
|
.pure-u-lg-4-5,
|
||||||
|
.pure-u-lg-5-5,
|
||||||
|
.pure-u-lg-1-6,
|
||||||
|
.pure-u-lg-5-6,
|
||||||
|
.pure-u-lg-1-8,
|
||||||
|
.pure-u-lg-3-8,
|
||||||
|
.pure-u-lg-5-8,
|
||||||
|
.pure-u-lg-7-8,
|
||||||
|
.pure-u-lg-1-12,
|
||||||
|
.pure-u-lg-5-12,
|
||||||
|
.pure-u-lg-7-12,
|
||||||
|
.pure-u-lg-11-12,
|
||||||
|
.pure-u-lg-1-24,
|
||||||
|
.pure-u-lg-2-24,
|
||||||
|
.pure-u-lg-3-24,
|
||||||
|
.pure-u-lg-4-24,
|
||||||
|
.pure-u-lg-5-24,
|
||||||
|
.pure-u-lg-6-24,
|
||||||
|
.pure-u-lg-7-24,
|
||||||
|
.pure-u-lg-8-24,
|
||||||
|
.pure-u-lg-9-24,
|
||||||
|
.pure-u-lg-10-24,
|
||||||
|
.pure-u-lg-11-24,
|
||||||
|
.pure-u-lg-12-24,
|
||||||
|
.pure-u-lg-13-24,
|
||||||
|
.pure-u-lg-14-24,
|
||||||
|
.pure-u-lg-15-24,
|
||||||
|
.pure-u-lg-16-24,
|
||||||
|
.pure-u-lg-17-24,
|
||||||
|
.pure-u-lg-18-24,
|
||||||
|
.pure-u-lg-19-24,
|
||||||
|
.pure-u-lg-20-24,
|
||||||
|
.pure-u-lg-21-24,
|
||||||
|
.pure-u-lg-22-24,
|
||||||
|
.pure-u-lg-23-24,
|
||||||
|
.pure-u-lg-24-24 {
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
zoom: 1;
|
||||||
|
letter-spacing: normal;
|
||||||
|
word-spacing: normal;
|
||||||
|
vertical-align: top;
|
||||||
|
text-rendering: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-24 {
|
||||||
|
width: 4.1667%;
|
||||||
|
*width: 4.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-12,
|
||||||
|
.pure-u-lg-2-24 {
|
||||||
|
width: 8.3333%;
|
||||||
|
*width: 8.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-8,
|
||||||
|
.pure-u-lg-3-24 {
|
||||||
|
width: 12.5000%;
|
||||||
|
*width: 12.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-6,
|
||||||
|
.pure-u-lg-4-24 {
|
||||||
|
width: 16.6667%;
|
||||||
|
*width: 16.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-5 {
|
||||||
|
width: 20%;
|
||||||
|
*width: 19.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-5-24 {
|
||||||
|
width: 20.8333%;
|
||||||
|
*width: 20.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-4,
|
||||||
|
.pure-u-lg-6-24 {
|
||||||
|
width: 25%;
|
||||||
|
*width: 24.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-7-24 {
|
||||||
|
width: 29.1667%;
|
||||||
|
*width: 29.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-3,
|
||||||
|
.pure-u-lg-8-24 {
|
||||||
|
width: 33.3333%;
|
||||||
|
*width: 33.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-3-8,
|
||||||
|
.pure-u-lg-9-24 {
|
||||||
|
width: 37.5000%;
|
||||||
|
*width: 37.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-2-5 {
|
||||||
|
width: 40%;
|
||||||
|
*width: 39.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-5-12,
|
||||||
|
.pure-u-lg-10-24 {
|
||||||
|
width: 41.6667%;
|
||||||
|
*width: 41.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-11-24 {
|
||||||
|
width: 45.8333%;
|
||||||
|
*width: 45.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1-2,
|
||||||
|
.pure-u-lg-12-24 {
|
||||||
|
width: 50%;
|
||||||
|
*width: 49.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-13-24 {
|
||||||
|
width: 54.1667%;
|
||||||
|
*width: 54.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-7-12,
|
||||||
|
.pure-u-lg-14-24 {
|
||||||
|
width: 58.3333%;
|
||||||
|
*width: 58.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-3-5 {
|
||||||
|
width: 60%;
|
||||||
|
*width: 59.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-5-8,
|
||||||
|
.pure-u-lg-15-24 {
|
||||||
|
width: 62.5000%;
|
||||||
|
*width: 62.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-2-3,
|
||||||
|
.pure-u-lg-16-24 {
|
||||||
|
width: 66.6667%;
|
||||||
|
*width: 66.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-17-24 {
|
||||||
|
width: 70.8333%;
|
||||||
|
*width: 70.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-3-4,
|
||||||
|
.pure-u-lg-18-24 {
|
||||||
|
width: 75%;
|
||||||
|
*width: 74.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-19-24 {
|
||||||
|
width: 79.1667%;
|
||||||
|
*width: 79.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-4-5 {
|
||||||
|
width: 80%;
|
||||||
|
*width: 79.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-5-6,
|
||||||
|
.pure-u-lg-20-24 {
|
||||||
|
width: 83.3333%;
|
||||||
|
*width: 83.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-7-8,
|
||||||
|
.pure-u-lg-21-24 {
|
||||||
|
width: 87.5000%;
|
||||||
|
*width: 87.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-11-12,
|
||||||
|
.pure-u-lg-22-24 {
|
||||||
|
width: 91.6667%;
|
||||||
|
*width: 91.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-23-24 {
|
||||||
|
width: 95.8333%;
|
||||||
|
*width: 95.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-lg-1,
|
||||||
|
.pure-u-lg-1-1,
|
||||||
|
.pure-u-lg-5-5,
|
||||||
|
.pure-u-lg-24-24 {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 80em) {
|
||||||
|
.pure-u-xl-1,
|
||||||
|
.pure-u-xl-1-1,
|
||||||
|
.pure-u-xl-1-2,
|
||||||
|
.pure-u-xl-1-3,
|
||||||
|
.pure-u-xl-2-3,
|
||||||
|
.pure-u-xl-1-4,
|
||||||
|
.pure-u-xl-3-4,
|
||||||
|
.pure-u-xl-1-5,
|
||||||
|
.pure-u-xl-2-5,
|
||||||
|
.pure-u-xl-3-5,
|
||||||
|
.pure-u-xl-4-5,
|
||||||
|
.pure-u-xl-5-5,
|
||||||
|
.pure-u-xl-1-6,
|
||||||
|
.pure-u-xl-5-6,
|
||||||
|
.pure-u-xl-1-8,
|
||||||
|
.pure-u-xl-3-8,
|
||||||
|
.pure-u-xl-5-8,
|
||||||
|
.pure-u-xl-7-8,
|
||||||
|
.pure-u-xl-1-12,
|
||||||
|
.pure-u-xl-5-12,
|
||||||
|
.pure-u-xl-7-12,
|
||||||
|
.pure-u-xl-11-12,
|
||||||
|
.pure-u-xl-1-24,
|
||||||
|
.pure-u-xl-2-24,
|
||||||
|
.pure-u-xl-3-24,
|
||||||
|
.pure-u-xl-4-24,
|
||||||
|
.pure-u-xl-5-24,
|
||||||
|
.pure-u-xl-6-24,
|
||||||
|
.pure-u-xl-7-24,
|
||||||
|
.pure-u-xl-8-24,
|
||||||
|
.pure-u-xl-9-24,
|
||||||
|
.pure-u-xl-10-24,
|
||||||
|
.pure-u-xl-11-24,
|
||||||
|
.pure-u-xl-12-24,
|
||||||
|
.pure-u-xl-13-24,
|
||||||
|
.pure-u-xl-14-24,
|
||||||
|
.pure-u-xl-15-24,
|
||||||
|
.pure-u-xl-16-24,
|
||||||
|
.pure-u-xl-17-24,
|
||||||
|
.pure-u-xl-18-24,
|
||||||
|
.pure-u-xl-19-24,
|
||||||
|
.pure-u-xl-20-24,
|
||||||
|
.pure-u-xl-21-24,
|
||||||
|
.pure-u-xl-22-24,
|
||||||
|
.pure-u-xl-23-24,
|
||||||
|
.pure-u-xl-24-24 {
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
zoom: 1;
|
||||||
|
letter-spacing: normal;
|
||||||
|
word-spacing: normal;
|
||||||
|
vertical-align: top;
|
||||||
|
text-rendering: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-24 {
|
||||||
|
width: 4.1667%;
|
||||||
|
*width: 4.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-12,
|
||||||
|
.pure-u-xl-2-24 {
|
||||||
|
width: 8.3333%;
|
||||||
|
*width: 8.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-8,
|
||||||
|
.pure-u-xl-3-24 {
|
||||||
|
width: 12.5000%;
|
||||||
|
*width: 12.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-6,
|
||||||
|
.pure-u-xl-4-24 {
|
||||||
|
width: 16.6667%;
|
||||||
|
*width: 16.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-5 {
|
||||||
|
width: 20%;
|
||||||
|
*width: 19.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-5-24 {
|
||||||
|
width: 20.8333%;
|
||||||
|
*width: 20.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-4,
|
||||||
|
.pure-u-xl-6-24 {
|
||||||
|
width: 25%;
|
||||||
|
*width: 24.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-7-24 {
|
||||||
|
width: 29.1667%;
|
||||||
|
*width: 29.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-3,
|
||||||
|
.pure-u-xl-8-24 {
|
||||||
|
width: 33.3333%;
|
||||||
|
*width: 33.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-3-8,
|
||||||
|
.pure-u-xl-9-24 {
|
||||||
|
width: 37.5000%;
|
||||||
|
*width: 37.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-2-5 {
|
||||||
|
width: 40%;
|
||||||
|
*width: 39.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-5-12,
|
||||||
|
.pure-u-xl-10-24 {
|
||||||
|
width: 41.6667%;
|
||||||
|
*width: 41.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-11-24 {
|
||||||
|
width: 45.8333%;
|
||||||
|
*width: 45.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1-2,
|
||||||
|
.pure-u-xl-12-24 {
|
||||||
|
width: 50%;
|
||||||
|
*width: 49.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-13-24 {
|
||||||
|
width: 54.1667%;
|
||||||
|
*width: 54.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-7-12,
|
||||||
|
.pure-u-xl-14-24 {
|
||||||
|
width: 58.3333%;
|
||||||
|
*width: 58.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-3-5 {
|
||||||
|
width: 60%;
|
||||||
|
*width: 59.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-5-8,
|
||||||
|
.pure-u-xl-15-24 {
|
||||||
|
width: 62.5000%;
|
||||||
|
*width: 62.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-2-3,
|
||||||
|
.pure-u-xl-16-24 {
|
||||||
|
width: 66.6667%;
|
||||||
|
*width: 66.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-17-24 {
|
||||||
|
width: 70.8333%;
|
||||||
|
*width: 70.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-3-4,
|
||||||
|
.pure-u-xl-18-24 {
|
||||||
|
width: 75%;
|
||||||
|
*width: 74.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-19-24 {
|
||||||
|
width: 79.1667%;
|
||||||
|
*width: 79.1357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-4-5 {
|
||||||
|
width: 80%;
|
||||||
|
*width: 79.9690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-5-6,
|
||||||
|
.pure-u-xl-20-24 {
|
||||||
|
width: 83.3333%;
|
||||||
|
*width: 83.3023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-7-8,
|
||||||
|
.pure-u-xl-21-24 {
|
||||||
|
width: 87.5000%;
|
||||||
|
*width: 87.4690%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-11-12,
|
||||||
|
.pure-u-xl-22-24 {
|
||||||
|
width: 91.6667%;
|
||||||
|
*width: 91.6357%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-23-24 {
|
||||||
|
width: 95.8333%;
|
||||||
|
*width: 95.8023%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-u-xl-1,
|
||||||
|
.pure-u-xl-1-1,
|
||||||
|
.pure-u-xl-5-5,
|
||||||
|
.pure-u-xl-24-24 {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
BIN
tpl/default/css/grids-responsive.min.css
vendored
Normal file
BIN
tpl/default/css/grids-responsive.min.css
vendored
Normal file
Binary file not shown.
262
tpl/default/css/pure-extras.css
Normal file
262
tpl/default/css/pure-extras.css
Normal file
|
@ -0,0 +1,262 @@
|
||||||
|
/* Images */
|
||||||
|
.pure-img-eliptical {
|
||||||
|
border-radius: 80%;
|
||||||
|
}
|
||||||
|
.pure-img-rounded {
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
.pure-img-bordered {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Thumbnails */
|
||||||
|
.pure-thumbnails li {
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
/* IE7 inline-block hack */
|
||||||
|
*zoom: 1;
|
||||||
|
vertical-align: top;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
.pure-thumbnails {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-thumbnails a:focus {
|
||||||
|
outline: 0 none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-thumb {
|
||||||
|
display: block;
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
.pure-thumb img {
|
||||||
|
max-width: 100%;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-left: auto;
|
||||||
|
vertical-align: middle; /* this will remove a thin line below the image */
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-thumb-bordered {
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
.pure-thumb .caption {
|
||||||
|
text-align: left;
|
||||||
|
display: block;
|
||||||
|
margin: 0 5px 6px;
|
||||||
|
|
||||||
|
}
|
||||||
|
.pure-thumb .caption p {
|
||||||
|
margin: 0.3em 0 0;
|
||||||
|
font-size: 75%;
|
||||||
|
}
|
||||||
|
.pure-thumb .caption .caption-head {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-top: 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-thumb-eliptical img {
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
.pure-thumb-rounded img {
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Badges/Pills */
|
||||||
|
.pure-badge,
|
||||||
|
.pure-badge-error,
|
||||||
|
.pure-badge-warning,
|
||||||
|
.pure-badge-success,
|
||||||
|
.pure-badge-info,
|
||||||
|
.pure-badge-inverse {
|
||||||
|
padding: 0.35em 0.9em 0.35em;
|
||||||
|
background-color: #9D988E;
|
||||||
|
color: #fff;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 11.844px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1.2em;
|
||||||
|
vertical-align: baseline;
|
||||||
|
white-space: nowrap;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin: 0.2em;
|
||||||
|
}
|
||||||
|
.pure-badge-error {
|
||||||
|
background-color: #D13C38;
|
||||||
|
}
|
||||||
|
.pure-badge-warning {
|
||||||
|
background-color: #E78C05;
|
||||||
|
}
|
||||||
|
.pure-badge-success {
|
||||||
|
background-color: rgb(83, 180, 79);
|
||||||
|
}
|
||||||
|
.pure-badge-info {
|
||||||
|
background-color: rgb(18, 169, 218);
|
||||||
|
}
|
||||||
|
.pure-badge-inverse {
|
||||||
|
background-color: #4D370C;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Alerts */
|
||||||
|
.pure-alert {
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
padding: 1em;
|
||||||
|
background: #ccc;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-alert label {
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
/* IE7 inline-block hack */
|
||||||
|
*zoom: 1;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-alert {
|
||||||
|
background-color: rgb(209, 235, 238);
|
||||||
|
color: rgb(102, 131, 145);
|
||||||
|
}
|
||||||
|
.pure-alert-error {
|
||||||
|
background-color: #D13C38;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-alert-warning {
|
||||||
|
background-color: rgb(250, 191, 103);
|
||||||
|
color: rgb(151, 96, 13);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-alert-success {
|
||||||
|
background-color: rgb(83, 180, 79);
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Contextual Modals */
|
||||||
|
|
||||||
|
.pure-popover {
|
||||||
|
position: relative;
|
||||||
|
width: 300px;
|
||||||
|
background-color: #f0f1f3;
|
||||||
|
color: #2f3034;
|
||||||
|
padding: 15px;
|
||||||
|
border: 1px solid #bfc0c8;
|
||||||
|
border-radius: 2px;
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
||||||
|
box-padding: border-box;
|
||||||
|
-webkit-background-clip: padding-box;
|
||||||
|
-moz-background-clip: padding;
|
||||||
|
background-clip: padding-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-arrow-border, .pure-arrow {
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 10px;
|
||||||
|
height:0;
|
||||||
|
width:0;
|
||||||
|
position:absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* POPOVER ARROW POSITIONING BOTTOM */
|
||||||
|
|
||||||
|
.pure-popover.bottom .pure-arrow-border {
|
||||||
|
border-color: #bfc0c8 transparent transparent transparent;
|
||||||
|
bottom: -20px;
|
||||||
|
left: 50%;
|
||||||
|
}
|
||||||
|
.pure-popover.bottom .pure-arrow {
|
||||||
|
border-color: #f0f1f3 transparent transparent transparent;
|
||||||
|
bottom:-19px;
|
||||||
|
left: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* POPOVER ARROW POSITIONING TOP*/
|
||||||
|
|
||||||
|
.pure-popover.top .pure-arrow-border {
|
||||||
|
border-color: transparent transparent #bfc0c8 transparent;
|
||||||
|
top: -21px;
|
||||||
|
left: 50%;
|
||||||
|
}
|
||||||
|
.pure-popover.top .pure-arrow {
|
||||||
|
border-color: transparent transparent #f0f1f3 transparent;
|
||||||
|
top:-20px;
|
||||||
|
left: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* POPOVER ARROW POSITIONING RIGHT*/
|
||||||
|
|
||||||
|
.pure-popover.right .pure-arrow-border {
|
||||||
|
border-color: transparent transparent transparent #bfc0c8;
|
||||||
|
top: 45%;
|
||||||
|
right: -21px;
|
||||||
|
}
|
||||||
|
.pure-popover.right .pure-arrow {
|
||||||
|
border-color: transparent transparent transparent #f0f1f3;
|
||||||
|
top:45%;
|
||||||
|
right: -20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* POPOVER ARROW POSITIONING LEFT*/
|
||||||
|
|
||||||
|
.pure-popover.left .pure-arrow-border {
|
||||||
|
border-color: transparent #bfc0c8 transparent transparent;
|
||||||
|
top: 45%;
|
||||||
|
left: -21px;
|
||||||
|
}
|
||||||
|
.pure-popover.left .pure-arrow {
|
||||||
|
border-color: transparent #f0f1f3 transparent transparent;
|
||||||
|
top:45%;
|
||||||
|
left: -20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* BUTTON IMPROVEMENTS */
|
||||||
|
.pure-button-block {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.pure-button-small {
|
||||||
|
padding: .6em 2em .65em;
|
||||||
|
font-size:70%;
|
||||||
|
}
|
||||||
|
.pure-button-large {
|
||||||
|
padding: .8em 5em .9em;
|
||||||
|
font-size:110%;
|
||||||
|
}
|
||||||
|
.pure-button-selected {
|
||||||
|
background-color: #345fcb;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.pure-button-secondary {
|
||||||
|
background: rgb(161, 195, 238);
|
||||||
|
color: rgb(26, 88, 122);
|
||||||
|
}
|
||||||
|
.pure-button-error {
|
||||||
|
background: rgb(214, 86, 75);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.pure-button-success {
|
||||||
|
background: rgb(54, 197, 71);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.pure-button-warning {
|
||||||
|
background: rgb(255, 163, 0);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
1475
tpl/default/css/pure.css
Normal file
1475
tpl/default/css/pure.css
Normal file
File diff suppressed because it is too large
Load diff
BIN
tpl/default/css/pure.min.css
vendored
Normal file
BIN
tpl/default/css/pure.min.css
vendored
Normal file
Binary file not shown.
1180
tpl/default/css/shaarli.css
Normal file
1180
tpl/default/css/shaarli.css
Normal file
File diff suppressed because it is too large
Load diff
113
tpl/default/daily.html
Normal file
113
tpl/default/daily.html
Normal file
|
@ -0,0 +1,113 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-6 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor" id="daily">
|
||||||
|
<h2 class="window-title">
|
||||||
|
{'The Daily Shaarli'|t}
|
||||||
|
<a href="?do=dailyrss" title="{'1 RSS entry per day'|t}"><i class="fa fa-rss"></i></a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<div id="plugin_zone_start_daily" class="plugin_zone">
|
||||||
|
{loop="$plugin_start_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="daily-about">
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1 center">
|
||||||
|
{if="$previousday"}
|
||||||
|
<a href="?do=daily&day={$previousday}">
|
||||||
|
<i class="fa fa-arrow-left"></i>
|
||||||
|
{'Previous day'|t}
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
<div class="daily-desc pure-u-lg-1-3 pure-u-1 center">
|
||||||
|
{'All links of one day in a single page.'|t}
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1 center">
|
||||||
|
{if="$nextday"}
|
||||||
|
<a href="?do=daily&day={$nextday}">
|
||||||
|
{'Next day'|t}
|
||||||
|
<i class="fa fa-arrow-right"></i>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 class="window-subtitle">{function="strftime('%A %d, %B %Y', $day)"}</h3>
|
||||||
|
|
||||||
|
<div id="plugin_zone_about_daily" class="plugin_zone">
|
||||||
|
{loop="$daily_about_plugin"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{if="$linksToDisplay"}
|
||||||
|
<div class="pure-g">
|
||||||
|
{loop="$cols"}
|
||||||
|
{if="isset($value[0])"}
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1">
|
||||||
|
{loop="value"}
|
||||||
|
{$link=$value}
|
||||||
|
<div class="daily-entry">
|
||||||
|
<div class="daily-entry-title center">
|
||||||
|
<a href="?{$link.shorturl}" title="{'Permalink'|t}">
|
||||||
|
<i class="fa fa-link"></i>
|
||||||
|
</a>
|
||||||
|
<a href="{$link.real_url}">{$link.title}</a>
|
||||||
|
</div>
|
||||||
|
{$thumb=thumbnail($value.url)}
|
||||||
|
{if="$thumb!=false"}
|
||||||
|
<div class="daily-entry-thumbnail">{$thumb}</div>
|
||||||
|
{/if}
|
||||||
|
<div class="daily-entry-description">{$link.formatedDescription}</div>
|
||||||
|
{if="$link.tags"}
|
||||||
|
<div class="daily-entry-tags center">
|
||||||
|
{loop="link.taglist"}
|
||||||
|
<span class="label label-tag" title="Add tag">
|
||||||
|
{$value}
|
||||||
|
</span>
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
<div class="dailyEntryFooter">
|
||||||
|
{loop="$link.link_plugin"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
{else}
|
||||||
|
<div class="dailyNoEntry">No articles on this day.</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="clear"></div>
|
||||||
|
|
||||||
|
<div id="plugin_zone_end_picwall" class="plugin_zone">
|
||||||
|
{loop="$plugin_end_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
16
tpl/default/dailyrss.html
Normal file
16
tpl/default/dailyrss.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<item>
|
||||||
|
<title>{$title} - {function="strftime('%A %e %B %Y', $daydate)"}</title>
|
||||||
|
<guid>{$absurl}</guid>
|
||||||
|
<link>{$absurl}</link>
|
||||||
|
<pubDate>{$rssdate}</pubDate>
|
||||||
|
<description><![CDATA[
|
||||||
|
{loop="links"}
|
||||||
|
<h3><a href="{$value.url}">{$value.title}</a></h3>
|
||||||
|
<small>{if="!$hide_timestamps"}{function="strftime('%c', $value.timestamp)"} - {/if}{if="$value.tags"}{$value.tags}{/if}<br>
|
||||||
|
{$value.url}</small><br>
|
||||||
|
{if="$value.thumbnail"}{$value.thumbnail}{/if}<br>
|
||||||
|
{if="$value.description"}{$value.formatedDescription}{/if}
|
||||||
|
<br><br><hr>
|
||||||
|
{/loop}
|
||||||
|
]]></description>
|
||||||
|
</item>
|
98
tpl/default/editlink.html
Normal file
98
tpl/default/editlink.html
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{if="$source !== 'firefoxsocialapi' && $source !== 'bookmarklet'"}
|
||||||
|
{include="page.header"}
|
||||||
|
{else}
|
||||||
|
<div class="center">Shaare to: {$shaarlititle}</div>
|
||||||
|
{/if}
|
||||||
|
<div id="editlinkform" class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-5 pure-u-1-24"></div>
|
||||||
|
<form method="post" name="linkform" class="page-form pure-u-lg-3-5 pure-u-22-24 page-form page-form-light">
|
||||||
|
<h2 class="window-title">{'Shaare'|t}</h2>
|
||||||
|
<input type="hidden" name="lf_linkdate" value="{$link.linkdate}">
|
||||||
|
{if="isset($link.id)"}
|
||||||
|
<input type="hidden" name="lf_id" value="{$link.id}">
|
||||||
|
{/if}
|
||||||
|
<div>
|
||||||
|
<label for="lf_url">{'URL'|t}</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="text" name="lf_url" id="lf_url" value="{$link.url}" class="lf_input">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="lf_title">{'Title'|t}</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="text" name="lf_title" id="lf_title" value="{$link.title}" class="lf_input">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="lf_description">{'Description'|t}</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<textarea name="lf_description" id="lf_description" onkeyup="textAreaAdjust(this)"
|
||||||
|
>{$link.description}</textarea>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="lf_tags">{'Tags'|t}</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="text" name="lf_tags" id="lf_tags" value="{$link.tags}" class="lf_input"
|
||||||
|
data-list="{loop="$tags"}{$key}, {/loop}" data-multiple autocomplete="off" >
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<input type="checkbox" name="lf_private" id="lf_private"
|
||||||
|
{if="($link_is_new && $default_private_links) || $link.private == true"}
|
||||||
|
checked="checked"
|
||||||
|
{/if}>
|
||||||
|
<label for="lf_private">{'Private'|t}</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="editlink-plugins">
|
||||||
|
{loop="$edit_link_plugin"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="submit-buttons center">
|
||||||
|
<input type="submit" value="{'Save'|t}" name="save_edit" class="">
|
||||||
|
{if="!$link_is_new"}
|
||||||
|
<a href="?delete_link&lf_linkdate={$value.id}&token={$token}"
|
||||||
|
title="" name="delete_link" class="button button-red confirm-delete">
|
||||||
|
{'Delete'|t}
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
{if="$http_referer"}
|
||||||
|
<input type="hidden" name="returnurl" value="{$http_referer}">
|
||||||
|
{/if}
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
{if="$source !== 'firefoxsocialapi'"}
|
||||||
|
{include="page.footer"}
|
||||||
|
{/if}
|
||||||
|
<script>
|
||||||
|
awesompleteUniqueTag('#lf_tags');
|
||||||
|
if (!document.linkform.lf_title.value) {
|
||||||
|
document.linkform.lf_title.focus();
|
||||||
|
} else if (!document.linkform.lf_description.value) {
|
||||||
|
document.linkform.lf_description.focus();
|
||||||
|
} else {
|
||||||
|
document.linkform.lf_tags.focus();
|
||||||
|
}
|
||||||
|
function textAreaAdjust(el) {
|
||||||
|
el.style.height = (el.scrollHeight > el.clientHeight) ? (el.scrollHeight) + "px" : (el.clientHeight - 18) + "px";
|
||||||
|
}
|
||||||
|
(function (window, document) {
|
||||||
|
textAreaAdjust(document.linkform.lf_description)
|
||||||
|
})(this, this.document);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
10
tpl/default/export.bookmarks.html
Normal file
10
tpl/default/export.bookmarks.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE NETSCAPE-Bookmark-file-1>
|
||||||
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
|
||||||
|
<!-- This is an automatically generated file.
|
||||||
|
It will be read and overwritten.
|
||||||
|
Do Not Edit! -->{ignore}The RainTPL loop is formatted to avoid generating extra newlines{/ignore}
|
||||||
|
<TITLE>{$pagetitle}</TITLE>
|
||||||
|
<H1>Shaarli export of {$selection} bookmarks on {$date}</H1>
|
||||||
|
<DL><p>{loop="links"}
|
||||||
|
<DT><A HREF="{$value.url}" ADD_DATE="{$value.timestamp}" PRIVATE="{$value.private}" TAGS="{$value.taglist}">{$value.title}</A>{if="$value.description"}{$eol}<DD>{$value.description}{/if}{/loop}
|
||||||
|
</DL><p>
|
68
tpl/default/export.html
Normal file
68
tpl/default/export.html
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<form method="GET" action="#" name="exportform" id="exportform">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-4 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-1-2 pure-u-22-24 page-form page-form-complete">
|
||||||
|
<div>
|
||||||
|
<h2 class="window-title">{"Export Database"|t}</h2>
|
||||||
|
</div>
|
||||||
|
<input type="hidden" name="do" value="export">
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-2 pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label><span class="label-name">{'Selection'|t}</span></label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-1-2 pure-u-1">
|
||||||
|
<div class="radio-buttons">
|
||||||
|
<div>
|
||||||
|
<input type="radio" name="selection" value="all" checked="checked">
|
||||||
|
{'All'|t}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="radio" name="selection" value="private">
|
||||||
|
{'Private'|t}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="radio" name="selection" value="public">
|
||||||
|
{'Public'|t}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-2 pure-u-7-8">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="prepend_note_url">
|
||||||
|
<span class="label-name">{'Prepend note permalinks with this Shaarli instance\'s URL'|t}</span><br>
|
||||||
|
<span class="label-desc">{'Useful to import bookmarks in a web browser'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-1-2 pure-u-1-8">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="prepend_note_url" id="prepend_note_url">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="center">
|
||||||
|
<input type="submit" value="{'Export'|t}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
40
tpl/default/feed.atom.html
Normal file
40
tpl/default/feed.atom.html
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||||
|
<title>{$pagetitle}</title>
|
||||||
|
<subtitle>Shaared links</subtitle>
|
||||||
|
{if="$show_dates"}
|
||||||
|
<updated>{$last_update}</updated>
|
||||||
|
{/if}
|
||||||
|
<link rel="self" href="{$self_link}#" />
|
||||||
|
{loop="$plugins_feed_header"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
<author>
|
||||||
|
<name>{$index_url}</name>
|
||||||
|
<uri>{$index_url}</uri>
|
||||||
|
</author>
|
||||||
|
<id>{$index_url}</id>
|
||||||
|
<generator>Shaarli</generator>
|
||||||
|
{loop="$links"}
|
||||||
|
<entry>
|
||||||
|
<title>{$value.title}</title>
|
||||||
|
{if="$usepermalinks"}
|
||||||
|
<link href="{$value.guid}#" />
|
||||||
|
{else}
|
||||||
|
<link href="{$value.url}#" />
|
||||||
|
{/if}
|
||||||
|
<id>{$value.guid}</id>
|
||||||
|
{if="$show_dates"}
|
||||||
|
<published>{$value.pub_iso_date}</published>
|
||||||
|
<updated>{$value.up_iso_date}</updated>
|
||||||
|
{/if}
|
||||||
|
<content type="html" xml:lang="{$language}"><![CDATA[{$value.description}]]></content>
|
||||||
|
{loop="$value.taglist"}
|
||||||
|
<category scheme="{$index_url}?searchtags=" term="{$value|strtolower}" label="{$value}" />
|
||||||
|
{/loop}
|
||||||
|
{loop="$value.feed_plugins"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</entry>
|
||||||
|
{/loop}
|
||||||
|
</feed>
|
37
tpl/default/feed.rss.html
Normal file
37
tpl/default/feed.rss.html
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>{$pagetitle}</title>
|
||||||
|
<link>{$index_url}</link>
|
||||||
|
<description>Shaared links</description>
|
||||||
|
<language>{$language}</language>
|
||||||
|
<copyright>{$index_url}</copyright>
|
||||||
|
<generator>Shaarli</generator>
|
||||||
|
<atom:link rel="self" href="{$self_link}" />
|
||||||
|
{loop="$plugins_feed_header"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
{loop="$links"}
|
||||||
|
<item>
|
||||||
|
<title>{$value.title}</title>
|
||||||
|
<guid isPermaLink="{if="$usepermalinks"}true{else}false{/if}">{$value.guid}</guid>
|
||||||
|
{if="$usepermalinks"}
|
||||||
|
<link>{$value.guid}</link>
|
||||||
|
{else}
|
||||||
|
<link>{$value.url}</link>
|
||||||
|
{/if}
|
||||||
|
{if="$show_dates"}
|
||||||
|
<pubDate>{$value.pub_iso_date}</pubDate>
|
||||||
|
<atom:modified>{$value.up_iso_date}</atom:modified>
|
||||||
|
{/if}
|
||||||
|
<description><![CDATA[{$value.description}]]></description>
|
||||||
|
{loop="$value.taglist"}
|
||||||
|
<category domain="{$index_url}?searchtags=">{$value}</category>
|
||||||
|
{/loop}
|
||||||
|
{loop="$value.feed_plugins"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</item>
|
||||||
|
{/loop}
|
||||||
|
</channel>
|
||||||
|
</rss>
|
BIN
tpl/default/fonts/Fira-Sans-regular.woff
Normal file
BIN
tpl/default/fonts/Fira-Sans-regular.woff
Normal file
Binary file not shown.
BIN
tpl/default/fonts/Fira-Sans-regular.woff2
Normal file
BIN
tpl/default/fonts/Fira-Sans-regular.woff2
Normal file
Binary file not shown.
BIN
tpl/default/fonts/FontAwesome.otf
Normal file
BIN
tpl/default/fonts/FontAwesome.otf
Normal file
Binary file not shown.
BIN
tpl/default/fonts/fontawesome-webfont.eot
Normal file
BIN
tpl/default/fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
BIN
tpl/default/fonts/fontawesome-webfont.svg
Normal file
BIN
tpl/default/fonts/fontawesome-webfont.svg
Normal file
Binary file not shown.
After Width: | Height: | Size: 357 KiB |
BIN
tpl/default/fonts/fontawesome-webfont.ttf
Normal file
BIN
tpl/default/fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
tpl/default/fonts/fontawesome-webfont.woff
Normal file
BIN
tpl/default/fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
tpl/default/fonts/fontawesome-webfont.woff2
Normal file
BIN
tpl/default/fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
BIN
tpl/default/img/favicon.png
Normal file
BIN
tpl/default/img/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
BIN
tpl/default/img/icon.png
Normal file
BIN
tpl/default/img/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 530 B |
BIN
tpl/default/img/sad_star.png
Normal file
BIN
tpl/default/img/sad_star.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
85
tpl/default/import.html
Normal file
85
tpl/default/import.html
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<form method="POST" action="?do=import" enctype="multipart/form-data" name="uploadform" id="uploadform">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-4 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-1-2 pure-u-22-24 page-form page-form-complete">
|
||||||
|
<div>
|
||||||
|
<h2 class="window-title">{"Import Database"|t}</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
<div class="center" id="import-field">
|
||||||
|
<input type="hidden" name="MAX_FILE_SIZE" value="{$maxfilesize}">
|
||||||
|
<input type="file" name="filetoupload">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label><span class="label-name">{'Visibility'|t}</span></label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-2-3 pure-u-1">
|
||||||
|
<div class="radio-buttons">
|
||||||
|
<div>
|
||||||
|
<input type="radio" name="privacy" value="default" checked="checked">
|
||||||
|
Use values from the imported file, default to public
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="radio" name="privacy" value="private">
|
||||||
|
Import all bookmarks as private
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="radio" name="privacy" value="public">
|
||||||
|
Import all bookmarks as public
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-7-8">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="overwrite">
|
||||||
|
<span class="label-name">{'Overwrite existing bookmarks'|t}</span><br>
|
||||||
|
<span class="label-desc">{'Duplicates based on URL'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-2-3 pure-u-1-8">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="overwrite" id="overwrite">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="default_tags"><span class="label-name">{'Add default tags'|t}</span></label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-2-3 pure-u-1">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="text" name="default_tags" id="default_tags" placeholder="{'Tag'|t}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="center">
|
||||||
|
<input type="submit" name="import_file" value="{'Import'|t}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
20
tpl/default/includes.html
Normal file
20
tpl/default/includes.html
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<title>{$pagetitle}</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="format-detection" content="telephone=no" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="alternate" type="application/atom+xml" href="{$feedurl}?do=atom{$searchcrits}#" title="ATOM Feed" />
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="{$feedurl}?do=rss{$searchcrits}#" title="RSS Feed" />
|
||||||
|
<link href="img/favicon.png" rel="shortcut icon" type="image/png" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/pure.min.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/grids-responsive.min.css">
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/pure-extras.css">
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/font-awesome.min.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="inc/awesomplete.css#" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/shaarli.css" />
|
||||||
|
{if="is_file('inc/user.css')"}
|
||||||
|
<link type="text/css" rel="stylesheet" href="inc/user.css#" />
|
||||||
|
{/if}
|
||||||
|
{loop="$plugins_includes.css_files"}
|
||||||
|
<link type="text/css" rel="stylesheet" href="{$value}#"/>
|
||||||
|
{/loop}
|
||||||
|
<link rel="search" type="application/opensearchdescription+xml" href="?do=opensearch#" title="Shaarli search - {$shaarlititle}"/>
|
122
tpl/default/install.html
Normal file
122
tpl/default/install.html
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
{$ratioLabel='1-4'}
|
||||||
|
{$ratioInput='3-4'}
|
||||||
|
|
||||||
|
<form method="POST" action="#" name="installform" id="installform">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-6 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-2-3 pure-u-22-24 page-form page-form-complete">
|
||||||
|
<h2 class="window-title">{'Install Shaarli'|t}</h2>
|
||||||
|
|
||||||
|
<div class="center">
|
||||||
|
{'It looks like it\'s the first time you run Shaarli. Please configure it.'|t}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="username">
|
||||||
|
<span class="label-name">{'Username'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="text" name="setlogin" id="username">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="password">
|
||||||
|
<span class="label-name">{'Password'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="text" name="setpassword" id="password">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1 ">
|
||||||
|
<div class="form-label">
|
||||||
|
<label>
|
||||||
|
<span class="label-name">{'Timezone'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1 ">
|
||||||
|
<div class="form-input">
|
||||||
|
{ignore}FIXME! too hackish, needs to be fixed upstream{/ignore}
|
||||||
|
<div class="timezone" id="timezone-remove">{$timezone_html}</div>
|
||||||
|
<div class="timezone" id="timezone-add"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-1">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="title">
|
||||||
|
<span class="label-name">{'Shaarli title'|t}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="text" name="title" id="title" placeholder="{'My links'|t}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-{$ratioLabel} pure-u-7-8">
|
||||||
|
<div class="form-label">
|
||||||
|
<label for="update">
|
||||||
|
<span class="label-name">{'Check updates'|t}</span><br>
|
||||||
|
<span class="label-desc">
|
||||||
|
{'Notify me when a new release is ready'|t}
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-{$ratioInput} pure-u-1-8">
|
||||||
|
<div class="form-input">
|
||||||
|
<input type="checkbox" name="updateCheck" id="update" checked="checked">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="center">
|
||||||
|
<input type="submit" value="{'Install'|t}" name="Save">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
{include="page.footer"}
|
||||||
|
<script>
|
||||||
|
// FIXME!
|
||||||
|
(function (window, document) {
|
||||||
|
var toRemove = document.getElementById('timezone-remove');
|
||||||
|
var firstSelect = toRemove.getElementsByTagName('select')[0];
|
||||||
|
var secondSelect = toRemove.getElementsByTagName('select')[1];
|
||||||
|
toRemove.parentNode.removeChild(toRemove);
|
||||||
|
var toAdd = document.getElementById('timezone-add');
|
||||||
|
var newTimezone = '<span class="timezone-continent">Continent ' + firstSelect.outerHTML + '</span>';
|
||||||
|
newTimezone += ' <span class="timezone-country">Country ' + secondSelect.outerHTML + '</span>';
|
||||||
|
toAdd.innerHTML = newTimezone;
|
||||||
|
})(this, this.document);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
228
tpl/default/js/shaarli.js
Normal file
228
tpl/default/js/shaarli.js
Normal file
|
@ -0,0 +1,228 @@
|
||||||
|
window.onload = function () {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve an element up in the tree from its class name.
|
||||||
|
*/
|
||||||
|
function getParentByClass(el, className) {
|
||||||
|
var p = el.parentNode;
|
||||||
|
if (p == null || p.classList.contains(className)) {
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
return getParentByClass(p, className);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle responsive menu.
|
||||||
|
* Source: http://purecss.io/layouts/tucked-menu-vertical/
|
||||||
|
*/
|
||||||
|
(function (window, document) {
|
||||||
|
var menu = document.getElementById('shaarli-menu'),
|
||||||
|
WINDOW_CHANGE_EVENT = ('onorientationchange' in window) ? 'orientationchange':'resize';
|
||||||
|
|
||||||
|
function toggleHorizontal() {
|
||||||
|
[].forEach.call(
|
||||||
|
document.getElementById('shaarli-menu').querySelectorAll('.menu-transform'),
|
||||||
|
function(el){
|
||||||
|
el.classList.toggle('pure-menu-horizontal');
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
function toggleMenu() {
|
||||||
|
// set timeout so that the panel has a chance to roll up
|
||||||
|
// before the menu switches states
|
||||||
|
if (menu.classList.contains('open')) {
|
||||||
|
setTimeout(toggleHorizontal, 500);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
toggleHorizontal();
|
||||||
|
}
|
||||||
|
menu.classList.toggle('open');
|
||||||
|
document.getElementById('menu-toggle').classList.toggle('x');
|
||||||
|
};
|
||||||
|
|
||||||
|
function closeMenu() {
|
||||||
|
if (menu.classList.contains('open')) {
|
||||||
|
toggleMenu();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById('menu-toggle').addEventListener('click', function (e) {
|
||||||
|
toggleMenu();
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener(WINDOW_CHANGE_EVENT, closeMenu);
|
||||||
|
})(this, this.document);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fold/Expand shaares description and thumbnail.
|
||||||
|
*/
|
||||||
|
var foldAllButtons = document.getElementsByClassName('fold-all');
|
||||||
|
var foldButtons = document.getElementsByClassName('fold-button');
|
||||||
|
|
||||||
|
[].forEach.call(foldButtons, function (foldButton) {
|
||||||
|
// Retrieve description
|
||||||
|
var description = null;
|
||||||
|
var thumbnail = null;
|
||||||
|
var linklistItem = getParentByClass(foldButton, 'linklist-item');
|
||||||
|
if (linklistItem != null) {
|
||||||
|
description = linklistItem.querySelector('.linklist-item-description');
|
||||||
|
thumbnail = linklistItem.querySelector('.linklist-item-thumbnail');
|
||||||
|
if (description != null || thumbnail != null) {
|
||||||
|
foldButton.style.display = 'inline';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foldButton.addEventListener('click', function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
toggleFold(event.target, description, thumbnail);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
if (foldAllButtons != null) {
|
||||||
|
[].forEach.call(foldAllButtons, function (foldAllButton) {
|
||||||
|
foldAllButton.addEventListener('click', function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
[].forEach.call(foldButtons, function (foldButton) {
|
||||||
|
// Retrieve description
|
||||||
|
var description = null;
|
||||||
|
var thumbnail = null;
|
||||||
|
var linklistItem = getParentByClass(foldButton, 'linklist-item');
|
||||||
|
if (linklistItem != null) {
|
||||||
|
description = linklistItem.querySelector('.linklist-item-description');
|
||||||
|
thumbnail = linklistItem.querySelector('.linklist-item-thumbnail');
|
||||||
|
if (description != null || thumbnail != null) {
|
||||||
|
foldButton.style.display = 'inline';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleFold(foldButton.firstElementChild, description, thumbnail);
|
||||||
|
});
|
||||||
|
foldAllButton.firstElementChild.classList.toggle('fa-chevron-down');
|
||||||
|
foldAllButton.firstElementChild.classList.toggle('fa-chevron-up');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleFold(button, description, thumb)
|
||||||
|
{
|
||||||
|
// Switch fold/expand - up = fold
|
||||||
|
if (button.classList.contains('fa-chevron-up')) {
|
||||||
|
button.title = 'Expand';
|
||||||
|
if (description != null) {
|
||||||
|
description.style.display = 'none';
|
||||||
|
}
|
||||||
|
if (thumb != null) {
|
||||||
|
thumb.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
button.title = 'Fold';
|
||||||
|
if (description != null) {
|
||||||
|
description.style.display = 'block';
|
||||||
|
}
|
||||||
|
if (thumb != null) {
|
||||||
|
thumb.style.display = 'block';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
button.classList.toggle('fa-chevron-down');
|
||||||
|
button.classList.toggle('fa-chevron-up');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Confirmation message before deletion.
|
||||||
|
*/
|
||||||
|
var deleteLinks = document.querySelectorAll('.confirm-delete');
|
||||||
|
[].forEach.call(deleteLinks, function(deleteLink) {
|
||||||
|
deleteLink.addEventListener('click', function(event) {
|
||||||
|
if(! confirm('Are you sure you want to delete this link ?')) {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Close alerts
|
||||||
|
*/
|
||||||
|
var closeLinks = document.querySelectorAll('.pure-alert-close');
|
||||||
|
[].forEach.call(closeLinks, function(closeLink) {
|
||||||
|
closeLink.addEventListener('click', function(event) {
|
||||||
|
var alert = getParentByClass(event.target, 'pure-alert-closable');
|
||||||
|
alert.style.display = 'none';
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* New version dismiss.
|
||||||
|
* Hide the message for one week using localStorage.
|
||||||
|
*/
|
||||||
|
var newVersionDismiss = document.getElementById('new-version-dismiss');
|
||||||
|
var newVersionMessage = document.querySelector('.new-version-message');
|
||||||
|
if (newVersionMessage != null
|
||||||
|
&& localStorage.getItem('newVersionDismiss') != null
|
||||||
|
&& parseInt(localStorage.getItem('newVersionDismiss')) + 7*24*60*60*1000 > (new Date()).getTime()
|
||||||
|
) {
|
||||||
|
newVersionMessage.style.display = 'none';
|
||||||
|
}
|
||||||
|
if (newVersionDismiss != null) {
|
||||||
|
newVersionDismiss.addEventListener('click', function () {
|
||||||
|
localStorage.setItem('newVersionDismiss', (new Date()).getTime());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var hiddenReturnurl = document.getElementsByName('returnurl');
|
||||||
|
if (hiddenReturnurl != null) {
|
||||||
|
hiddenReturnurl.value = window.location.href;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Autofocus text fields
|
||||||
|
*/
|
||||||
|
var autofocusElements = document.querySelector('.autofocus');
|
||||||
|
if (autofocusElements != null) {
|
||||||
|
autofocusElements.focus();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle sub menus/forms
|
||||||
|
*/
|
||||||
|
var openers = document.getElementsByClassName('subheader-opener');
|
||||||
|
if (openers != null) {
|
||||||
|
[].forEach.call(openers, function(opener) {
|
||||||
|
opener.addEventListener('click', function(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
|
var id = opener.getAttribute('data-open-id');
|
||||||
|
var sub = document.getElementById(id);
|
||||||
|
|
||||||
|
if (sub != null) {
|
||||||
|
[].forEach.call(document.getElementsByClassName('subheader-form'), function (element) {
|
||||||
|
if (element != sub) {
|
||||||
|
removeClass(element, 'open')
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
sub.classList.toggle('open');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeClass(element, classname) {
|
||||||
|
element.className = element.className.replace(new RegExp('(?:^|\\s)'+ classname + '(?:\\s|$)'), ' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove CSS target padding (for fixed bar)
|
||||||
|
*/
|
||||||
|
if (location.hash != '') {
|
||||||
|
var anchor = document.querySelector(location.hash);
|
||||||
|
if (anchor != null) {
|
||||||
|
var padsize = anchor.clientHeight;
|
||||||
|
console.log(document.querySelector(location.hash).clientHeight);
|
||||||
|
this.window.scroll(0, this.window.scrollY - padsize);
|
||||||
|
anchor.style.paddingTop = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
246
tpl/default/linklist.html
Normal file
246
tpl/default/linklist.html
Normal file
|
@ -0,0 +1,246 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<div class="linkcount pure-u-0 pure-u-lg-visible">
|
||||||
|
{if="!empty($linkcount)"}
|
||||||
|
<span class="strong">{$linkcount}</span> {function="t('shaare', 'shaares', $linkcount)"}
|
||||||
|
{if="$privateLinkcount>0"}
|
||||||
|
<br><span class="strong">{$privateLinkcount}</span> {function="t('private link', 'private links', $privateLinkcount)"}
|
||||||
|
{/if}
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="search-linklist">
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-1 pure-u-lg-1-2">
|
||||||
|
<form method="GET" class="searchform" name="searchform">
|
||||||
|
<input type="text" tabindex="1" name="searchterm" placeholder="{'Search text'|t}"
|
||||||
|
{if="!empty($search_term)"}
|
||||||
|
value="{$search_term}"
|
||||||
|
{/if}
|
||||||
|
>
|
||||||
|
<button type="submit" class="search-button"><i class="fa fa-search"></i></button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-lg-1-2">
|
||||||
|
<form method="GET" class="tagfilter" name="tagfilter">
|
||||||
|
<input type="text" tabindex="2" name="searchtags" placeholder="{'Filter by tag'|t}"
|
||||||
|
{if="!empty($search_tags)"}
|
||||||
|
value="{$search_tags}"
|
||||||
|
{/if}
|
||||||
|
autocomplete="off" data-multiple data-minChars="1"
|
||||||
|
data-list="{loop="$tags"}{$key}, {/loop}"
|
||||||
|
>
|
||||||
|
<button type="submit" class="search-button"><i class="fa fa-search"></i></button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{loop="$plugins_header.fields_toolbar"}
|
||||||
|
<form
|
||||||
|
{loop="$value.attr"}
|
||||||
|
{$key}="{$value}"
|
||||||
|
{/loop}>
|
||||||
|
<div class="toolbar-plugin pure-u-lg-1">
|
||||||
|
{loop="$value.inputs"}
|
||||||
|
<input
|
||||||
|
{loop="$value"}
|
||||||
|
{$key}="{$value}"
|
||||||
|
{/loop}>
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
{/loop}
|
||||||
|
|
||||||
|
<div id="linklist">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-2-24 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-20-24 pure-u-22-24">
|
||||||
|
<div class="linkcount pure-u-lg-0 center">
|
||||||
|
{if="!empty($linkcount)"}
|
||||||
|
<span class="strong">{$linkcount}</span> {function="t('shaare', 'shaares', $linkcount)"}
|
||||||
|
{if="$privateLinkcount>0"}
|
||||||
|
· <span class="strong">{$privateLinkcount}</span> {function="t('private link', 'private links', $privateLinkcount)"}
|
||||||
|
{/if}
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{include="linklist.paging"}
|
||||||
|
|
||||||
|
<div id="plugin_zone_start_linklist" class="plugin_zone">
|
||||||
|
{loop="$plugin_start_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{if="count($links)==0"}
|
||||||
|
<div class="pure-g pure-alert pure-alert-error search-result">
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
<div class="pure-u-20-24">
|
||||||
|
<div id="searchcriteria">{'Nothing found.'|t}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{elseif="!empty($search_term) or !empty($search_tags)"}
|
||||||
|
<div class="pure-g pure-alert pure-alert-success search-result">
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
<div class="pure-u-20-24">
|
||||||
|
{function="t('%s result', '%s results', $result_count)"}
|
||||||
|
{if="!empty($search_term)"}
|
||||||
|
{'for'|t} <em><strong>{$search_term}</strong></em>
|
||||||
|
{/if}
|
||||||
|
{if="!empty($search_tags)"}
|
||||||
|
{$exploded_tags=explode(' ', $search_tags)}
|
||||||
|
{'tagged'|t}
|
||||||
|
{loop="$exploded_tags"}
|
||||||
|
<span class="label label-tag" title="{'Remove tag'|t}">
|
||||||
|
<a href="?removetag={function="urlencode($value)"}">{$value}<span class="remove"><i class="fa fa-times"></i></span></a>
|
||||||
|
</span>
|
||||||
|
{/loop}
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-2-24 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-20-24 pure-u-22-24">
|
||||||
|
{loop="links"}
|
||||||
|
<div class="anchor" id="{$value.shorturl}"></div>
|
||||||
|
<div class="linklist-item{if="$value.class"} {$value.class}{/if}">
|
||||||
|
|
||||||
|
<div class="linklist-item-title">
|
||||||
|
{if="isLoggedIn()"}
|
||||||
|
<div class="linklist-item-editbuttons">
|
||||||
|
{if="$value.private"}
|
||||||
|
<span class="label label-private">{'Private'|t}</span>
|
||||||
|
{/if}
|
||||||
|
<!-- FIXME! JS translation -->
|
||||||
|
<a href="?edit_link={$value.id}" title="{'Edit'|t}"><i class="fa fa-pencil-square-o edit-link"></i></a>
|
||||||
|
<a href="#" title="{'Fold'|t}" class="fold-button"><i class="fa fa-chevron-up"></i></a>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a href="{$value.real_url}">
|
||||||
|
{if="strpos($value.url, $value.shorturl) === false"}
|
||||||
|
<i class="fa fa-external-link"></i>
|
||||||
|
{else}
|
||||||
|
<i class="fa fa-sticky-note"></i>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<span class="linklist-link">{$value.title}</span>
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{$thumb=thumbnail($value.url)}
|
||||||
|
{if="$thumb!=false"}
|
||||||
|
<div class="linklist-item-thumbnail">{$thumb}</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{if="$value.description"}
|
||||||
|
<div class="linklist-item-description">
|
||||||
|
{$value.description}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="linklist-item-infos clear">
|
||||||
|
{if="$value.tags"}
|
||||||
|
<div class="linklist-item-tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
{$tag_counter=count($value.taglist)}
|
||||||
|
{loop="value.taglist"}
|
||||||
|
<span class="label label-tag" title="Add tag">
|
||||||
|
<a href="?addtag={$value|urlencode}">{$value}</a>
|
||||||
|
</span>
|
||||||
|
{if="$tag_counter - 1 != $counter"}·{/if}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="linklist-item-infos-dateblock pure-u-lg-3-8 pure-u-1">
|
||||||
|
<a href="?{$value.shorturl}" title="{'Permalink'|t}">
|
||||||
|
{if="!$hide_timestamps || isLoggedIn()"}
|
||||||
|
{$updated=$value.updated_timestamp ? 'Edited: '. strftime('%c', $value.updated_timestamp) : 'Permalink'}
|
||||||
|
<span class="linkdate" title="{$updated}">
|
||||||
|
<i class="fa fa-clock-o"></i>
|
||||||
|
{function="strftime('%d %B %Y %H:%M', $value.timestamp)"}{if="$value.updated_timestamp"}*{/if}
|
||||||
|
·
|
||||||
|
</span>
|
||||||
|
{/if}
|
||||||
|
{'permalink'|t}
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="pure-u-0 pure-u-lg-visible">
|
||||||
|
{if="isset($value.link_plugin)"}
|
||||||
|
·
|
||||||
|
{$link_plugin_counter=count($value.link_plugin)}
|
||||||
|
{loop="$value.link_plugin"}
|
||||||
|
{$value}
|
||||||
|
{if="$link_plugin_counter - 1 != $counter"}·{/if}
|
||||||
|
{/loop}
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div><div
|
||||||
|
{ignore}do not add space or line break between these div - Firefox issue{/ignore}
|
||||||
|
class="linklist-item-infos-url pure-u-lg-5-8 pure-u-1">
|
||||||
|
<a href="{$value.real_url}" title="{$value.title}">
|
||||||
|
<i class="fa fa-link"></i> {$value.url}
|
||||||
|
</a>
|
||||||
|
{if="isLoggedIn()"}
|
||||||
|
<a href="?delete_link&lf_linkdate={$value.id}&token={$token}"
|
||||||
|
title="{'Delete'|t}" class="delete-link pure-u-0 pure-u-lg-visible confirm-delete">
|
||||||
|
<i class="fa fa-trash"></i>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
<div class="mobile-buttons pure-u-1 pure-u-lg-0">
|
||||||
|
{if="isset($value.link_plugin)"}
|
||||||
|
{$link_plugin_counter=count($value.link_plugin)}
|
||||||
|
{loop="$value.link_plugin"}
|
||||||
|
{$value}
|
||||||
|
{if="$link_plugin_counter - 1 != $counter"}·{/if}
|
||||||
|
{/loop}
|
||||||
|
{/if}
|
||||||
|
{if="isLoggedIn()"}
|
||||||
|
·
|
||||||
|
<a href="?delete_link&lf_linkdate={$value.id}&token={$token}"
|
||||||
|
title="{'Delete'|t}" class="delete-link confirm-delete">
|
||||||
|
<i class="fa fa-trash"></i>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="plugin_zone_end_linklist" class="plugin_zone">
|
||||||
|
{loop="$plugin_end_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-2-24 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-20-24 pure-u-22-24">
|
||||||
|
{include="linklist.paging"}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
55
tpl/default/linklist.paging.html
Normal file
55
tpl/default/linklist.paging.html
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
<div class="linklist-paging">
|
||||||
|
<div class="paging pure-g">
|
||||||
|
<div class="linklist-filters pure-u-1-3">
|
||||||
|
{if="isLoggedIn() or !empty($action_plugin)"}
|
||||||
|
<span class="linklist-filters-text pure-u-0 pure-u-lg-visible">
|
||||||
|
{'Filters'|t}
|
||||||
|
</span>
|
||||||
|
{if="isLoggedIn()"}
|
||||||
|
<a href="?privateonly" title="{'Filter private links'|t}"
|
||||||
|
class={if="$privateonly"}"filter-on"{else}"filter-off"{/if}
|
||||||
|
><i class="fa fa-key"></i></a>
|
||||||
|
{/if}
|
||||||
|
<a href="#" class="filter-off fold-all" title="Fold all">
|
||||||
|
<i class="fa fa-chevron-up"></i>
|
||||||
|
</a>
|
||||||
|
{loop="$action_plugin"}
|
||||||
|
{$value.attr.class=isset($value.attr.class) ? $value.attr.class : ''}
|
||||||
|
{$value.attr.class=!empty($value.on) ? $value.attr.class .' filter-on' : $value.attr.class .' filter-off'}
|
||||||
|
<a
|
||||||
|
{loop="$value.attr"}
|
||||||
|
{$key}="{$value}"
|
||||||
|
{/loop}>
|
||||||
|
{$value.html}
|
||||||
|
</a>
|
||||||
|
{/loop}
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="linklist-pages pure-u-1-3">
|
||||||
|
{if="$next_page_url"}
|
||||||
|
<a href="{$next_page_url}" class="paging_newer">
|
||||||
|
<i class="fa fa-arrow-circle-left"></i>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
{if="$page_max>1"}<span class="strong">{$page_current} / {$page_max}</span>{/if}
|
||||||
|
{if="$previous_page_url"}
|
||||||
|
<a href="{$previous_page_url}" class="paging_older">
|
||||||
|
<i class="fa fa-arrow-circle-right"></i>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="linksperpage pure-u-1-3">
|
||||||
|
<div class="pure-u-0 pure-u-lg-visible">{'Links per page'|t}</div>
|
||||||
|
<a href="?linksperpage=20">20</a>
|
||||||
|
<a href="?linksperpage=50">50</a>
|
||||||
|
<a href="?linksperpage=100">100</a>
|
||||||
|
<form method="GET" class="pure-u-0 pure-u-lg-visible">
|
||||||
|
<input type="text" name="linksperpage" placeholder="133">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
59
tpl/default/loginform.html
Normal file
59
tpl/default/loginform.html
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
{if="!ban_canLogin($conf)"}
|
||||||
|
<div class="pure-g pure-alert pure-alert-error pure-alert-closable center">
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
<div class="pure-u-20-24">
|
||||||
|
{'You have been banned after too many failed login attempts. Try again later.'|t}
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-2-24">
|
||||||
|
<i class="fa fa-times pure-alert-close"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{else}
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div id="login-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24">
|
||||||
|
<form method="post" name="loginform">
|
||||||
|
<h2 class="window-title">{'Login'|t}</h2>
|
||||||
|
<div>
|
||||||
|
<input type="text" name="login" placeholder="{'Username'|t}"
|
||||||
|
{if="!empty($username)"}value="{$username}"{/if} class="autofocus" tabindex="20">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="password" name="password" placeholder="{'Password'|t}" tabindex="21">
|
||||||
|
</div>
|
||||||
|
<div class="remember-me">
|
||||||
|
<input type="checkbox" name="longlastingsession" id="longlastingsessionform"
|
||||||
|
checked="checked" tabindex="22">
|
||||||
|
<label for="longlastingsessionform">{'Remember me'|t}</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<input type="submit" value="{'Login'|t}" class="bigbutton" tabindex="23">
|
||||||
|
</div>
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
{if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl}">{/if}
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-8"></div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
<script>
|
||||||
|
{if="ban_canLogin($conf) && ! empty($username)"}
|
||||||
|
// Focus password on load if the username is set.
|
||||||
|
var passwords = document.getElementsByName('password');
|
||||||
|
if (passwords.length == 2) {
|
||||||
|
passwords[1].focus();
|
||||||
|
}
|
||||||
|
{/if}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
45
tpl/default/opensearch.html
Normal file
45
tpl/default/opensearch.html
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
||||||
|
<ShortName>Shaarli search - {$pagetitle}</ShortName>
|
||||||
|
<Description>Shaarli search - {$pagetitle}</Description>
|
||||||
|
<Url type="text/html" template="{$serverurl}?searchterm={searchTerms}" />
|
||||||
|
<Url type="application/atom+xml" template="{$serverurl}?do=atom&searchterm={searchTerms}"/>
|
||||||
|
<Url type="application/rss+xml" template="{$serverurl}?do=rss&searchterm={searchTerms}"/>
|
||||||
|
<InputEncoding>UTF-8</InputEncoding>
|
||||||
|
<Developer>Shaarli Community - https://github.com/shaarli/Shaarli/</Developer>
|
||||||
|
<Image width="16" height="16">data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAHRklE
|
||||||
|
QVRIx5WWaWxU5xWG3++7986dfYYZb+MN2xiMDRiDFePUiQsNoiwpUNpAmhInJVEqpa0oQUlbJVKq
|
||||||
|
olaiqpLKUtOKhAJRm1BKRVWctuykpFjAgPcFx/uMl5mxPTOeuXPv3O3rjyiV0lIpfX+dc36c55xf
|
||||||
|
70vwP9TZ2fFpSQCwT5u6unX4f0QeNLx27RoMQwfRveTd11T23M+8S9w+Z3NRma1W4Hk6/nEimFpM
|
||||||
|
Xnun9Xpmz1MPY+feOhBi/fwAAOjq7iJEqmQqCZf5i7NvyNZ/bJPYgAjCiJc2Zmhyw68SM/T1+NlK
|
||||||
|
uf61BPoH+tHU1PT5ACMjI8RXvACvpZ5NT0+fmrG+2TKqtDLV0BgA2AUfXS3+UtfDX2ixCf73E+oA
|
||||||
|
rat92CTkv9fRBwEkSaLDt/JZR/v0Q7qjb8dQ5hjSqmYSOCkzBbogL+ij2RN8bik9wK88Al9tH4tG
|
||||||
|
ow88lvb19yEyPwfGGLq6OungYD9fUlosrqwoQVVVUeOU8qE/mU0ZTq6KNvreNort+5hugkayQUgY
|
||||||
|
qQld/u6qnVRhkciscOdOkNy5E0RnZ+e/AbwsZxAaHyORZA+prW01CTlnGppOqAcwUnCmlDAkAyin
|
||||||
|
Dapb2t7lNeRijpwvTGlJROXugoKS+upz/S19Kj9lJjxXGY1VU49tGevt7WOCSMHTeAXclePsQts9
|
||||||
|
Jq9oLR7rPVkHxpUYkK2c07ZDiieRNcAx3ZlNphcnsxbiMuEsXFSTZpabp+VVS17UNSV/8n7+gN75
|
||||||
|
+C1DM6VEjkgatiz/5IOCAheiUdeyr+198keKZXLzTKYjMDk/ZzGJhkV9AiPSdWaYIAY4U7TYNJMR
|
||||||
|
pugMqgHcXTiJqDK8ycMv2+TPWyWtKFw3KEdtJxNz8u8+/PNYIqeUgY/Oz+Z7q5X3gtqvG7qip8yM
|
||||||
|
HqdZg5kGgwGACoQQQkEMQ2DMIFnGE04xCRQTZFaexUT6jEEImJ2njjxx9fr13hfqfULTQ4apHept
|
||||||
|
lxf4mrqS3Tek0w1toTc1K6WcXfAwnyWH8kSkIueEhdhNrzUAv16fSCUzNwR3vr/G2lKWojMqbxF4
|
||||||
|
FWlLPDvBR+RBNpTsNqfkV7htuUe/UVq456qdzzvFh2KjdSH0I6ODs1ps9NHcw2jMfRYcEQyOCiox
|
||||||
|
aWR0fOQWVLFNUuOnrXJxfIPnpXLRKzocLpsJanhUU/bfjJ4gfwm/ys3JGX1cuS3UBvauLa/MBe9z
|
||||||
|
5c/xGRdSKpiVmhhN98JK/w4DGgg4uLh8u1NfPhWbmzszeH3G1rxv3dL7+qXyGaXHJi46s4QQophp
|
||||||
|
TKSDkHWGlAqmGCbAGAUA3sY5LlRZv3w44Dhnm0iFzbnsGfJR5E+EEsppTBVXuBptL5b8YQMlwnO+
|
||||||
|
Z2wtea4cl8Rc3KXJ4zShRm0CFaCaGhSDwGSMlbtLhSr7FnVhKhscC4+AO3L0x5PSFBdfE9i40SE6
|
||||||
|
xLSWRCIbJ6phIqEysqvk+2aJ0vhB1NK353zyaL3GS76NgRbVYykkt2OXuaQqMwuxkk0FT+OJpS+z
|
||||||
|
piXPRP1KzRvz4dRvO68PaWCMEQAIDcbqFiLJtyaSA/Ef3NnMGttgvHS7mUUWw7cTMemtY/cPsw3n
|
||||||
|
oe2+4mGXpt7VGWPJ6zOn1V2Xfaz5AxgvBzexodmeGWmCbWWTDOGpSZIIqeAe2/IYvnXgWbomUj2T
|
||||||
|
lNlwUP7bV64lzuRIeoodqDxi1OKRs/e0i08dH/6JPWtk6KKaZd3xj2jAXkY3BvZGK1xrhZvRNktP
|
||||||
|
fNA0ubQrxyxV4jHpSkWoXJPKYqBetxeRpgsMWwE5b/bxaYxUDSWmzCLbStqQuy02LY4/cWLsqH8i
|
||||||
|
HYNbyEeJczkJSzH2855DwsXp932F9hXEKQSQ1UHa568iRAa3uFyeNVolMBmeIrzT4cTXm37KMuvA
|
||||||
|
xb8XXTqiDELRgKg8h/dGWwP9iSDaIzcYJSCbA/uNR3N2sNahV/hbsSA70vEdW66tCOOpj8FRkIgU
|
||||||
|
Q5ybLUopiTzeTpFWUoTXdR3knwQMzLANOyQX50fWhDktLeAX3UcIA2EEQHPgi6TBsrWzaLGm7emC
|
||||||
|
H7bY+GPlV6YumiEpDhslxGBgROApz+yyhROzduIEzwngDh48iD3jO0nBRAUUXtHcoq+ZWbI5EWWa
|
||||||
|
WTieFjoKsaVoN92T88J4vlz+asXqpb+hEcdotbdueZ47vyiqhpA2UoRQwpoLtpNHxR0382jR8RzT
|
||||||
|
k8xYMyCMMfR33Uc8rxdrA9tpuHPyS7pPOTRPZ1arepa4rUsybiWnnU9a39ZXxdur+XoGAGMdoXLi
|
||||||
|
M789axnfNxDr8omiDcvF1f3OhPf18efjF/nfz6PGvv6zlrlwWwYBgcBZbKH4WKHODLHEURDxbHDF
|
||||||
|
QWGePftHUlZWjsy8guYnH2EgwORfZ5cuavEqgGhLnL6+sycvRP1Fbux/fheIn3wCCN4N/qdPMwA4
|
||||||
|
2fYOeoe7kc6kcfCbh8n+r7YwAOjs6QCl9DNx5t7dew+MOf8CcuqqoLxlhwgAAAAASUVORK5CYII=
|
||||||
|
</Image>
|
||||||
|
</OpenSearchDescription>
|
25
tpl/default/page.footer.html
Normal file
25
tpl/default/page.footer.html
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
<div id="footer" class="pure-u-20-24">
|
||||||
|
<strong><a href="https://github.com/shaarli/Shaarli">Shaarli</a></strong> ·
|
||||||
|
The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community ·
|
||||||
|
<a href="doc/Home.html" rel="nofollow">Documentation</a>
|
||||||
|
{loop="$plugins_footer.text"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
</div>
|
||||||
|
{loop="$plugins_footer.endofpage"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
|
||||||
|
{loop="$plugins_footer.js_files"}
|
||||||
|
<script src="{$value}#"></script>
|
||||||
|
{/loop}
|
||||||
|
|
||||||
|
<script src="js/shaarli.js"></script>
|
||||||
|
<script src="inc/awesomplete.js#"></script>
|
||||||
|
<script src="inc/awesomplete-multiple-tags.js#"></script>
|
174
tpl/default/page.header.html
Normal file
174
tpl/default/page.header.html
Normal file
|
@ -0,0 +1,174 @@
|
||||||
|
<div class="shaarli-menu pure-g" id="shaarli-menu">
|
||||||
|
<div class="pure-u-lg-0 pure-u-1">
|
||||||
|
<div class="pure-menu">
|
||||||
|
<a href="{$titleLink}" class="pure-menu-link">
|
||||||
|
<i class="fa fa-home"></i>
|
||||||
|
{$shaarlititle}
|
||||||
|
</a>
|
||||||
|
<a href="#" class="menu-toggle" id="menu-toggle"><s class="bar"></s><s class="bar"></s></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1">
|
||||||
|
<div class="pure-menu menu-transform pure-menu-horizontal pure-g">
|
||||||
|
<ul class="pure-menu-list pure-u-lg-5-6 pure-u-1">
|
||||||
|
<li class="pure-menu-item pure-u-0 pure-u-lg-visible">
|
||||||
|
<a href="{$titleLink}" class="pure-menu-link">
|
||||||
|
<img src="img/icon.png" width="16" height="16" class="head-logo" alt="logo" />
|
||||||
|
{$shaarlititle}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{if="isLoggedIn() || $openshaarli"}
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=addlink" class="pure-menu-link">
|
||||||
|
<i class="fa fa-plus" ></i> {'Shaare'|t}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=tools" class="pure-menu-link">{'Tools'|t}</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=tagcloud" class="pure-menu-link">{'Tag cloud'|t}</a>
|
||||||
|
</li>
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=picwall{$searchcrits}" class="pure-menu-link">{'Picture wall'|t}</a>
|
||||||
|
</li>
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=daily" class="pure-menu-link">{'Daily'|t}</a>
|
||||||
|
</li>
|
||||||
|
{loop="$plugins_header.buttons_toolbar"}
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a
|
||||||
|
{$value.attr.class=isset($value.class) ? $value.attr.class . ' pure-menu-link' : 'pure-menu-link'}
|
||||||
|
{loop="$value.attr"}
|
||||||
|
{$key}="{$value}"
|
||||||
|
{/loop}>
|
||||||
|
{$value.html}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{/loop}
|
||||||
|
<li class="pure-menu-item pure-u-lg-0">
|
||||||
|
<a href="?do=atom{$searchcrits}" class="pure-menu-link">{'RSS Feed'|t}</a>
|
||||||
|
</li>
|
||||||
|
{if="isLoggedIn()"}
|
||||||
|
<li class="pure-menu-item pure-u-lg-0">
|
||||||
|
<a href="?do=logout" class="pure-menu-link">{'Logout'|t}</a>
|
||||||
|
</li>
|
||||||
|
{else}
|
||||||
|
<li class="pure-menu-item pure-u-lg-0">
|
||||||
|
<a href="?do=login" class="pure-menu-link">{'Login'|t}</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
</ul>
|
||||||
|
<div class="header-buttons pure-u-lg-1-6 pure-u-0 pure-u-lg-visible">
|
||||||
|
<ul class="pure-menu-list">
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="#" class="pure-menu-link subheader-opener"
|
||||||
|
data-open-id="search"
|
||||||
|
id="search-button" title="{'Search'|t}">
|
||||||
|
<i class="fa fa-search"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=atom{$searchcrits}" class="pure-menu-link" title="{'RSS Feed'|t}">
|
||||||
|
<i class="fa fa-rss"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{if="!isLoggedIn()"}
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=login" class="pure-menu-link subheader-opener"
|
||||||
|
data-open-id="header-login-form"
|
||||||
|
id="login-button" title="{'Login'|t}">
|
||||||
|
<i class="fa fa-user"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{else}
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="?do=logout" class="pure-menu-link" title="{'Logout'|t}">
|
||||||
|
<i class="fa fa-sign-out"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{/if}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="content">
|
||||||
|
<div id="search" class="subheader-form">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-1 pure-u-lg-1-2">
|
||||||
|
<form method="GET" class="searchform" name="searchform">
|
||||||
|
<input type="text" tabindex="1" id="searchform_value" name="searchterm" placeholder="{'Search text'|t}"
|
||||||
|
{if="!empty($search_term)"}
|
||||||
|
value="{$search_term}"
|
||||||
|
{/if}
|
||||||
|
>
|
||||||
|
<button type="submit" class="search-button"><i class="fa fa-search"></i></button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-lg-1-2">
|
||||||
|
<form method="GET" class="tagfilter" name="tagfilter">
|
||||||
|
<input type="text" tabindex="2" name="searchtags" id="tagfilter_value" placeholder="{'Filter by tag'|t}"
|
||||||
|
{if="!empty($search_tags)"}
|
||||||
|
value="{$search_tags}"
|
||||||
|
{/if}
|
||||||
|
autocomplete="off" data-multiple data-minChars="1"
|
||||||
|
data-list="{loop="$tags"}{$key}, {/loop}"
|
||||||
|
>
|
||||||
|
<button type="submit" class="search-button"><i class="fa fa-search"></i></button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{if="!isLoggedIn()"}
|
||||||
|
<form method="post" name="loginform">
|
||||||
|
<div class="subheader-form" id="header-login-form">
|
||||||
|
<input type="text" name="login" placeholder="{'Username'|t}" tabindex="3">
|
||||||
|
<input type="password" name="password" placeholder="{'Password'|t}" tabindex="5">
|
||||||
|
<div class="remember-me">
|
||||||
|
<input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="6" checked>
|
||||||
|
<label for="longlastingsession">{'Remember me'|t}</label>
|
||||||
|
</div>
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
<input type="hidden" name="returnurl">
|
||||||
|
<input type="submit" value="Login" tabindex="7">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
{/if}
|
||||||
|
{if="!empty($newVersion) || !empty($versionError)"}
|
||||||
|
<div class="pure-g new-version-message pure-alert pure-alert-warning pure-alert-closable">
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
{if="$newVersion"}
|
||||||
|
<div class="pure-u-20-24">
|
||||||
|
Shaarli {$newVersion}
|
||||||
|
<a href="https://github.com/shaarli/Shaarli/releases">{'is available'|t}</a>.
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
{if="$versionError"}
|
||||||
|
<div class="pure-u-20-24">
|
||||||
|
{'Error'|t}: {$versionError}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
<div class="pure-u-2-24">
|
||||||
|
<i id="new-version-dismiss" class="fa fa-times pure-alert-close"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{if="!empty($plugin_errors) && isLoggedIn()"}
|
||||||
|
<div class="pure-g new-version-message pure-alert pure-alert-error pure-alert-closable">
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
<div class="pure-u-20-24">
|
||||||
|
{loop="plugin_errors"}
|
||||||
|
<p>{$value}</p>
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-2-24">
|
||||||
|
<i class="fa fa-times pure-alert-close"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="clear"></div>
|
50
tpl/default/picwall.html
Normal file
50
tpl/default/picwall.html
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-6 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor">
|
||||||
|
{$countPics=count($linksToDisplay)}
|
||||||
|
<h2 class="window-title">{'Picture Wall'|t} - {$countPics} {'pics'|t}</h2>
|
||||||
|
|
||||||
|
<div id="plugin_zone_start_picwall" class="plugin_zone">
|
||||||
|
{loop="$plugin_start_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="picwall_container">
|
||||||
|
{loop="$linksToDisplay"}
|
||||||
|
<div class="picwall_pictureframe">
|
||||||
|
{$value.thumbnail}<a href="{$value.real_url}"><span class="info">{$value.title}</span></a>
|
||||||
|
{loop="$value.picwall_plugin"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
{/loop}
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="plugin_zone_end_picwall" class="plugin_zone">
|
||||||
|
{loop="$plugin_end_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
<script src="inc/blazy-1.3.1.min.js#"></script>
|
||||||
|
<script>
|
||||||
|
window.onload = function() {
|
||||||
|
var bLazy = new Blazy();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
182
tpl/default/pluginsadmin.html
Normal file
182
tpl/default/pluginsadmin.html
Normal file
|
@ -0,0 +1,182 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<noscript>
|
||||||
|
<div class="pure-g new-version-message pure-alert pure-alert-warning">
|
||||||
|
<div class="pure-u-2-24"></div>
|
||||||
|
<div class="pure-u-20-24">
|
||||||
|
{'You need to enable Javascript to change plugin loading order.'|t}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</noscript>
|
||||||
|
|
||||||
|
<form method="POST" action="?do=save_pluginadmin" name="pluginform" id="pluginform">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-8 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-3-4 pure-u-22-24 page-form page-form-complete">
|
||||||
|
<h2 class="window-title">{'Plugin administration'|t}</h2>
|
||||||
|
|
||||||
|
<section id="enabled_plugins">
|
||||||
|
<h3 class="window-subtitle">{'Enabled Plugins'|t}</h3>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{if="count($enabledPlugins)==0"}
|
||||||
|
<p>{'No plugin enabled.'|t}</p>
|
||||||
|
{else}
|
||||||
|
<table id="plugin_table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th class="center">{'Disable'|t}</th>
|
||||||
|
<th>{'Name'|t}</th>
|
||||||
|
<th><div class="pure-u-0 pure-u-lg-visible">{'Description'|t}</div></th>
|
||||||
|
<th class="center">{'Order'|t}</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{loop="$enabledPlugins"}
|
||||||
|
<tr data-line="{$key}" data-order="{$counter}" class="main-row">
|
||||||
|
<td class="center"><input type="checkbox" name="{$key}" id="{$key}" checked="checked"></td>
|
||||||
|
<td class="center">
|
||||||
|
<label for="{$key}"><strong>{function="str_replace('_', ' ', $key)"}</strong></label>
|
||||||
|
</td>
|
||||||
|
<td><div class="pure-u-0 pure-u-lg-visible"><label for="{$key}">{$value.description}</label></div></td>
|
||||||
|
<td class="center">
|
||||||
|
{if="count($enabledPlugins)>1"}
|
||||||
|
<a href="#" class="order"
|
||||||
|
onclick="return orderUp(this.parentNode.parentNode.getAttribute('data-order'));">
|
||||||
|
▲
|
||||||
|
</a>
|
||||||
|
<a href="#" class="order"
|
||||||
|
onclick="return orderDown(this.parentNode.parentNode.getAttribute('data-order'));">
|
||||||
|
▼
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
<input type="hidden" name="order_{$key}" value="{$counter}">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr data-line="{$key}" data-order="{$counter}" class="pure-u-lg-0 mobile-row">
|
||||||
|
<td colspan="4"><label for="{$key}">{$value.description}</label></td>
|
||||||
|
</tr>
|
||||||
|
{/loop}
|
||||||
|
</tbody>
|
||||||
|
<tfoot>
|
||||||
|
<tr>
|
||||||
|
<th class="center">{'Disable'|t}</th>
|
||||||
|
<th>{'Name'|t}</th>
|
||||||
|
<th><div class="pure-u-0 pure-u-lg-visible">{'Description'|t}</div></th>
|
||||||
|
<th class="center">{'Order'|t}</th>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
|
</table>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="disabled_plugins">
|
||||||
|
<h3 class="window-subtitle">{'Disabled Plugins'|t}</h3>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{if="count($disabledPlugins)==0"}
|
||||||
|
<p>{'No plugin disabled.'|t}</p>
|
||||||
|
{else}
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th class="center">{'Enable'|t}</th>
|
||||||
|
<th>{'Name'|t}</th>
|
||||||
|
<th><div class="pure-u-0 pure-u-lg-visible">{'Description'|t}</div></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{loop="$disabledPlugins"}
|
||||||
|
<tr class="main-row">
|
||||||
|
<td class="center"><input type="checkbox" name="{$key}" id="{$key}"></td>
|
||||||
|
<td class="center">
|
||||||
|
<label for="{$key}"><strong>{function="str_replace('_', ' ', $key)"}</strong></label>
|
||||||
|
</td>
|
||||||
|
<td><div class="pure-u-0 pure-u-lg-visible">
|
||||||
|
<label for="{$key}">{$value.description}</label>
|
||||||
|
</div></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="pure-u-lg-0 mobile-row">
|
||||||
|
<td colspan="3"><label for="{$key}">{$value.description}</label></td>
|
||||||
|
</tr>
|
||||||
|
{/loop}
|
||||||
|
</tbody>
|
||||||
|
<tfoot>
|
||||||
|
<tr>
|
||||||
|
<th class="center">{'Enable'|t}</th>
|
||||||
|
<th>{'Name'|t}</th>
|
||||||
|
<th><div class="pure-u-0 pure-u-lg-visible">{'Description'|t}</div></th>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
|
</table>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="center more">
|
||||||
|
More plugins available
|
||||||
|
<a href="doc/Community-&-Related-software.html#third-party-plugins">in the documentation</a>.
|
||||||
|
</div>
|
||||||
|
<div class="center">
|
||||||
|
<input type="submit" value="{'Save'|t}" name="save">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<input type="hidden" name="token" value="{$token}">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<form action="?do=save_pluginadmin" method="POST">
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-8 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-3-4 pure-u-22-24 page-form page-form-light">
|
||||||
|
<h2 class="window-title">{'Plugin configuration'|t}</h2>
|
||||||
|
<section id="plugin_parameters">
|
||||||
|
<div>
|
||||||
|
{if="count($enabledPlugins)==0"}
|
||||||
|
<p>{'No plugin enabled.'|t}</p>
|
||||||
|
{else}
|
||||||
|
{loop="$enabledPlugins"}
|
||||||
|
{if="count($value.parameters) > 0"}
|
||||||
|
<div class="plugin_parameters">
|
||||||
|
<h3 class="window-subtitle">{function="str_replace('_', ' ', $key)"}</h3>
|
||||||
|
{loop="$value.parameters"}
|
||||||
|
<div class="plugin_parameter">
|
||||||
|
<p class="float_label">
|
||||||
|
<label for="{$key}">
|
||||||
|
<code>{$key}</code>
|
||||||
|
{if="isset($value.desc)"}
|
||||||
|
· {$value.desc}
|
||||||
|
{/if}
|
||||||
|
</label>
|
||||||
|
</p>
|
||||||
|
<div class="float_input">
|
||||||
|
<input name="{$key}" value="{$value.value}" id="{$key}" type="text" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
{/loop}
|
||||||
|
{/if}
|
||||||
|
<div class="center">
|
||||||
|
<input type="submit" name="parameters_form" value="{'Save'|t}"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
<script src="inc/plugin_admin.js#"></script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
42
tpl/default/tagcloud.html
Normal file
42
tpl/default/tagcloud.html
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-6 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-2-3 pure-u-22-24 page-form page-visitor">
|
||||||
|
{$countTags=count($tags)}
|
||||||
|
<h2 class="window-title">{'Tag cloud'|t} - {$countTags} {'tags'|t}</h2>
|
||||||
|
|
||||||
|
<div id="plugin_zone_start_tagcloud" class="plugin_zone">
|
||||||
|
{loop="$plugin_start_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="cloudtag">
|
||||||
|
{loop="tags"}
|
||||||
|
<a href="?searchtags={$key|urlencode}" style="font-size:{$value.size}em;">{$key}</a
|
||||||
|
><span class="count">{$value.count}</span>
|
||||||
|
{loop="$value.tag_plugin"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="plugin_zone_end_tagcloud" class="plugin_zone">
|
||||||
|
{loop="$plugin_end_zone"}
|
||||||
|
{$value}
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
179
tpl/default/tools.html
Normal file
179
tpl/default/tools.html
Normal file
|
@ -0,0 +1,179 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
{include="includes"}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{include="page.header"}
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-22-24 page-form page-form-light">
|
||||||
|
<h2 class="window-title">{'Settings'|t}</h2>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="?do=configure" title="{'Change Shaarli settings: title, timezone, etc.'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">{'Configure your Shaarli'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="?do=pluginadmin" title="{'Enable, disable and configure plugins'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">{'Plugin administration'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{if="!$openshaarli"}
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="?do=changepasswd" title="{'Change your password'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">{'Change password'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="?do=changetag" title="{'Rename or delete a tag in all links'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">{'Manage tags'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="?do=import"
|
||||||
|
title="{'Import Netscape HTML bookmarks (as exported from Firefox, Chrome, Opera, delicious...)'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">{'Import links'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="?do=export"
|
||||||
|
title="{'Export Netscape HTML bookmarks (which can be imported in Firefox, Chrome, Opera, delicious...)'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">{'Export database'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{loop="$tools_plugin"}
|
||||||
|
<div class="tools-item">
|
||||||
|
{$value}
|
||||||
|
</div>
|
||||||
|
{/loop}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-22-24 page-form page-form-light">
|
||||||
|
<h2 class="window-title">Bookmarklets</h2>
|
||||||
|
<p>
|
||||||
|
{'Drag one of these button to your bookmarks toolbar or right-click it and "Bookmark This Link"'|t},
|
||||||
|
{'then click on the bookmarklet in any page you want to share.'|t}
|
||||||
|
</p>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a title="{'Drag this link to your bookmarks toolbar or right-click it and Bookmark This Link'|t},
|
||||||
|
{'then click ✚Shaare link button in any page you want to share'|t}"
|
||||||
|
onclick="return alertBookmarklet();"
|
||||||
|
href="javascript:(
|
||||||
|
function(){
|
||||||
|
var%20url%20=%20location.href;
|
||||||
|
var%20title%20=%20document.title%20||%20url;
|
||||||
|
window.open(
|
||||||
|
'{$pageabsaddr}?post='%20+%20encodeURIComponent(url)+
|
||||||
|
'&title='%20+%20encodeURIComponent(title)+
|
||||||
|
'&description='%20+%20encodeURIComponent(document.getSelection())+
|
||||||
|
'&source=bookmarklet','_blank','menubar=no,height=800,width=600,toolbar=no,scrollbars=yes,status=no,dialog=1'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
)();">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">✚ {'Shaare link'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a title="{'Drag this link to your bookmarks toolbar or right-click it and Bookmark This Link'|t},
|
||||||
|
{'Then click ✚Add Note button anytime to start composing a private Note (text post) to your Shaarli'|t}"
|
||||||
|
onclick="return alertBookmarklet();"
|
||||||
|
href="?private=1&post=">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">✚ {'Add Note'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{if="$sslenabled"}
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-22-24 page-form page-form-light">
|
||||||
|
<h2 class="window-title">Firefox Social API</h2>
|
||||||
|
<p>{'You need to browse your Shaarli over <strong>HTTPS</strong> to use this functionality.'|t}</p>
|
||||||
|
|
||||||
|
<div class="tools-item">
|
||||||
|
<a title="{'Click on this button to add Shaarli to the 'Share this page' button in Firefox"
|
||||||
|
onclick="activateFirefoxSocial(this)">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">✚ {'Add to'|t} Firefox Social</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
||||||
|
<div class="pure-u-lg-1-3 pure-u-22-24 page-form page-form-light">
|
||||||
|
<h2 class="window-title">{'3rd party'|t}</h2>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="https://addons.mozilla.org/fr/firefox/addon/shaarli/" title="Firefox {'Plugin'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">Firefox {'plugin'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="https://chrome.google.com/webstore/detail/shiny-shaarli/hajdfkmbdmadjmmpkkbbcnllepomekin"
|
||||||
|
title="Chrome {'Plugin'|t}">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">Chrome {'plugin'|t}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="https://play.google.com/store/apps/details?id=com.dimtion.shaarlier&hl=fr"
|
||||||
|
title="Android">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">Android</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tools-item">
|
||||||
|
<a href="https://itunes.apple.com/app/ShaarliOS/id1027441388?mt=8"
|
||||||
|
title="iOS">
|
||||||
|
<span class="pure-button pure-u-lg-2-3 pure-u-3-4">iOS</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{include="page.footer"}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
{if="$sslenabled"}
|
||||||
|
function activateFirefoxSocial(node) {
|
||||||
|
var loc = location.href;
|
||||||
|
var baseURL = loc.substring(0, loc.lastIndexOf("/"));
|
||||||
|
|
||||||
|
// Keeping the data separated (ie. not in the DOM) so that it's maintainable and diffable.
|
||||||
|
var data = {
|
||||||
|
name: "{$shaarlititle}",
|
||||||
|
description: "The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community.",
|
||||||
|
author: "Shaarli",
|
||||||
|
version: "1.0.0",
|
||||||
|
|
||||||
|
iconURL: baseURL + "/images/favicon.ico",
|
||||||
|
icon32URL: baseURL + "/images/favicon.ico",
|
||||||
|
icon64URL: baseURL + "/images/favicon.ico",
|
||||||
|
|
||||||
|
shareURL: baseURL + "{noparse}?post=%{url}&title=%{title}&description=%{text}&source=firefoxsocialapi{/noparse}",
|
||||||
|
homepageURL: baseURL
|
||||||
|
};
|
||||||
|
node.setAttribute("data-service", JSON.stringify(data));
|
||||||
|
|
||||||
|
var activate = new CustomEvent("ActivateSocialFeature");
|
||||||
|
node.dispatchEvent(activate);
|
||||||
|
}
|
||||||
|
{/if}
|
||||||
|
function alertBookmarklet() {
|
||||||
|
alert({"'Drag this link to your bookmarks toolbar, or right-click it and choose Bookmark This Link'"|t});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue