initial commit
This commit is contained in:
commit
1cc4bf3572
254 changed files with 63622 additions and 0 deletions
htdocs/includes
24
htdocs/includes/init.web.inc.php
Normal file
24
htdocs/includes/init.web.inc.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
// Initialize templating engine
|
||||
require('smarty3/Smarty.class.php');
|
||||
$tpl = new Smarty;
|
||||
|
||||
$tpl->setCacheDir(BASE_PATH . 'cache');
|
||||
$tpl->setCompileDir(BASE_PATH . 'cache');
|
||||
$tpl->setTemplateDir(BASE_PATH . 'templates');
|
||||
$tpl->left_delimiter = '{{';
|
||||
$tpl->right_delimiter = '}}';
|
||||
|
||||
require('routes.inc.php');
|
||||
|
||||
/*
|
||||
// Markdown
|
||||
require('Michelf/Markdown.inc.php');
|
||||
#require('Michelf/MarkdownInterface.php');
|
||||
#require('Michelf/Markdown.php');
|
||||
|
||||
$md = new \Michelf\Markdown;
|
||||
|
||||
$md->empty_element_suffix = '>';
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue