forkattu lähteestä Public/pics
		
	This is to be the new HashRU website based on the Aaronweb.net/Kabuki CMS.
		
			
				
	
	
		
			18 rivejä
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 rivejä
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*****************************************************************************
 | 
						|
 * SubTemplate.php
 | 
						|
 * Defines the key template SubTemplate.
 | 
						|
 *
 | 
						|
 * Kabuki CMS (C) 2013-2015, Aaron van Geffen
 | 
						|
 *****************************************************************************/
 | 
						|
 | 
						|
abstract class SubTemplate extends Template
 | 
						|
{
 | 
						|
	public function html_main()
 | 
						|
	{
 | 
						|
		echo $this->html_content();
 | 
						|
	}
 | 
						|
 | 
						|
	abstract protected function html_content();
 | 
						|
}
 |