formes Berlin
At formes Berlin, they produce postcards and greeting cards from particularly high-quality materials and using the latest laser technology. They strive to create products that stand out from the rest, break new ground, and reinterpret existing one and think cards are too good for the refrigerator, so create three-dimensional designs.
A key part of their philosophy is the most responsible approach to the environment and society. For example, they use pure green electricity throughout their company and handle inner-city deliveries in a CO2-neutral way using our e-cargo bike.
formes Berlin has been a family business since 2009.
{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString();
let pattern = /[?&]sort_by=/;
let collUrl = location.search;
let newUrl = queryString;
if(pattern.test(collUrl)) {
const theString = window.location.search;
const urlParams = new URLSearchParams(theString);
const sorty = urlParams.get('sort_by')
newUrl = queryString + '&sort_by=' + sorty;
console.log(sorty);
}
console.log(queryString);
console.log(newUrl);
loading = true;
fetch('/collections/formes-berlin?' + newUrl)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
let html_dom = html_div.querySelector('#dataMix').innerHTML;
document.querySelector('#dataMix').innerHTML = html_dom;
// update url without refreshing the page
history.replaceState(null, null, '?' + newUrl);
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>