8000 GitHub - Machy8/Macdom at v1.1
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Machy8/Macdom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Macdom for Nette HTML Abstraction markup language.

For more information see WIKI

##Requirements Nette version 2.3 or newer. ##Note to develop version May contain errors and bugs. Use Macdom from the Master branch for your projects. ##Installation 1 - Download the Macdom using composer:

 composer require machy8/macdom:dev-develop

2 - Place the code bellow into your base presenter:

protected function createTemplate()
    {
        $template = parent::createTemplate();
        $template->getLatte()->setLoader(new \Machy8\Macdom\Loader($this));
        return $template;
    }

##Examples See tests in the tests folder. Tests are also examples of how it all works. For more information see WIKI.

0