Skip to content

Instantly share code, notes, and snippets.

View mrkodssldrf's full-sized avatar

Mirko Düßeldorf mrkodssldrf

  • mrkodssldrf
  • Cologne, Germany
View GitHub Profile
@mrkodssldrf
mrkodssldrf / video.php
Created September 23, 2012 11:16
PyroCMS Video Plugin
<?php
/**
* Video Plugin
*
* Plugin to fetch Videos from various Sites
*
* youtube: {{video:youtube id="youtubeid"}}
* vimeo: {{video:vimeo id="vimeoid"}}
*
@mrkodssldrf
mrkodssldrf / gist.php
Created September 23, 2012 09:07
Simple Gist Plugin for PyroCMS
<?php
/**
* Gist Plugin
*
* Simple Plugin to fetch a gist from github
*
* usage: {{gist:get id="gistid"}}
*
* @author Mirko Düßeldorf
@mrkodssldrf
mrkodssldrf / default.html
Created September 23, 2012 08:44
PyroCMS Html Default Template
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{settings:site_name}} &raquo; {{template:title}}</title>
{{template:metadata}}
{{theme:css file="styles.css"}}
</head>
@mrkodssldrf
mrkodssldrf / theme.php
Created September 23, 2012 08:31
PyroCMS Mytemplate theme.php
<?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';