Todaymade\Daux\Server\Server::serveTheme PHP Method

serveTheme() public method

Handle a request on custom themes
public serveTheme ( $request ) : Todaymade\Daux\Format\Base\Page
return Todaymade\Daux\Format\Base\Page
    public function serveTheme($request)
    {
        $file = $this->getParams()->getThemesPath() . $request;
        if (file_exists($file)) {
            return new RawPage($file);
        }
        throw new NotFoundException();
    }