Met dit wielertruitje ben jij de snelste kabouter van de vallei. Door de rug zakjes kan je de belangrijkste zaken meenemen. De ademende stof en korte mouwen maken dit de perfecte outfit voor een zomerse rit. Ja hoor, met dit wielertruitje blaas je iedereen omver aan de finish!
Key "tiktok" for sequence/mapping with keys "twitter, facebook, wikipedia, linkedin, googleplus, youtube, instagram, pinterest, github, vimeo" does not exist.
1.in /data/web/builds-craft-staging/current/templates/_includes/social/social.twig
at line 65
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
7.in /data/web/builds-craft-staging/current/templates/_includes/footer.twig
at line 72
– Twig\Template::yield()
66676869707172737475767778
{% endif %}
{# This part will be dynamic based on theme #}
{% if brandClass == 'jarr' %}
{% include '_includes/footers_bottom/jarr' %}
{% elseif not isCraftBlend %}
{% include '_includes/footers_bottom/default' %}
{% endif %}
</footer>
{% include '_includes/navigation/search' %}
{% include '_includes/navigation/mobile_nav' %}
{% include '_includes/age-gate' %}
<script>MAGENTO_LINK = '{{ siteUrl }}';</script>
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
11.in /data/web/builds-craft-staging/current/templates/_layouts/global_scope.twig
at line 71
– Twig\Template::yieldBlock()
65666768697071
{# TODO - Belkin: ASK AKOS FOR JARR STORE ID, BUT IN THE SAMETIME JARR WILL HAVE NO SEARCH #}
{% set magentoStoreId = '4' %}
{% set fontWeight = 'font-normal' %}
{% set selectWeight = 'font-normal' %}
{% endswitch %}
{% block base %}{% endblock %}
17.in /data/web/builds-craft-staging/releases/132/vendor/twig/twig/src/TemplateWrapper.php
at line 35
– Twig\Template::render()
29303132333435363738394041
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
18.in /data/web/builds-craft-staging/releases/132/vendor/twig/twig/src/Environment.php
at line 320
– Twig\TemplateWrapper::render()
314315316317318319320321322323324325326
* @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
19.in /data/web/builds-craft-staging/releases/132/vendor/craftcms/cms/src/web/View.php
at line 576
– Twig\Environment::render()
21.in /data/web/builds-craft-staging/releases/132/vendor/craftcms/cms/src/web/TemplateResponseFormatter.php
at line 57
– craft\web\View::renderPageTemplate()
51525354555657585960616263
) {
$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;
22.in /data/web/builds-craft-staging/releases/132/vendor/yiisoft/yii2/web/Response.php
at line 1109
– craft\web\TemplateResponseFormatter::format()