Read the blog at http://fokkezb.nl/2013/09/20/url-schemes-for-ios-and-android-2/
This file contains hidden or 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
/* Simple pagination plugin | |
* How to use: | |
* | |
* CSS: | |
* .list-item.hide { | |
* height: 0; | |
* min-height: 0; | |
* opacity: 0; | |
* border: none; | |
* } |
This file contains hidden or 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
<?php | |
/* | |
Original by Rasmus Larsson | |
http://www.rasmuslarsson.se/2013/05/a-template-engine-in-php/ | |
*/ | |
class Template | |
{ | |
protected $template; |