View file application/libraries/Scaffold/modules/Typography/Typography.php

File size: 369B
<?php

/**
 * Type_suite
 *
 * Outputs a HTML page of every type element using the parsed CSS
 */
class Typography
{
	public static function display()
	{
		if( Scaffold::option('typography') )
		{
			# Make sure we're sending HTML
			header('Content-Type: text/html');
			
			# Load the test suite markup
			Scaffold::view('scaffold_typography',true);
			exit;
		}
	}
}