aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard
AgeCommit message (Collapse)AuthorFilesLines
2019-04-26Rename "standard" template to "default"Thomas Lange28-1310/+0
2019-04-26Remove template names from header comment blocksThomas Lange19-19/+19
2019-01-25Reformat the entire CSS codeThomas Lange1-101/+483
2019-01-21Close CSS comment blocks correctlyThomas Lange1-63/+63
2018-05-15Fix javascript problem that causes unintended behaviorThomas Lange1-1/+1
If you browse in a browser tab through some websites and want to go back to the previous page, post or user, you can either click the history back button, press the corresponding key on your mouse or even press <alt>+<arrow-left> on your keyboard. But if you only press <arrow-left> on a page, post or user, the callback function of the "keyup" event will change the location in the desired direction on the blog if there is a previous page, post or user, and if neither <ctrl> nor <shift> is pressed. This is a functionality of the javascript from the template and not a functionality of your browser. Pressing <alt>+<arrow-left> IS a functionality of the browser and should not conflict with the behavior when <arrow-left> is pressed alone. This commit fixes this problem by adding the condition that <alt> should not be pressed either.
2018-05-15Rename function parameter "event" to "e"Thomas Lange1-4/+4
2017-11-24Fixed a spelling mistake in several comments:Thomas Lange2-2/+2
It's called "override" instead of "overwrite" in those contexts.
2017-11-20The rem units in media queries have been replaced by simple em units.Thomas Lange1-2/+2
2017-10-24Some comments have been updated, unnecessary whitespace at the end of some ↵Thomas Lange1-1/+1
files was removed and some missing PHP closing tags were added.
2017-09-15All occurrences of "var" have been replaced by the new introduced keywords ↵Thomas Lange1-2/+2
"const" and "let" from ECMAScript 6 (2015), which scopes the variables to the nearest enclosing block instead of the nearest function block.
2017-09-14Some markup optimizations has been made to both templates (the HTML5 ↵Thomas Lange9-41/+30
<article> element is more correct for the purpose of an item list, because real lists should only be used if the order of the items would change the meaning. This is not the case, because each item is a self-contained area which has nothing to do with the other items).
2017-09-02Some HTML and CSS optimizations has been made to the standard template and ↵Thomas Lange4-12/+12
the "title" attribute was added to every heading link in the item list.
2017-09-02Bugfix: An undefined array index "NAME" was used in the user navigation ↵v2.3.1Thomas Lange1-2/+2
instead of the existing index "FULLNAME". This problem has existed since the first initial commit and was only present when more than one user had existed (it did not have affected the functionality of the navigation itself).
2017-09-02Multiple <section> elements were replaced by simple <div> elements. If a ↵Thomas Lange5-13/+13
container element is only used for the CSS and has no semantic meaning, then a <section> element is definitely wrong for this purpose.
2017-08-11Several changes have been made in this commit, which together with the ↵v2.3Thomas Lange16-28/+28
previous commits result in version 2.3: + Optimization: Originally, the core and template languages were completely separated in the logic of the Language class and you had to use "$Language->text()" to get a core language string and "$Language->template()" to get a template language string. Since this commit, the core and template language strings are still located in different files, but you now have to use "$Language->text()" for core and template language strings both. Thus, you can now even overwrite a core language string from the language file of a template if the core language string does not satisfy you. + Deprecated: The method "$Language->template()" was marked as deprecated and will be removed in further versions (currently, it's just an alias for "$Language->text()"). Template upgrade to version 2.3 (only for customized templates): SEARCH: $Language->template REPLACE: $Language->text
2017-08-02The <title> and <link> elements within <image> should have the same value as ↵Thomas Lange1-1/+1
the <title> and <link> elements within <channel>. This is described in the RSS 2.0 specification.
2017-08-02The <link> elements within <channel> and <image> should not contain the URL ↵Thomas Lange1-2/+2
to the RSS feed itself, but rather to the corresponding HTML website. This is described in the RSS 2.0 specification.
2017-08-02Hardcoded number from the en language file of the standard template removed.Thomas Lange1-1/+1
2017-07-26The "title" attribute has been added to the link tag of the stylesheet so ↵Thomas Lange1-1/+1
that browsers like Firefox can display the name of the stylesheet under "View -> Page Style".
2017-05-05Prevent "$ITEM['BODY']['HTML']()" which is a closure since version 2.1 from ↵Thomas Lange2-4/+8
calling twice.
2017-05-05A significant increase in the response time has been achieved, since the ↵v2.1Thomas Lange9-11/+11
template parameters "$ITEM['BODY']['TEXT']" and "$ITEM['BODY']['HTML']" are now no longer strings but closures (anonymous functions). This means that the underlying logic, which parses the content or converts it into Markdown, is not executed until one of these parameters is really needed and called in the template (which maybe significantly increases the response time on a long list of items which not use one of those two parameters). This means that within templates you now have to call these parameters in the following way (note the brackets at the end, which represent a function call): <?=$ITEM['BODY']['TEXT']()?> <?=$ITEM['BODY']['HTML']()?> In the background, the anonymous functions are called and executes $Item->getBody() and $Item->getHTML() only when needed. Previously, $Item->getBody() and $Item->getHTML() were basically executed and the parsed content was passed to the template, regardless of whether these parameters are required in the template or not!
2017-04-30Missing internationalization for feed link titles added.Thomas Lange3-3/+3
2017-04-27Several changes have been made in this commit, which together with the ↵v2.0Thomas Lange3-22/+19
previous commits result in version 2.0 (database update required): + Implemented [core]: A new database field has been added to all tables to define optional "arguments" for a page, post or user through the content editor. These arguments will be parsed into key->value pairs and can be used within templates to do something special. Please read the wiki of this repository for further information about this new feature. + Bugfix [core]: The function "makeSlugURL" had not convert uppercase umlauts to lowercase because "strtolower" was used instead of the multibyte equivalent "mb_strtolower". + Optimization [core]: The first regular expression within the function "makeSlugURL" has been optimized (checking for uppercase characters at this point is unnecessary because $string is only lowercase). + Optimization [all templates]: Markup for the pagination.php has been simplified (a little bit). + Optimization [admin template]: The javascript for the arrow key navigation has been outsourced to the main.js file. + Optimization [admin template]: The javascript file will now be included with the "defer" attribute. + Optimization [standard template]: Some language variables have been changed. Database update to version 2.0 (no existing data will be lost or changed): ALTER TABLE `page` ADD `argv` VARCHAR(100) NULL DEFAULT NULL AFTER `body`; ALTER TABLE `post` ADD `argv` VARCHAR(100) NULL DEFAULT NULL AFTER `body`; ALTER TABLE `user` ADD `argv` VARCHAR(100) NULL DEFAULT NULL AFTER `body`;
2017-04-24HTML escaping is required to prevent XML validation errors for some ↵Thomas Lange2-3/+2
characters like "&".
2017-04-24Nested function calls for generating the meta description are removed and a ↵Thomas Lange2-2/+2
function was added to perform this task.
2017-04-11All requests to "favicon.ico" will now be redirected to the current template ↵Thomas Lange1-1/+1
directory "rsrc/favicon.ico" (if the "favicon.ico" inside the root directory does not exist).
2017-04-11HTML5 <article> tags has been replaced by the more semantic correct ↵Thomas Lange4-8/+8
<blockquote> tags with "cite" attribute.
2017-03-20The "autofocus" attribute was added to the search input field.Thomas Lange3-3/+2
2017-03-20The javascript part was outsourced to a new file to reduce duplicate code.Thomas Lange6-60/+30
2017-03-10Several changes have been made in this commit, which together with the ↵v1.1Thomas Lange4-28/+26
previous commits result in version 1.1: + The rules for the Apache and nginx configuration have been changed and redirects now all requests to the index.php. + A router class has been added which now handles all requests that arrives at the application on the index.php. + Short-hand functions "PAGE", "POST" and "USER" for use in templates added to get specific item data by ID. + More language variables have been added to the core language.
2017-03-02Unnecessary line breaks removed.Thomas Lange2-2/+2
2017-03-02Permalink for user moved to the same position as the links for page and post ↵Thomas Lange1-2/+2
items.
2017-02-26Spelling mistakes corrected, comments added and unnecessary language ↵Thomas Lange8-43/+97
variables removed.
2017-02-24Initial commit.v1.0Thomas Lange27-0/+918