Download gratis een naaipatroon om af te drukken met Ikatee
<div style="text-align: left;"><img src="https://cdn.shopify.com/s/files/1/1051/5902/files/Gratis_patroon_registratie_1024x1024_f48530ea-2b47-4304-9b39-34ed3095092b.jpg?v=1639209629" alt="Download een gratis naaipatroon"></div>
<h2>Een gratis naaipatroon om te downloaden</h2>
<p>Bij Ikatee zijn we gepassioneerd door naaien en delen we graag onze creaties, tips en favorieten om u te inspireren om steeds meer te creëren. Wij bieden intuïtieve, complete, gedetailleerde en vooral voor iedereen toegankelijke naaipatronen!</p>
<p>Vertel ons waar we uw gratis naaipatroon naartoe moeten sturen om af te drukken</p>
<!--Raak niet aan zonder eerst Cyril te vragen -->
<div id="mc_embed_shell">
<link href="//cdn-images.mailchimp.com/embedcode/classic-061523.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup{background:#fff; false;clear:left; font:14px Helvetica,Arial,sans-serif; width: 800px;}
/* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<div id="mc_embed_signup">
<form action="https://ikatee.us12.list-manage.com/subscribe/post?u=485a433edf20d26b66155e940&id=13c89ed389&f_id=0054dce1f0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
<div id="mc_embed_signup_scroll"><h2>Download a free sewing pattern</h2>
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
<div class="mc-field-group"><label for="mce-EMAIL">Email Address <span class="asterisk">*</span></label><input type="email" name="EMAIL" class="required email" id="mce-EMAIL" required="" value=""></div><div class="mc-field-group"><label for="mce-FNAME">First Name </label><input type="text" name="FNAME" class=" text" id="mce-FNAME" value=""></div><div class="mc-field-group input-group"><strong>Free Pattern </strong><ul><li><input type="radio" name="group[5740]" id="mce-group[5740]-5740-0" value="1"><label for="mce-group[5740]-5740-0">Woman Santiago Skirt</label></li><li><input type="radio" name="group[5740]" id="mce-group[5740]-5740-1" value="2"><label for="mce-group[5740]-5740-1">Newborn Vega Cardigan</label></li><li><input type="radio" name="group[5740]" id="mce-group[5740]-5740-2" value="4"><label for="mce-group[5740]-5740-2">Girl Ibiza Top</label></li><li><input type="radio" name="group[5740]" id="mce-group[5740]-5740-3" value="8"><label for="mce-group[5740]-5740-3">Boy Jim Pants</label></li></ul></div>
<div hidden=""><input type="hidden" name="tags" value="10522472"></div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display: none;"></div>
<div class="response" id="mce-success-response" style="display: none;"></div>
</div><div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_485a433edf20d26b66155e940_13c89ed389" tabindex="-1" value=""></div><div class="clear"><input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="Subscribe"></div>
</div>
</form>
</div>
<script type="text/javascript" src="//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js"></script><script type="text/javascript">(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery.noConflict(true);
// SMS Phone Multi-Country Functionality
if(!window.MC) {
window.MC = {};
}
window.MC.smsPhoneData = {
defaultCountryCode: 'FR',
programs: [],
smsProgramDataCountryNames: []
};
function getCountryUnicodeFlag(countryCode) {
return countryCode.toUpperCase().replace(/./g, (char) => String.fromCodePoint(char.charCodeAt(0) + 127397))
};
// HTML sanitization function to prevent XSS
function sanitizeHtml(str) {
if (typeof str !== 'string') return '';
return str
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/'/g, ''')
.replace(/\//g, '/');
}
// URL sanitization function to prevent javascript: and data: URLs
function sanitizeUrl(url) {
if (typeof url !== 'string') return '';
const trimmedUrl = url.trim().toLowerCase();
if (trimmedUrl.startsWith('javascript:') || trimmedUrl.startsWith('data:') || trimmedUrl.startsWith('vbscript:')) {
return '#';
}
return url;
}
const getBrowserLanguage = () => {
if (!window?.navigator?.language?.split('-')[1]) {
return window?.navigator?.language?.toUpperCase();
}
return window?.navigator?.language?.split('-')[1];
};
function getDefaultCountryProgram(defaultCountryCode, smsProgramData) {
if (!smsProgramData || smsProgramData.length === 0) {
return null;
}
const browserLanguage = getBrowserLanguage();
if (browserLanguage) {
const foundProgram = smsProgramData.find(
(program) => program?.countryCode === browserLanguage,
);
if (foundProgram) {
return foundProgram;
}
}
if (defaultCountryCode) {
const foundProgram = smsProgramData.find(
(program) => program?.countryCode === defaultCountryCode,
);
if (foundProgram) {
return foundProgram;
}
}
return smsProgramData[0];
}
function updateSmsLegalText(countryCode, fieldName) {
if (!countryCode || !fieldName) {
return;
}
const programs = window?.MC?.smsPhoneData?.programs;
if (!programs || !Array.isArray(programs)) {
return;
}
const program = programs.find(program => program?.countryCode === countryCode);
if (!program || !program.requiredTemplate) {
return;
}
const legalTextElement = document.querySelector('#legal-text-' + fieldName);
if (!legalTextElement) {
return;
}
// Remove HTML tags and clean up the text
const divRegex = new RegExp('</?[div][^>]*>', 'gi');
const fullAnchorRegex = new RegExp('<a.*?</a>', 'g');
const anchorRegex = new RegExp('<a href="(.*?)" target="(.*?)">(.*?)</a>');
const template = program.requiredTemplate.replace(divRegex, '');
legalTextElement.textContent = '';
const parts = template.split(/(<a href=".*?" target=".*?">.*?<\/a>)/g);
parts.forEach(function(part) {
if (!part) {
return;
}
const anchorMatch = part.match(/<a href="(.*?)" target="(.*?)">(.*?)<\/a>/);
if (anchorMatch) {
const linkElement = document.createElement('a');
linkElement.href = sanitizeUrl(anchorMatch[1]);
linkElement.target = sanitizeHtml(anchorMatch[2]);
linkElement.textContent = sanitizeHtml(anchorMatch[3]);
legalTextElement.appendChild(linkElement);
} else {
legalTextElement.appendChild(document.createTextNode(part));
}
});
}
function generateDropdownOptions(smsProgramData) {
if (!smsProgramData || smsProgramData.length === 0) {
return '';
}
return smsProgramData.map(program => {
const flag = getCountryUnicodeFlag(program.countryCode);
const countryName = getCountryName(program.countryCode);
const callingCode = program.countryCallingCode || '';
// Sanitize all values to prevent XSS
const sanitizedCountryCode = sanitizeHtml(program.countryCode || '');
const sanitizedCountryName = sanitizeHtml(countryName || '');
const sanitizedCallingCode = sanitizeHtml(callingCode || '');
return '<option value="' + sanitizedCountryCode + '">' + sanitizedCountryName + ' ' + sanitizedCallingCode + '</option>';
}).join('');
}
function getCountryName(countryCode) {
if (window.MC?.smsPhoneData?.smsProgramDataCountryNames && Array.isArray(window.MC.smsPhoneData.smsProgramDataCountryNames)) {
for (let i = 0; i < window.MC.smsPhoneData.smsProgramDataCountryNames.length; i++) {
if (window.MC.smsPhoneData.smsProgramDataCountryNames[i].code === countryCode) {
return window.MC.smsPhoneData.smsProgramDataCountryNames[i].name;
}
}
}
return countryCode;
}
function getDefaultPlaceholder(countryCode) {
if (!countryCode || typeof countryCode !== 'string') {
return '+1 000 000 0000'; // Default US placeholder
}
var mockPlaceholders = [
{
countryCode: 'US',
placeholder: '+1 000 000 0000',
helpText: 'Include the US country code +1 before the phone number',
},
{
countryCode: 'GB',
placeholder: '+44 0000 000000',
helpText: 'Include the GB country code +44 before the phone number',
},
{
countryCode: 'CA',
placeholder: '+1 000 000 0000',
helpText: 'Include the CA country code +1 before the phone number',
},
{
countryCode: 'AU',
placeholder: '+61 000 000 000',
helpText: 'Include the AU country code +61 before the phone number',
},
{
countryCode: 'DE',
placeholder: '+49 000 0000000',
helpText: 'Fügen Sie vor der Telefonnummer die DE-Ländervorwahl +49 ein',
},
{
countryCode: 'FR',
placeholder: '+33 0 00 00 00 00',
helpText: 'Incluez le code pays FR +33 avant le numéro de téléphone',
},
{
countryCode: 'ES',
placeholder: '+34 000 000 000',
helpText: 'Incluya el código de país ES +34 antes del número de teléfono',
},
{
countryCode: 'NL',
placeholder: '+31 0 00000000',
helpText: 'Voeg de NL-landcode +31 toe vóór het telefoonnummer',
},
{
countryCode: 'BE',
placeholder: '+32 000 00 00 00',
helpText: 'Incluez le code pays BE +32 avant le numéro de téléphone',
},
{
countryCode: 'CH',
placeholder: '+41 00 000 00 00',
helpText: 'Fügen Sie vor der Telefonnummer die CH-Ländervorwahl +41 ein',
},
{
countryCode: 'AT',
placeholder: '+43 000 000 0000',
helpText: 'Fügen Sie vor der Telefonnummer die AT-Ländervorwahl +43 ein',
},
{
countryCode: 'IE',
placeholder: '+353 00 000 0000',
helpText: 'Include the IE country code +353 before the phone number',
},
{
countryCode: 'IT',
placeholder: '+39 000 000 0000',
helpText: 'Includere il prefisso internazionale IT +39 prima del numero di telefono',
},
{
countryCode: 'NO',
placeholder: '+47 000 00 000',
helpText: 'Inkluder NO landskode +47 før telefonnummeret',
},
{
countryCode: 'SE',
placeholder: '+46 00 000 00 00',
helpText: 'Inkludera SE landskod +46 före telefonnumret',
},
{
countryCode: 'DK',
placeholder: '+45 00 00 00 00',
helpText: 'Inkluder DK landekode +45 før telefonnummeret',
},
{
countryCode: 'FI',
placeholder: '+358 00 000 0000',
helpText: 'Sisällytä FI-maakoodi +358 ennen puhelinnumeroa',
},
{
countryCode: 'EE',
placeholder: '+372 0000 0000',
helpText: 'Lisage EE riigikood +372 telefoninumbri ette',
},
{
countryCode: 'PL',
placeholder: '+48 000 000 000',
helpText: 'Podaj numer kierunkowy PL +48 przed numerem telefonu',
},
{
countryCode: 'SK',
placeholder: '+421 000 000 000',
helpText: 'Pred telefónne číslo uveďte kód krajiny SK +421',
},
{
countryCode: 'LV',
placeholder: '+371 0000 0000',
helpText: 'Iekļaujiet LV valsts kodu +371 pirms tālruņa numura',
},
{
countryCode: 'LT',
placeholder: '+370 0000 0000',
helpText: 'Įtraukite LT šalies kodą +370 prieš telefono numerį',
},
{
countryCode: 'GR',
placeholder: '+30 000 000 0000',
helpText: 'Συμπεριλάβετε τον κωδικό χώρας GR +30 πριν από τον αριθμό τηλεφώνου',
},
{
countryCode: 'PT',
placeholder: '+351 000 000 000',
helpText: 'Inclua o código de país PT +351 antes do número de telefone',
},
{
countryCode: 'HR',
placeholder: '+385 00 000 0000',
helpText: 'Uključite HR pozivni broj države +385 prije telefonskog broja',
},
{
countryCode: 'SI',
placeholder: '+386 00 000 000',
helpText: 'Vključite SI kodo države +386 pred telefonsko številko',
},
{
countryCode: 'IS',
placeholder: '+354 000 0000',
helpText: 'Láttu IS landsnúmer +354 fylgja á undan símanúmerinu',
},
{
countryCode: 'LU',
placeholder: '+352 000 000 000',
helpText: 'Incluez le code pays LU +352 avant le numéro de téléphone',
},
{
countryCode: 'MC',
placeholder: '+377 00 00 00 00',
helpText: 'Incluez le code pays MC +377 avant le numéro de téléphone',
},
{
countryCode: 'AD',
placeholder: '+376 000 000',
helpText: 'Incloeu el codi de país AD +376 abans del número de telèfon',
},
{
countryCode: 'JE',
placeholder: '+44 0000 000000',
helpText: 'Include the JE country code +44 before the phone number',
},
{
countryCode: 'IM',
placeholder: '+44 0000 000000',
helpText: 'Include the IM country code +44 before the phone number',
},
{
countryCode: 'GG',
placeholder: '+44 0000 000000',
helpText: 'Include the GG country code +44 before the phone number',
},
{
countryCode: 'AL',
placeholder: '+355 00 000 0000',
helpText: 'Përfshini kodin e vendit AL +355 para numrit të telefonit',
},
{
countryCode: 'SM',
placeholder: '+378 0000 000000',
helpText: 'Includere il prefisso internazionale SM +378 prima del numero di telefono',
},
{
countryCode: 'FO',
placeholder: '+298 000000',
helpText: 'Inkluder FO landekode +298 før telefonnummeret',
},
{
countryCode: 'MT',
placeholder: '+356 0000 0000',
helpText: 'Include the MT country code +356 before the phone number',
},
{
countryCode: 'LI',
placeholder: '+423 000 0000',
helpText: 'Fügen Sie vor der Telefonnummer die LI-Ländervorwahl +423 ein',
},
{
countryCode: 'GI',
placeholder: '+350 000 00000',
helpText: 'Include the GI country code +350 before the phone number',
},
{
countryCode: 'MD',
placeholder: '+373 00 000 000',
helpText: 'Includeți codul de țară MD +373 înaintea numărului de telefon',
},
{
countryCode: 'HU',
placeholder: '+36 00 000 0000',
helpText: 'A telefonszám előtt adja meg a HU országkódot +36',
},
{
countryCode: 'NZ',
placeholder: '+64 00 000 0000',
helpText: 'Include the NZ country code +64 before the phone number',
},
{
countryCode: 'ME',
placeholder: '+382 00 000 000',
helpText: 'Uključite ME pozivni broj države +382 prije telefonskog broja',
},
];
const selectedPlaceholder = mockPlaceholders.find(function(item) {
return item && item.countryCode === countryCode;
});
return selectedPlaceholder ? selectedPlaceholder.placeholder : mockPlaceholders[0].placeholder;
}
function updatePlaceholder(countryCode, fieldName) {
if (!countryCode || !fieldName) {
return;
}
const phoneInput = document.querySelector('#mce-' + fieldName);
if (!phoneInput) {
return;
}
const placeholder = getDefaultPlaceholder(countryCode);
if (placeholder) {
phoneInput.placeholder = placeholder;
}
}
function updateCountryCodeInstruction(countryCode, fieldName) {
updatePlaceholder(countryCode, fieldName);
}
function getDefaultHelpText(countryCode) {
var mockPlaceholders = [
{
countryCode: 'US',
placeholder: '+1 000 000 0000',
helpText: 'Include the US country code +1 before the phone number',
},
{
countryCode: 'GB',
placeholder: '+44 0000 000000',
helpText: 'Include the GB country code +44 before the phone number',
},
{
countryCode: 'CA',
placeholder: '+1 000 000 0000',
helpText: 'Include the CA country code +1 before the phone number',
},
{
countryCode: 'AU',
placeholder: '+61 000 000 000',
helpText: 'Include the AU country code +61 before the phone number',
},
{
countryCode: 'DE',
placeholder: '+49 000 0000000',
helpText: 'Fügen Sie vor der Telefonnummer die DE-Ländervorwahl +49 ein',
},
{
countryCode: 'FR',
placeholder: '+33 0 00 00 00 00',
helpText: 'Incluez le code pays FR +33 avant le numéro de téléphone',
},
{
countryCode: 'ES',
placeholder: '+34 000 000 000',
helpText: 'Incluya el código de país ES +34 antes del número de teléfono',
},
{
countryCode: 'NL',
placeholder: '+31 0 00000000',
helpText: 'Voeg de NL-landcode +31 toe vóór het telefoonnummer',
},
{
countryCode: 'BE',
placeholder: '+32 000 00 00 00',
helpText: 'Incluez le code pays BE +32 avant le numéro de téléphone',
},
{
countryCode: 'CH',
placeholder: '+41 00 000 00 00',
helpText: 'Fügen Sie vor der Telefonnummer die CH-Ländervorwahl +41 ein',
},
{
countryCode: 'AT',
placeholder: '+43 000 000 0000',
helpText: 'Fügen Sie vor der Telefonnummer die AT-Ländervorwahl +43 ein',
},
{
countryCode: 'IE',
placeholder: '+353 00 000 0000',
helpText: 'Include the IE country code +353 before the phone number',
},
{
countryCode: 'IT',
placeholder: '+39 000 000 0000',
helpText: 'Includere il prefisso internazionale IT +39 prima del numero di telefono',
},
{
countryCode: 'NO',
placeholder: '+47 000 00 000',
helpText: 'Inkluder NO landskode +47 før telefonnummeret',
},
{
countryCode: 'SE',
placeholder: '+46 00 000 00 00',
helpText: 'Inkludera SE landskod +46 före telefonnumret',
},
{
countryCode: 'DK',
placeholder: '+45 00 00 00 00',
helpText: 'Inkluder DK landekode +45 før telefonnummeret',
},
{
countryCode: 'FI',
placeholder: '+358 00 000 0000',
helpText: 'Sisällytä FI-maakoodi +358 ennen puhelinnumeroa',
},
{
countryCode: 'EE',
placeholder: '+372 0000 0000',
helpText: 'Lisage EE riigikood +372 telefoninumbri ette',
},
{
countryCode: 'PL',
placeholder: '+48 000 000 000',
helpText: 'Podaj numer kierunkowy PL +48 przed numerem telefonu',
},
{
countryCode: 'SK',
placeholder: '+421 000 000 000',
helpText: 'Pred telefónne číslo uveďte kód krajiny SK +421',
},
{
countryCode: 'LV',
placeholder: '+371 0000 0000',
helpText: 'Iekļaujiet LV valsts kodu +371 pirms tālruņa numura',
},
{
countryCode: 'LT',
placeholder: '+370 0000 0000',
helpText: 'Įtraukite LT šalies kodą +370 prieš telefono numerį',
},
{
countryCode: 'GR',
placeholder: '+30 000 000 0000',
helpText: 'Συμπεριλάβετε τον κωδικό χώρας GR +30 πριν από τον αριθμό τηλεφώνου',
},
{
countryCode: 'PT',
placeholder: '+351 000 000 000',
helpText: 'Inclua o código de país PT +351 antes do número de telefone',
},
{
countryCode: 'HR',
placeholder: '+385 00 000 0000',
helpText: 'Uključite HR pozivni broj države +385 prije telefonskog broja',
},
{
countryCode: 'SI',
placeholder: '+386 00 000 000',
helpText: 'Vključite SI kodo države +386 pred telefonsko številko',
},
{
countryCode: 'IS',
placeholder: '+354 000 0000',
helpText: 'Láttu IS landsnúmer +354 fylgja á undan símanúmerinu',
},
{
countryCode: 'LU',
placeholder: '+352 000 000 000',
helpText: 'Incluez le code pays LU +352 avant le numéro de téléphone',
},
{
countryCode: 'MC',
placeholder: '+377 00 00 00 00',
helpText: 'Incluez le code pays MC +377 avant le numéro de téléphone',
},
{
countryCode: 'AD',
placeholder: '+376 000 000',
helpText: 'Incloeu el codi de país AD +376 abans del número de telèfon',
},
{
countryCode: 'JE',
placeholder: '+44 0000 000000',
helpText: 'Include the JE country code +44 before the phone number',
},
{
countryCode: 'IM',
placeholder: '+44 0000 000000',
helpText: 'Include the IM country code +44 before the phone number',
},
{
countryCode: 'GG',
placeholder: '+44 0000 000000',
helpText: 'Include the GG country code +44 before the phone number',
},
{
countryCode: 'AL',
placeholder: '+355 00 000 0000',
helpText: 'Përfshini kodin e vendit AL +355 para numrit të telefonit',
},
{
countryCode: 'SM',
placeholder: '+378 0000 000000',
helpText: 'Includere il prefisso internazionale SM +378 prima del numero di telefono',
},
{
countryCode: 'FO',
placeholder: '+298 000000',
helpText: 'Inkluder FO landekode +298 før telefonnummeret',
},
{
countryCode: 'MT',
placeholder: '+356 0000 0000',
helpText: 'Include the MT country code +356 before the phone number',
},
{
countryCode: 'LI',
placeholder: '+423 000 0000',
helpText: 'Fügen Sie vor der Telefonnummer die LI-Ländervorwahl +423 ein',
},
{
countryCode: 'GI',
placeholder: '+350 000 00000',
helpText: 'Include the GI country code +350 before the phone number',
},
{
countryCode: 'MD',
placeholder: '+373 00 000 000',
helpText: 'Includeți codul de țară MD +373 înaintea numărului de telefon',
},
{
countryCode: 'HU',
placeholder: '+36 00 000 0000',
helpText: 'A telefonszám előtt adja meg a HU országkódot +36',
},
{
countryCode: 'NZ',
placeholder: '+64 00 000 0000',
helpText: 'Include the NZ country code +64 before the phone number',
},
{
countryCode: 'ME',
placeholder: '+382 00 000 000',
helpText: 'Uključite ME pozivni broj države +382 prije telefonskog broja',
},
];
if (!countryCode || typeof countryCode !== 'string') {
return mockPlaceholders[0].helpText;
}
const selectedHelpText = mockPlaceholders.find(function(item) {
return item && item.countryCode === countryCode;
});
return selectedHelpText ? selectedHelpText.helpText : mockPlaceholders[0].helpText;
}
function setDefaultHelpText(countryCode) {
const helpTextSpan = document.querySelector('#help-text');
if (!helpTextSpan) {
return;
}
}
function updateHelpTextCountryCode(countryCode, fieldName) {
if (!countryCode || !fieldName) {
return;
}
setDefaultHelpText(countryCode);
}
function initializeSmsPhoneDropdown(fieldName) {
if (!fieldName || typeof fieldName !== 'string') {
return;
}
const dropdown = document.querySelector('#country-select-' + fieldName);
const displayFlag = document.querySelector('#flag-display-' + fieldName);
if (!dropdown || !displayFlag) {
return;
}
const smsPhoneData = window.MC?.smsPhoneData;
if (smsPhoneData && smsPhoneData.programs && Array.isArray(smsPhoneData.programs)) {
dropdown.innerHTML = generateDropdownOptions(smsPhoneData.programs);
}
const defaultProgram = getDefaultCountryProgram(smsPhoneData?.defaultCountryCode, smsPhoneData?.programs);
if (defaultProgram && defaultProgram.countryCode) {
dropdown.value = defaultProgram.countryCode;
const flagSpan = displayFlag?.querySelector('#flag-emoji-' + fieldName);
if (flagSpan) {
flagSpan.textContent = getCountryUnicodeFlag(defaultProgram.countryCode);
flagSpan.setAttribute('aria-label', sanitizeHtml(defaultProgram.countryCode) + ' flag');
}
updateSmsLegalText(defaultProgram.countryCode, fieldName);
updatePlaceholder(defaultProgram.countryCode, fieldName);
updateCountryCodeInstruction(defaultProgram.countryCode, fieldName);
}
var smsNotRequiredRemoveCountryCodeEnabled = true;
var smsField = Object.values({"EMAIL":{"name":"EMAIL","label":"Email Address","helper_text":"","merge_id":0,"type":"email","required":true,"audience_field_name":"Email Address","field_type":"merge","enabled":true,"order":null},"FNAME":{"name":"FNAME","label":"First Name","helper_text":"","type":"text","required":false,"audience_field_name":"First Name","enabled":true,"order":null,"field_type":"merge","merge_id":1},"LNAME":{"name":"LNAME","label":"Last Name","helper_text":"","type":"text","required":false,"audience_field_name":"Last Name","enabled":false,"order":null,"field_type":"merge","merge_id":2},"interests_5740":{"name":"interests_5740","label":"Free Pattern","helper_text":"","type":"radio","required":false,"choices":[{"value":"1","label":"Woman Santiago Skirt"},{"value":"2","label":"Newborn Vega Cardigan"},{"value":"4","label":"Girl Ibiza Top"},{"value":"8","label":"Boy Jim Pants"}],"audience_field_name":"Free Pattern","enabled":true,"order":null,"field_type":"group","group_id":5740}}).find(function(f) { return f.name === fieldName && f.type === 'smsphone'; });
var isRequired = smsField ? smsField.required : false;
var shouldAppendCountryCode = smsNotRequiredRemoveCountryCodeEnabled ? isRequired : true;
var phoneInput = document.querySelector('#mce-' + fieldName);
if (phoneInput && defaultProgram.countryCallingCode && shouldAppendCountryCode) {
phoneInput.value = defaultProgram.countryCallingCode;
}
displayFlag?.addEventListener('click', function(e) {
dropdown.focus();
});
dropdown?.addEventListener('change', function() {
const selectedCountry = this.value;
if (!selectedCountry || typeof selectedCountry !== 'string') {
return;
}
const flagSpan = displayFlag?.querySelector('#flag-emoji-' + fieldName);
if (flagSpan) {
flagSpan.textContent = getCountryUnicodeFlag(selectedCountry);
flagSpan.setAttribute('aria-label', sanitizeHtml(selectedCountry) + ' flag');
}
const selectedProgram = window.MC?.smsPhoneData?.programs.find(function(program) {
return program && program.countryCode === selectedCountry;
});
var smsNotRequiredRemoveCountryCodeEnabled = true;
var smsField = Object.values({"EMAIL":{"name":"EMAIL","label":"Email Address","helper_text":"","merge_id":0,"type":"email","required":true,"audience_field_name":"Email Address","field_type":"merge","enabled":true,"order":null},"FNAME":{"name":"FNAME","label":"First Name","helper_text":"","type":"text","required":false,"audience_field_name":"First Name","enabled":true,"order":null,"field_type":"merge","merge_id":1},"LNAME":{"name":"LNAME","label":"Last Name","helper_text":"","type":"text","required":false,"audience_field_name":"Last Name","enabled":false,"order":null,"field_type":"merge","merge_id":2},"interests_5740":{"name":"interests_5740","label":"Free Pattern","helper_text":"","type":"radio","required":false,"choices":[{"value":"1","label":"Woman Santiago Skirt"},{"value":"2","label":"Newborn Vega Cardigan"},{"value":"4","label":"Girl Ibiza Top"},{"value":"8","label":"Boy Jim Pants"}],"audience_field_name":"Free Pattern","enabled":true,"order":null,"field_type":"group","group_id":5740}}).find(function(f) { return f.name === fieldName && f.type === 'smsphone'; });
var isRequired = smsField ? smsField.required : false;
var shouldAppendCountryCode = smsNotRequiredRemoveCountryCodeEnabled ? isRequired : true;
var phoneInput = document.querySelector('#mce-' + fieldName);
if (phoneInput && selectedProgram.countryCallingCode && shouldAppendCountryCode) {
phoneInput.value = selectedProgram.countryCallingCode;
}
updateSmsLegalText(selectedCountry, fieldName);
updatePlaceholder(selectedCountry, fieldName);
updateCountryCodeInstruction(selectedCountry, fieldName);
});
}
document.addEventListener('DOMContentLoaded', function() {
const smsPhoneFields = document.querySelectorAll('[id^="country-select-"]');
smsPhoneFields.forEach(function(dropdown) {
const fieldName = dropdown?.id.replace('country-select-', '');
initializeSmsPhoneDropdown(fieldName);
});
});
</script></div>
<!-- don't touch -->
</div>
</div>
<div style="text-align: left;" class="row">
<p><img style="float: none;" src="https://cdn.shopify.com/s/files/1/1051/5902/files/Patron_gratuits_2048x2048.jpg?v=1725023723"></p>
<p><meta charset="utf-8">Bij het naaien weten we dat iedereen zijn eigen gewoontes heeft. We bieden u de mogelijkheid om een<b data-mce-fragment=“1”> gratis PDF-naaipatroon</b> te kiezen uit een selectie van onze favoriete modellen om uit te proberen! Deze selectie van onze favoriete patronen is bedoeld om u op weg te helpen of uw naaivaardigheden te perfectioneren. Elk patroon gaat vergezeld van een duidelijke videotutorial en een gedetailleerde naaigids die u stap voor stap begeleidt, van het knippen van het patroon tot de afwerking van uw werkstuk.
<p>Download eenvoudig een gratis naaipatroon voor baby's, kinderen of vrouwen en maak unieke, gepersonaliseerde kleding. Wat uw voorkeuren ook zijn, Ikatee biedt u <b>gevarieerde modellen</b> die <b>gemakkelijk te volgen</b> zijn en stijl en comfort combineren. Duik in de wereld van het naaien met onze zorgvuldig geselecteerde patronen en word lid van een gepassioneerde en creatieve community!</p>
<h2><b>Het gratis naaipatroon voor baby's in pdf-formaat</b></h2>
<span style="text-decoration: underline;"><b><img style="margin-right: 15px; float: left;“ src="https://cdn.shopify.com/s/files/1/1051/5902/files/P1200226_480x480.jpg?v=1725024300" data-mce-fragment=”1">Vega</b>: het tijdloze vest voor jongens en meisjes</span>
<p><b>Maten: </b>van 1 maand tot 4 jaar</p>
<p><b>Moeilijkheidsgraad:</b> eenvoudig</p>
<p><b>Video-tutorial</b> beschikbaar</p>
<p><b>Naadmarges inbegrepen:</b> 0,7 cm</p>
<p>Vega is een <b>vest</b> voor <b>jongens en meisjes</b> dat <b>gemakkelijk</b> te maken is. Dit model is comfortabel en heeft een rechte, ruime pasvorm, met afgezakte schouders en een knoopsluiting aan de voorkant. Het onderscheidt zich door een zoom met toegevoegde band, een lengte tot halverwege de heupen en een halslijn afgewerkt met biaisband, wat zorgt voor een eenvoudig silhouet en een onberispelijk resultaat, zelfs voor beginnende naaisters. We leggen ook uit hoe je kleine ronde opgestikte zakjes naait en hoe je mooie afwerkingen krijgt. </p>
<h2><b>Gratis naaipatronen voor kinderen in pdf-formaat</b></h2>
<span style="text-decoration: underline;"><b><img style="margin-right: 15px; float: left;“ src="https://cdn.shopify.com/s/files/1/1051/5902/files/4M9A8498_160x160.jpg?v=1725024533" data-mce-fragment=”1">Ibiza</b>: de blouse met strikjes</span>
<p><b>Maten: </b>van 3 tot 12 jaar</p>
<p><b>Moeilijkheidsgraad:</b> eenvoudig</p>
<p><b>Video-tutorial</b> beschikbaar</p>
<p><b>Naadtoeslagen inbegrepen:</b> 0,7 cm</p>
<p> Ibiza is een <b>ruime blouse</b> met dunne bandjes die op de schouders worden geknoopt: perfect voor de warme seizoenen! Dit zomerkledingstuk is <b>gemakkelijk</b> te maken en heeft een verzorgde afwerking. U
Un retour, une idée, une question ?
Vous pouvez nous contacter à l’adresse suivante : contact@ikatee.fr.
Le service clients est ouvert du lundi au vendredi, de 8h à 16h, pour répondre à toutes vos questions. Vous recevrez une réponse de notre part sous 48 heures, hors weekends et jours fériés.