<h3>{{ entry.newsIntro }}</h3>
<div class="theContent_Article">
{{ entry.newsArticle }}
</div>
{% if entry.articleVideoEmbedInformation %}
{% for videoFile in entry.articleVideoEmbedInformation.all() %}
<div class="embedVideo_Box">
{{ videoFile }}
</div>
{% endfor %}
{% endif %}
{% if entry.pdfDownload %}
{% for pdfFile in entry.pdfDownload.kind('pdf').all() %}
<div class="downloadPDF_Box">
// Add deprecated support for the old DateTime methods
if ($object instanceof \DateTime && ($value = self::_dateTimeAttribute($object, $item, $type)) !== false) {
return $value;
}
try {
return \twig_get_attribute($env, $source, $object, $item, $arguments, $type, $isDefinedTest, $ignoreStrictCheck);
} catch (UnknownMethodException $e) {
// Copy twig_get_attribute()'s BadMethodCallException handling
if ($ignoreStrictCheck || !$env->isStrictVariables()) {
return null;
}
throw new \Twig_Error_Runtime($e->getMessage(), -1, $source);
";
// line 25
if (craft\helpers\Template::attribute($this->env, $this->getSourceContext(), (isset($context["entry"]) || array_key_exists("entry", $context) ? $context["entry"] : (function () { throw new Twig_Error_Runtime('Variable "entry" does not exist.', 25, $this->source); })()), "articleVideoEmbedInformation", array())) {
// line 26
echo " ";
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(craft\helpers\Template::attribute($this->env, $this->getSourceContext(), craft\helpers\Template::attribute($this->env, $this->getSourceContext(), (isset($context["entry"]) || array_key_exists("entry", $context) ? $context["entry"] : (function () { throw new Twig_Error_Runtime('Variable "entry" does not exist.', 26, $this->source); })()), "articleVideoEmbedInformation", array()), "all", array(), "method"));
foreach ($context['_seq'] as $context["_key"] => $context["videoFile"]) {
// line 27
echo "\t\t<div class=\"embedVideo_Box\">
\t\t ";
// line 28
echo twig_escape_filter($this->env, $context["videoFile"], "html", null, true);
if (null !== $template && !$template instanceof self) {
throw new LogicException('A block must be a method on a Twig_Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Twig_Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
// this is mostly useful for Twig_Error_Loader exceptions
\t\t<section class=\"main ";
// line 83
$this->displayBlock('contentclass', $context, $blocks);
echo "\">
\t\t\t";
// line 84
$this->displayBlock('content', $context, $blocks);
// line 87
echo "\t\t</section>
\t\t";
// line 90
echo " <div class=\"clearBox\"> </div>
return ob_get_clean();
}
protected function displayWithErrorHandling(array $context, array $blocks = array())
{
try {
$this->doDisplay($context, $blocks);
} catch (Twig_Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for Twig_Error_Loader exceptions
* @throws \Twig_Error
* @throws \Twig_Error_Runtime
*/
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
parent::displayWithErrorHandling($context, $blocks);
} catch (\Twig_Error_Runtime $e) {
if (Craft::$app->getConfig()->getGeneral()->suppressTemplateErrors) {
// Just log it and move on
Craft::$app->getErrorHandler()->logException($e);
} else {
throw $e;
{
return $this->blocks;
}
public function display(array $context, array $blocks = array())
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
ob_start();
* @inheritdoc
*/
public function display(array $context, array $blocks = [])
{
$name = $this->getTemplateName();
Craft::beginProfile($name, __METHOD__);
parent::display($context, $blocks);
Craft::endProfile($name, __METHOD__);
}
// Protected Methods
// =========================================================================
{
return "_layout";
}
protected function doDisplay(array $context, array $blocks = array())
{
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 5
public function block_pageID($context, array $blocks = array())
{
echo "SingleNews";
return ob_get_clean();
}
protected function displayWithErrorHandling(array $context, array $blocks = array())
{
try {
$this->doDisplay($context, $blocks);
} catch (Twig_Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for Twig_Error_Loader exceptions
* @throws \Twig_Error
* @throws \Twig_Error_Runtime
*/
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
parent::displayWithErrorHandling($context, $blocks);
} catch (\Twig_Error_Runtime $e) {
if (Craft::$app->getConfig()->getGeneral()->suppressTemplateErrors) {
// Just log it and move on
Craft::$app->getErrorHandler()->logException($e);
} else {
throw $e;
{
return $this->blocks;
}
public function display(array $context, array $blocks = array())
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
ob_start();
* @inheritdoc
*/
public function display(array $context, array $blocks = [])
{
$name = $this->getTemplateName();
Craft::beginProfile($name, __METHOD__);
parent::display($context, $blocks);
Craft::endProfile($name, __METHOD__);
}
// Protected Methods
// =========================================================================
public function render(array $context)
{
$level = ob_get_level();
ob_start();
try {
$this->display($context);
} catch (Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
* @throws Twig_Error_Loader When the template cannot be found
* @throws Twig_Error_Syntax When an error occurred during compilation
* @throws Twig_Error_Runtime When an error occurred during rendering
*/
public function render($name, array $context = array())
{
return $this->loadTemplate($name)->render($context);
}
/**
* Displays a template.
*
* @param string $name The template name
// Render and return
$renderingTemplate = $this->_renderingTemplate;
$this->_renderingTemplate = $template;
Craft::beginProfile($template, __METHOD__);
try {
$output = $this->getTwig()->render($template, $variables);
} catch (\RuntimeException $e) {
if (!YII_DEBUG) {
// Throw a generic exception instead
throw new Exception('An error occurred when rendering a template.', 0, $e);
}
throw $e;
ob_implicit_flush(false);
$isRenderingPageTemplate = $this->_isRenderingPageTemplate;
$this->_isRenderingPageTemplate = true;
$this->beginPage();
echo $this->renderTemplate($template, $variables);
$this->endPage();
$this->_isRenderingPageTemplate = $isRenderingPageTemplate;
$output = ob_get_clean();
}
$headers->set('content-type', $mimeType . '; charset=' . $response->charset);
}
// Render and return the template
$response->data = $this->getView()->renderPageTemplate($template, $variables);
// Prevent a response formatter from overriding the content-type header
$response->format = YiiResponse::FORMAT_RAW;
return $response;
}
// Merge any additional route params
$routeParams = Craft::$app->getUrlManager()->getRouteParams();
unset($routeParams['template'], $routeParams['template']);
$variables = array_merge($variables, $routeParams);
return $this->renderTemplate($template, $variables);
}
/**
* Shows the 'offline' template.
*
* @return Response
$args = $this->controller->bindActionParams($this, $params);
Yii::debug('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__);
if (Yii::$app->requestedParams === null) {
Yii::$app->requestedParams = $args;
}
return call_user_func_array([$this->controller, $this->actionMethod], $args);
}
}
}
$result = null;
if ($runAction && $this->beforeAction($action)) {
// run the action
$result = $action->runWithParams($params);
$result = $this->afterAction($action, $result);
// call afterAction on modules
foreach ($modules as $module) {
/* @var $module Module */
/**
* @inheritdoc
*/
public function runAction($id, $params = [])
{
try {
return parent::runAction($id, $params);
} catch (\Throwable $e) {
if (Craft::$app->getRequest()->getAcceptsJson()) {
Craft::$app->getErrorHandler()->logException($e);
$message = $e->getMessage();
if ($e instanceof ClientException) {
$statusCode = $e->getCode();
$parts = $this->createController($route);
if (is_array($parts)) {
/* @var $controller Controller */
list($controller, $actionID) = $parts;
$oldController = Yii::$app->controller;
Yii::$app->controller = $controller;
$result = $controller->runAction($actionID, $params);
if ($oldController !== null) {
Yii::$app->controller = $oldController;
}
return $result;
}
* @param string $route
* @param array $params
* @return Response|null The result of the action, normalized into a Response object
*/
public function runAction($route, $params = [])
{
$result = parent::runAction($route, $params);
if ($result !== null) {
if ($result instanceof Response) {
return $result;
}
$params = $this->catchAll;
unset($params[0]);
}
try {
Yii::debug("Route requested: '$route'", __METHOD__);
$this->requestedRoute = $route;
$result = $this->runAction($route, $params);
if ($result instanceof Response) {
return $result;
}
$response = $this->getResponse();
if ($result !== null) {
// If this is an action request, call the controller
if (($response = $this->_processActionRequest($request)) !== null) {
return $response;
}
// If we're still here, finally let Yii do it's thing.
return parent::handleRequest($request);
}
/**
* @inheritdoc
* @param string $route
* @param array $params
{
try {
$this->state = self::STATE_BEFORE_REQUEST;
$this->trigger(self::EVENT_BEFORE_REQUEST);
$this->state = self::STATE_HANDLING_REQUEST;
$response = $this->handleRequest($this->getRequest());
$this->state = self::STATE_AFTER_REQUEST;
$this->trigger(self::EVENT_AFTER_REQUEST);
$this->state = self::STATE_SENDING_RESPONSE;
$response->send();
(new Dotenv\Dotenv(CRAFT_BASE_PATH))->load();
}
// Load and run Craft
define('CRAFT_ENVIRONMENT', getenv('ENVIRONMENT') ?: 'production');
$app = require CRAFT_VENDOR_PATH.'/craftcms/cms/bootstrap/web.php';
$app->run();