A1z-HTML5-Template
    
    
  
  
  
view release on metacpan or search on metacpan
lib/A1z/HTML5/Template.pm view on Meta::CPAN
	if (@_) { @keys = @_; } 
	
	my $args = scalar(@keys); 
	
	my ($key, $key1) = @_;
	
	my %out;
	
	if ($ARGV and $ARGV > 0 and scalar(@keys) > 0) 
	{
		if ($key eq 'utf8')
		{
			$out{"$key"} = qq{Content-Type: text/html;charset=utf-8\n\n}; 
			
		} 
		elsif (!defined $key or $key eq '') 
		{
			$out{"$key"} = qq{Content-Type: text/html;charset=utf-8\n\n};
		}
		else 
		{
lib/A1z/HTML5/Template.pm view on Meta::CPAN
	my $h = A1z::HTML5::Template->new(); 
	Fast, Easy, and Simple: Just Two Lines!
	
		say $h->head( -title => "My Brand Name" );
		say $h->body( -content => qq{ Coming Soon });
	For More Control/Customization: Not for the lazy!
	
	say $h->header('utf8');  
	say $h->start_html(); 
	say $h->head_title("My New App"); 
	say $h->head_meta(); 
	Load basic/required JavaScript/CSS libraries
	say $h->head_js_css(); 
	Add your own custom JavaScript/CSS files
	say $h->head_js_css('/url/to/app/Template.css'); 
lib/A1z/HTML5/Template.pm view on Meta::CPAN
	Data is stored in simple text files in the app's home dir.  
	We recommend creating a separate file for editing/writing purposes, e.g., "TemplateAdmin.cgi"
	use lib '/path/to/app';
	use A1z::HTML5::Template;
	my $h = A1z::HTML5::Template->new();
	say $h->header('utf8');
	say $h->start_html(); 
	say $h->head_title("Edit App"); 
	say $h->head_meta();
	say $h->head_js_css();  
	say $h->end_head(); 
	say $h->begin_body();
	# Show edit form
 	say $h->body_article( 
( run in 0.249 second using v1.01-cache-2.11-cpan-c333fce770f )