mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
80 lines
1.8 KiB
PHP
80 lines
1.8 KiB
PHP
|
<?php
|
||
|
|
||
|
define('APPLICATION_BASE_PATH', realpath(__DIR__ . '/..'));
|
||
|
|
||
|
spl_autoload_register(function ($className) {
|
||
|
$namespaces = explode('\\', $className);
|
||
|
if (count($namespaces) > 1) {
|
||
|
$classPath
|
||
|
= APPLICATION_BASE_PATH
|
||
|
. '/vendor/'
|
||
|
. implode('/', $namespaces)
|
||
|
. '.php';
|
||
|
if (file_exists($classPath)) {
|
||
|
require_once($classPath);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
include_once APPLICATION_BASE_PATH . '/vendor/Mustache/Mustache.php';
|
||
|
include_once APPLICATION_BASE_PATH . '/vendor/smartypants/smartypants.php';
|
||
|
include_once APPLICATION_BASE_PATH . '/vendor/markdown-extra/markdown.php';
|
||
|
include_once APPLICATION_BASE_PATH . '/vendor/lessphp/lessc.inc.php';
|
||
|
|
||
|
use Assetic\Asset\AssetCollection;
|
||
|
use Assetic\Asset\FileAsset;
|
||
|
use Assetic\Asset\GlobAsset;
|
||
|
use Assetic\Filter;
|
||
|
|
||
|
$shortopts = "";
|
||
|
$shortopts .= "r";
|
||
|
|
||
|
$longopts = array(
|
||
|
"refresh"
|
||
|
);
|
||
|
$options = getopt($shortopts, $longopts);
|
||
|
|
||
|
$refresh_dev = isset($options['r']) || isset($options['refresh']);
|
||
|
|
||
|
|
||
|
$css = new AssetCollection(
|
||
|
array(
|
||
|
//new FileAsset('/path/to/src/styles.less', array(new LessFilter())),
|
||
|
new GlobAsset(APPLICATION_BASE_PATH . '/assets/css/*.css')
|
||
|
),
|
||
|
array(
|
||
|
new Filter\LessphpFilter(),
|
||
|
)
|
||
|
);
|
||
|
|
||
|
|
||
|
|
||
|
// the code is merged when the asset is dumped
|
||
|
$style = $css->dump();
|
||
|
|
||
|
|
||
|
$template = file_get_contents(APPLICATION_BASE_PATH . '/assets/templates/default.html');
|
||
|
$resume = file_get_contents(APPLICATION_BASE_PATH . '/resume/resume.md');
|
||
|
|
||
|
|
||
|
$resume = Markdown($resume);
|
||
|
$resume = SmartyPants($resume);
|
||
|
|
||
|
$m = new Mustache;
|
||
|
$rendered = $m->render(
|
||
|
$template,
|
||
|
array(
|
||
|
'title' => 'TITLE',
|
||
|
'style' => $style,
|
||
|
'resume' => $resume,
|
||
|
'reload' => $refresh_dev
|
||
|
)
|
||
|
);
|
||
|
|
||
|
file_put_contents(
|
||
|
APPLICATION_BASE_PATH . '/resume/resume.html',
|
||
|
$rendered
|
||
|
);
|
||
|
|
||
|
|
||
|
/* End of file build.php */
|