{# Name and position #}
<div class="margin-bottom-10 icon-block">
<img src="{{ districtUrl }}assets/img/icons/person.svg" alt="person icon">
<div class="icon-block__text">
<p class="margin-bottom-0">{{ entry.firstName }} {{ entry.lastName }}{% if entry.position|length %} - {{ entry.position }}{% endif %}</p>
</div>
</div>
{# Email #}
{# {% if block.displayEmail and entry.emailAddress|length %}
<div class="margin-bottom-10 icon-block">
<img src="{{ districtUrl }}assets/img/icons/email.svg" alt="email icon">
<div class="icon-block__text">
<a href="mailto:{{ entry.emailAddress }}" target="_blank" class="sidebar__icon-block">
if (is_object($value) && get_class($value) === Markup::class) {
$arguments[$key] = (string)$value;
}
}
try {
return CoreExtension::getAttribute(
$env,
$source,
$object,
$item,
$arguments,
$type,
{# Name and position #}
<div class="margin-bottom-10 icon-block">
<img src="{{ districtUrl }}assets/img/icons/person.svg" alt="person icon">
<div class="icon-block__text">
<p class="margin-bottom-0">{{ entry.firstName }} {{ entry.lastName }}{% if entry.position|length %} - {{ entry.position }}{% endif %}</p>
</div>
</div>
{# Email #}
{# {% if block.displayEmail and entry.emailAddress|length %}
<div class="margin-bottom-10 icon-block">
public function yield(array $context, array $blocks = []): iterable
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for \Twig\Error\LoaderError exceptions
{% case "richText" %}
<div class="{% if not block.removeBottomSpacing %}block {% endif %}rich-text">
{{ block.text }}
</div>
{% case "contact" %}
{% include "includes/blocks/_contact" with {entry:block.contact.one()} %}
{% case "iconBlock" %}
{% if block.optionalLink|length %}
<div class="margin-bottom-10 icon-block">
<img src="{{ block.icon.one().url() }}" alt="{{ block.icon.one().title }}">
<div class="icon-block__text">
public function yield(array $context, array $blocks = []): iterable
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for \Twig\Error\LoaderError exceptions
<article class="news-index__article">
<h1 class="heading--thin margin-top-20 text--secondary">{{ entry.title }}</h1>
<p class="margin-bottom-0 text--bold">{% if entry.resourceCategory|length == 1 %}Category: {% else %}Categories: {% endif %}{% for category in entry.resourceCategory.all() %}{{ category.title }}{% if loop.length > 1 and not loop.last %}, {% endif %}{% endfor %}</p>
{% if entry.type == 'article' %}
<div class="margin-top-30">
{% include "includes/blocks/_switch" %}
</div>
{% elseif entry.type == "download" %}
<div class="margin-top-30">
<a href="{{ entry.file.one().url() }}" class="sidebar__icon-block" target="_blank" rel="noopener noreferrer">
<div class="margin-bottom-10 icon-block">
<img src="{{ districtUrl }}assets/img/icons/download.svg" alt="">
if (null !== $template && !$template instanceof self) {
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
yield from $template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
// this is mostly useful for \Twig\Error\LoaderError exceptions
{% endif %}
{% endfor %}
{% endif %}
{# Main content #}
<main>
{% block main %}{% endblock %}
</main>
{% do view.registerJsFile(districtUrl ~ 'assets/js/app.js?ver=6') %}
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
public function yield(array $context, array $blocks = []): iterable
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for \Twig\Error\LoaderError exceptions
{% extends "_layout" %}
{% block main %}
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v10.0&appId=371727016691434&autoLogAppEvents=1" nonce="0niqFwCi"></script>
<article class="news-index grid-x grid-margin-y container">
<main class="news-index__main padding--section cell large-8">
<article class="news-index__article">
public function yield(array $context, array $blocks = []): iterable
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for \Twig\Error\LoaderError exceptions
{
return $this->blocks;
}
public function display(array $context, array $blocks = []): void
{
foreach ($this->yield($context, $blocks) as $data) {
echo $data;
}
}
public function render(array $context): string
{
if ($this->env->isDebug()) {
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
private Template $template,
) {
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
* @throws LoaderError When the template cannot be found
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
* @param string|TemplateWrapper $name The template name
// Render and return
$renderingTemplate = $this->_renderingTemplate;
$this->_renderingTemplate = $template;
try {
$output = $this->getTwig()->render($template, $variables);
} finally {
$this->_renderingTemplate = $renderingTemplate;
$this->setTemplateMode($oldTemplateMode);
}
$this->afterRenderTemplate($template, $variables, $templateMode, $output);
$isRenderingPageTemplate = $this->_isRenderingPageTemplate;
$this->_isRenderingPageTemplate = true;
try {
$this->beginPage();
echo $this->renderTemplate($template, $variables);
$this->endPage();
} finally {
$this->_isRenderingPageTemplate = $isRenderingPageTemplate;
$this->setTemplateMode($oldTemplateMode);
$output = ob_get_clean();
}
) {
$view->registerAssetBundle(ContentWindowAsset::class);
}
// Render and return the template
try {
$response->content = $view->renderPageTemplate($behavior->template, $behavior->variables, $behavior->templateMode);
} catch (Throwable $e) {
$previous = $e->getPrevious();
if ($previous instanceof YiiExitException) {
// Something called Craft::$app->end()
if ($previous instanceof ExitException && $previous->output !== null) {
echo $previous->output;
if (isset($this->formatters[$this->format])) {
$formatter = $this->formatters[$this->format];
if (!is_object($formatter)) {
$this->formatters[$this->format] = $formatter = Yii::createObject($formatter);
}
if ($formatter instanceof ResponseFormatterInterface) {
$formatter->format($this);
} else {
throw new InvalidConfigException("The '{$this->format}' response formatter is invalid. It must implement the ResponseFormatterInterface.");
}
} elseif ($this->format === self::FORMAT_RAW) {
if ($this->data !== null) {
$this->content = $this->data;
/**
* @inheritdoc
*/
protected function prepare(): void
{
parent::prepare();
$this->_isPrepared = true;
}
/**
* Clear the output buffer to prevent corrupt downloads.
*
public function send()
{
if ($this->isSent) {
return;
}
$this->trigger(self::EVENT_BEFORE_SEND);
$this->prepare();
$this->trigger(self::EVENT_AFTER_PREPARE);
$this->sendHeaders();
$this->sendContent();
$this->trigger(self::EVENT_AFTER_SEND);
$this->isSent = true;
}
$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();
$this->state = self::STATE_END;
return $response->exitStatus;
} catch (ExitException $e) {
$this->end($e->statusCode, isset($response) ? $response : null);
}
// Load and run Craft
define('CRAFT_ENVIRONMENT', getenv('ENVIRONMENT') ?: 'production');
/** @var craft\web\Application $app */
$app = require CRAFT_VENDOR_PATH.'/craftcms/cms/bootstrap/web.php';
$app->run();
$_COOKIE = [
'$Version' => '1',
'CRAFT_CSRF_TOKEN' => '81f7ae531fe4b66daf98f74e1e659e312f122b81be8aa5ab378ff3c9ab1e93f3a:2:{i:0;s:16:"CRAFT_CSRF_TOKEN";i:1;s:40:"uWqQkgVjmsouv8nRdRRkSPy_b0CtySsq_klgK8Kx";}',
'$Path' => '/',
];