forked from projects/fipamo
hot fix for adding images two recent and featured links
This commit is contained in:
parent
7e38b4edb8
commit
39775e624d
2 changed files with 21 additions and 19 deletions
|
@ -24,24 +24,24 @@ include "../brain/utility/HandleCors.inc.php";
|
||||||
|
|
||||||
class App
|
class App
|
||||||
{
|
{
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
// set up cors
|
// set up cors
|
||||||
new HandleCors();
|
new HandleCors();
|
||||||
$app = AppFactory::create();
|
$app = AppFactory::create();
|
||||||
$twig = Twig::create("../brain/views/");
|
$twig = Twig::create("../brain/views/");
|
||||||
$app->add(TwigMiddleware::create($app, $twig));
|
$app->add(TwigMiddleware::create($app, $twig));
|
||||||
//set up routing
|
//set up routing
|
||||||
$app->get(
|
$app->get(
|
||||||
"/[{first}[/{second}[/{third}[/{fourth}[/{fifth}]]]]]",
|
"/[{first}[/{second}[/{third}[/{fourth}[/{fifth}]]]]]",
|
||||||
"\RouteControl:get"
|
"\RouteControl:get"
|
||||||
);
|
);
|
||||||
$app->post(
|
$app->post(
|
||||||
"/[{first}[/{second}[/{third}[/{fourth}]]]]",
|
"/[{first}[/{second}[/{third}[/{fourth}]]]]",
|
||||||
"\RouteControl:post"
|
"\RouteControl:post"
|
||||||
);
|
);
|
||||||
//start the app
|
//start the app
|
||||||
|
|
||||||
$app->run();
|
$app->run();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,6 +81,7 @@ class Render
|
||||||
"path" => $page["path"],
|
"path" => $page["path"],
|
||||||
"slug" => $page["slug"],
|
"slug" => $page["slug"],
|
||||||
"title" => $page["title"],
|
"title" => $page["title"],
|
||||||
|
"feature" => $page["feature"],
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,6 +91,7 @@ class Render
|
||||||
"path" => $page["path"],
|
"path" => $page["path"],
|
||||||
"slug" => $page["slug"],
|
"slug" => $page["slug"],
|
||||||
"title" => $page["title"],
|
"title" => $page["title"],
|
||||||
|
"feature" => $page["feature"],
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue