-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial version based on default shaarli theme
- Loading branch information
0 parents
commit d09161a
Showing
51 changed files
with
9,564 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html{if="$language !== 'auto'"} lang="{$language}"{/if}> | ||
<head> | ||
{include="includes"} | ||
</head> | ||
<body> | ||
<div id="pageheader"> | ||
{include="page.header"} | ||
<div class="center" id="page404" class="page404-container"> | ||
<h2>{'Sorry, nothing to see here.'|t}</h2> | ||
<img src="img/sad_star.png" alt=""> | ||
<p>{$error_message}</p> | ||
</div> | ||
{include="page.footer"} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html{if="$language !== 'auto'"} lang="{$language}"{/if}> | ||
<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> | ||
<label for="shaare">{'URL or leave empty to post a note'|t}</label> | ||
<input type="text" name="post" id="shaare" class="autofocus"> | ||
</div> | ||
<div> | ||
<input type="submit" value="{'Add link'|t}"> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
{include="page.footer"} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html{if="$language !== 'auto'"} lang="{$language}"{/if}> | ||
<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" aria-label="{'Current password'|t}" placeholder="{'Current password'|t}" class="autofocus"> | ||
</div> | ||
<div> | ||
<input type="password" name="setpassword" aria-label="{'New password'|t}" 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE html> | ||
<html{if="$language !== 'auto'"} lang="{$language}"{/if}> | ||
<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" aria-label="{'Tag'|t}" placeholder="{'Tag'|t}" value="{$fromtag}" | ||
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" aria-label="{'New name'|t}" 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" aria-hidden="true"></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> | ||
|
||
<p>{'You can also edit tags in the'|t} <a href="?do=taglist&sort=usage">{'tag list'|t}</a>.</p> | ||
</div> | ||
</div> | ||
{include="page.footer"} | ||
</body> | ||
</html> |
Oops, something went wrong.