added a few articles, added media

This commit is contained in:
Timm Szigat
2014-10-26 19:35:05 +01:00
parent 6498447b0d
commit bf6537ef5d
653 changed files with 28682 additions and 66 deletions

View File

@ -0,0 +1,26 @@
<?php
class Template
{
public static $template_dir = '.';
public $content = array();
private $template_filename = false;
private $dom;
public function __construct($template_name)
{
$this->template_filename = self::$template_dir . '/' . $template_name;
}
public function outputHTML()
{
ob_start();
$content = $this->content;
include($this->template_filename);
$contents = ob_get_contents();
ob_end_clean();
return $contents;
}
}