Skip to content

A Catalyst web framework helper to init a HTML5 view using SemanticUI

License

Notifications You must be signed in to change notification settings

ferz/Catalyst--Helper--View--SemanticUI

Repository files navigation

Catalyst--Helper--View--SemanticUI

A Catalyst web framework helper to init a HTML5 view using Semantic UI

https://semantic-ui.com/

So your starting page will be as

Shapshot

How to

use the helper to create the view module and templates

$ script/myapp_create.pl view HTML5 SemanticUI

add something like the following to your main application module

sub index : Path : Args(0) {
    my ( $self, $c ) = @_;
    $c->stash->{template} = 'welcome.tt2';
}

sub end : Private { # Or use Catalyst::Action::RenderView
    my ( $self, $c ) = @_;
    $c->forward( $c->view('HTML5') );
}

About

A Catalyst web framework helper to init a HTML5 view using SemanticUI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published