Limitierter Fineartprint auf Hahnemühle Photo Rag, gerahmt mit Schattenfuge und feinem Holzrahmen der Arnold Rahmenmanufaktur, ohne Glas, in drei Grössen (Rahmen-Aussenmass):
141 x 93 cm: 3 Stück 100 x 66 cm: 5 Stück 70 x 46 cm: 7 Stück
Ausführungsdetails:
Fineartprint auf Hahnemühle Photo Rag, gedruckt auf High-End-Pigmenttintendrucker mit 11 Farben, aufgezogen auf D-Bond. Die D-Bond-Platte wird mit einer kleinen Schattenfuge in einen handgefertigten und handbemalten Rahmen montiert.
Lieferzeit ab Bestellung: ca. 6 Wochen
Limitierter Fineartprint auf Hahnemühle Photo Rag, gerahmt mit Schattenfuge und feinem Holzrahmen der Arnold Rahmenmanufaktur, ohne Glas, in drei Grössen (Rahmen-Aussenmass):
141 x 93 cm: 3 Stück 100 x 66 cm: 5 Stück 70 x 46 cm: 7 Stück
Ausführungsdetails:
Fineartprint auf Hahnemühle Photo Rag, gedruckt auf High-End-Pigmenttintendrucker mit 11 Farben, aufgezogen auf D-Bond. Die D-Bond-Platte wird mit einer kleinen Schattenfuge in einen handgefertigten und handbemalten Rahmen montiert.
Lieferzeit ab Bestellung: ca. 6 Wochen
if ( $('body').hasClass('view-item') && document.body.className.includes('collection-type-blog') ) {
const href = window.location.href;
$.ajax({
url: href + "?format=json-pretty",
cache: false,
}).done(function(data){
if (data.item.sourceUrl && data.item.sourceUrl.length > 0) {
const videoUrl = data.item.sourceUrl;
let html = `
`;
$(html).insertBefore('.blog-item-hero-banner .blog-item-title');
$('.blog-item-hero-banner').addClass('has-video');
}
}).fail(function(e){
console.error(e)
});
}
function checkSourceUrl(href, $el) {
$.ajax({
url: window.location.origin + href + "?format=json-pretty",
cache:false,
}).done(function(data){
if (data.item.sourceUrl && data.item.sourceUrl.length > 0) {
replaceImageWithVideo(data.item.sourceUrl, $el);
}
}).fail(function(e){
console.error(e)
});
}
function replaceImageWithVideo(videoUrl, $el) {
let html = `
`;
$el.find('.summary-thumbnail').append( html );
}