aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/includes.html
diff options
context:
space:
mode:
authorSeb Sauvage <sebsauvage@sebsauvage.net>2011-12-16 21:27:16 +0100
committerEmilien Klein <emilien@klein.st>2011-12-16 21:27:16 +0100
commit3433e5e8a84e3952502b79296f945e6dde2a7d75 (patch)
tree98fc646456708df7d3b133ed7f33835c1f1b059f /tpl/includes.html
parent5112a433897d4d6507982b64bb07333b774ddb3a (diff)
downloadShaarli-3433e5e8a84e3952502b79296f945e6dde2a7d75.tar.gz
Shaarli-3433e5e8a84e3952502b79296f945e6dde2a7d75.tar.zst
Shaarli-3433e5e8a84e3952502b79296f945e6dde2a7d75.zip
Version 0.0.32 beta:
- Changed: HTML generation moved to RainTPL templates (in the tpl/ directory). - Added: Better check on URL parameters (patch by gege2061). - Changed: Better detection of HTTPS (patch by gege2061). - Changed: In RSS/ATOM feeds, the GUID is now the permalink instead of the final URL (patch by gege2061). - Changed: Jerrywham CSS patch included. - Changed: Multiple spaces are now respected in description. Thus you can use Shaarli as a personal pastebin (for posting source code, for example). I also added a max-height and overflow:auto so that content can be scrolled if too large. - Corrected: Tab order changed in login screen. - Corrected: Permalinks now work even if additional parameters have been added (eg. /?E8Yj2Q&utm_source=blablabla…) - Corrected: user.css is included only if the file is present (This prevent a useless CSS include which makes a harmless but useless 404 error.). - Removed: Page time generation was removed.
Diffstat (limited to 'tpl/includes.html')
-rw-r--r--tpl/includes.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/tpl/includes.html b/tpl/includes.html
new file mode 100644
index 00000000..c70b44e3
--- /dev/null
+++ b/tpl/includes.html
@@ -0,0 +1,7 @@
1<title>{$pagetitle}</title>
2<link rel="alternate" type="application/rss+xml" href="{$feedurl}?do=rss{$searchcrits}#" title="RSS Feed" />
3<link rel="alternate" type="application/atom+xml" href="{$feedurl}?do=atom{$searchcrits}#" title="ATOM Feed" />
4<link href="images/favicon.ico#" rel="shortcut icon" type="image/x-icon" />
5<link type="text/css" rel="stylesheet" href="inc/shaarli.css?version={$version}#" />
6{if condition="is_file('inc/user.css')"}<link type="text/css" rel="stylesheet" href="inc/user.css?version={$version}#" />{/if}
7<script language="JavaScript" src="inc/jquery.min.js#"></script><script language="JavaScript" src="inc/jquery-ui.custom.min.js#"></script>