You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
431 B
16 lines
431 B
<?php
|
|
|
|
define('ROOT_DIR', realpath(dirname(__FILE__)) .'/');
|
|
define('CONTENT_DIR', ROOT_DIR .'content/');
|
|
define('CONTENT_EXT', '.md');
|
|
define('LIB_DIR', ROOT_DIR .'lib/');
|
|
define('PLUGINS_DIR', ROOT_DIR .'plugins/');
|
|
define('THEMES_DIR', ROOT_DIR .'themes/');
|
|
define('CACHE_DIR', LIB_DIR .'cache/');
|
|
|
|
require(ROOT_DIR .'vendor/autoload.php');
|
|
require(LIB_DIR .'markdown.php');
|
|
require(LIB_DIR .'pico.php');
|
|
$pico = new Pico();
|
|
|
|
?>
|