The Chouffe sandwich wrapper is a convenient and eco-friendly alternative to disposable bags! This reusable sandwich wrapper is perfect for daily use: whether you're going to school, work, traveling, or enjoying a day out, your sandwich will always stay fresh and delicious.
Benefits of the Chouffe sandwich wrapper
Reusable: Reduce waste by choosing a sustainable option that you can use over and over again.
Easy to clean: Simply wipe it down with a cloth or throw it in the washing machine for a thorough clean.
Compact and convenient: It takes up little space and easily fits into any bag, so you can always carry your lunch with you.
Pair the sandwich wrapper with the Chouffe cooling bag to keep your lunch fresh and cool. Complete your picnic with a delicious La Chouffe Keg, perfect for a relaxing moment with friends.
Enjoy your meal, wherever you are, with the Chouffe sandwich wrapper!
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()