##Pagelets
Dropplets Plugin that enables custom pages.
###What it does
Want to setup a custom page like dropplets-blog.com/about. This plugin is just what your looking for. Pagelets lets your drop html or md files into a folder an the plugin does the rest.
###Setup
- Copy
Pagelets.phpinto /dropplets/plugins/ - Copy
template/Page.phpinto your current dropplets template directory. - Create a directory named
pagesat the root level of your dropplets install.
- Copy either a
htmlormdfile into thepagesdirectory you created. - In your browser navigate to
yoursite.com/that-file-name - BAM!
Create a page.php file in your template directory. $contents variable will contain the page contents.
<?php include_once 'header.php'; ?>
<?php echo $content ?>
<?php include_once 'footer.php'; ?>