Now, it's even easier to share good times with friends or family, thanks to the new 5L self-contained keg. Discover the flavor of La Chouffe on tap at home, with your friends, or outdoors. No need for a tap or additional tools, all the elements that allow for perfect service, like at the bar, are directly included on the keg.
And to achieve the optimal quality of La Chouffe, Marcel gives you some tips:
Place the keg in the fridge for at least 10 hours before use (24 hours is even better)! If the keg is not refrigerated enough, there may be too much foam during service
Do not shake the keg and store it upright
After opening, the beer is consumable for 30 days with guaranteed pressure quality
And if you've followed all the tips, there's nothing left but to enjoy! So cheers!
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()