aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard/rsrc
AgeCommit message (Collapse)AuthorFilesLines
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-20The rem units in media queries have been replaced by simple em units.Thomas Lange1-2/+2
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 Lange1-22/+11
<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 Lange1-6/+6
the "title" attribute was added to every heading link in the item list.
2017-09-02Multiple <section> elements were replaced by simple <div> elements. If a ↵Thomas Lange1-3/+3
container element is only used for the CSS and has no semantic meaning, then a <section> element is definitely wrong for this purpose.
2017-04-11HTML5 <article> tags has been replaced by the more semantic correct ↵Thomas Lange1-2/+2
<blockquote> tags with "cite" attribute.
2017-03-20The "autofocus" attribute was added to the search input field.Thomas Lange1-1/+0
2017-03-20The javascript part was outsourced to a new file to reduce duplicate code.Thomas Lange1-0/+16
2017-02-24Initial commit.v1.0Thomas Lange6-0/+206