Désormais, il est encore plus facile de partager de bons moments entre amis ou en famille, grâce au nouveau fût autonome de 5L. Découvre la saveur de La Chouffe au fût chez toi, chez tes amis ou en extérieur. Pas besoin de tireuse ou d’outils additionnels, tous les éléments qui permettent un service parfait, comme au bar, sont directement inclus sur le fût.
Et pour obtenir la qualité optimale de La Chouffe, Marcel te donne quelques conseils :
Place le fût au frigo au moins 10h avant usage (24h c’est encore mieux) ! Si le fût n’est pas assez réfrigéré, il risque d’y avoir trop de mousse lors du service.
Ne pas secouer le fût et le stocker à la verticale
Après ouverture, la bière est consommable 30 jours avec une qualité de pression garantie
Et si t’as bien suivi tous les conseils, il y a plus qu’à déguster ! Alors santé !
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()