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
<?php | |
/** | |
* Video Plugin | |
* | |
* Plugin to fetch Videos from various Sites | |
* | |
* youtube: {{video:youtube id="youtubeid"}} | |
* vimeo: {{video:vimeo id="vimeoid"}} | |
* |
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
<?php | |
/** | |
* Gist Plugin | |
* | |
* Simple Plugin to fetch a gist from github | |
* | |
* usage: {{gist:get id="gistid"}} | |
* | |
* @author Mirko Düßeldorf |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>{{settings:site_name}} » {{template:title}}</title> | |
{{template:metadata}} | |
{{theme:css file="styles.css"}} | |
</head> | |
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
<?php | |
class Theme_Mytemplate extends Theme { | |
public $name = 'Mein Template'; | |
public $author = 'Mirko Düßeldorf'; | |
public $author_website = 'http://www.derduesseldorf.de'; | |
public $website = 'http://www.derduesseldorf.de'; | |
public $description = 'Mein erstes Template für PyroCMS'; | |
public $version = '1.0'; | |
NewerOlder