{"id":9783,"date":"2025-04-14T16:06:44","date_gmt":"2025-04-14T15:06:44","guid":{"rendered":"http:\/\/dulonmarine.com\/?page_id=9783"},"modified":"2025-06-25T14:14:03","modified_gmt":"2025-06-25T13:14:03","slug":"nizozemska","status":"publish","type":"page","link":"https:\/\/dulonmarine.com\/sl\/our-dealers\/the-netherlands\/","title":{"rendered":"Nizozemska"},"content":{"rendered":"<div id=\"cs-content\" class=\"cs-content\"><div class=\"x-section e9783-e1 m7jr-0\"><div class=\"x-row x-container max width e9783-e2 m7jr-1 m7jr-2\"><div class=\"x-row-inner\"><div class=\"x-col e9783-e3 m7jr-3\"><div  class=\"x-raw-content\" ><!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\/>\n  <title>Watersports Companies<\/title>\n  <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n<\/head>\n<body class=\"bg-gray-100 p-4\">\n  <div class=\"max-w-4xl mx-auto bg-white rounded-2xl shadow p-6\">\n   <h1 class=\"text-2xl font-bold mb-4 text-center\">Our dealers in The Netherlands & Belgium<\/h1>\n    <input\n      type=\"text\"\n      id=\"searchInput\"\n      placeholder=\"Search by company name or location...\"\n      class=\"w-full p-2 mb-4 border rounded shadow-sm\"\n    \/>\n\n    <!-- Netherlands -->\n    <h2 class=\"text-xl font-semibold mb-2 mt-6\">The Netherlands<\/h2>\n    <div class=\"overflow-x-auto\">\n      <table class=\"min-w-full border text-sm text-left\">\n        <thead class=\"bg-gray-100 border-b\">\n          <tr>\n            <th class=\"px-4 py-2\">Company<\/th>\n            <th class=\"px-4 py-2\">Location<\/th>\n          <\/tr>\n        <\/thead>\n        <tbody id=\"nederlandTable\" class=\"divide-y\"><\/tbody>\n      <\/table>\n    <\/div>\n\n    <!-- Belgium -->\n    <h2 class=\"text-xl font-semibold mb-2 mt-10\">Belgium<\/h2>\n    <div class=\"overflow-x-auto\">\n      <table class=\"min-w-full border text-sm text-left\">\n        <thead class=\"bg-gray-100 border-b\">\n          <tr>\n            <th class=\"px-4 py-2\">Company<\/th>\n            <th class=\"px-4 py-2\">Location<\/th>\n          <\/tr>\n        <\/thead>\n        <tbody id=\"belgieTable\" class=\"divide-y\"><\/tbody>\n      <\/table>\n    <\/div>\n  <\/div>\n\n  <script>\n    const nederlandData = [\n      [\"RS Jachttechniek BV\", \"Aalsmeer\"],\n      [\"Elling Shipbuilding BV\", \"Aalst\"],\n      [\"George Kniest Boat Equipment\", \"Almere\"],\n      [\"RW-outboardservice\", \"Almere\"],\n      [\"Bootschappen.nl\", \"Alkmaar\"],\n      [\"Supreme Boat Cleaning\", \"Arnhem\"],\n      [\"Van der Linden Watersport\", \"Brielle\"],\n      [\"De Bootique\", \"Breskens\"],\n     [\"Bootwassen.nl (Only webshop)\", \"Drachten\"],\n      [\"De Merenpoort BV\", \"Echterbrug\"],\n      [\"Joosten Watersport\", \"Enkhuizen\"],\n      [\"Nauticashop.nl (Only webshop)\", \"Gilze\"],\n      [\"Boottotaal.nl\", \"Hedel\"],\n      [\"L.J. Van der Velde Watersport\", \"Herkingen\"],\n      [\"Reijn\u2019s Boten\", \"Huizen\"],\n      [\"Hermans Marine BV\", \"IJMuiden\"],\n      [\"Hettinga Jachtservice\", \"Heeg\"],\n      [\"Orkaanwind BV\", \"Leeuwarden\"],\n      [\"Hemrik Marine BV\", \"Leeuwarden\"],\n      [\"Sailspecials\", \"Leiderdorp\"],\n      [\"Op Drift Watersport\", \"Lemmer\"],\n      [\"MCK-Suppliers BV\", \"Mijdrecht\"],\n      [\"Sail Shop Medemblik\", \"Medemblik\"],\n      [\"Bola Maritiem BV\", \"Poeldijk\"],\n      [\"Altena Marine BV\", \"Raamsdonkveer\"],\n      [\"Detailing Rental BV\", \"Raamsdonkveer\"],\n      [\"Correct Marine\", \"Rotterdam\"],\n      [\"Kok Watersport\", \"Rotterdam\"],\n      [\"Vrolijk Watersport BV\", \"Scheveningen\"],\n      [\"Watersportcentrum De Liefde\", \"Workum\"],\n      [\"Aquatec Industries BV\", \"Woudsend\"],\n      [\"Wormer Watersport\", \"Wormer\"],\n      [\"Dekker Watersport\", \"Zaandam\"],\n      [\"De Bruyn Watersportservice\", \"Weesp\"],\n      [\"Bootaccessoires Vinkeveen\", \"Vinkeveen\"],\n      [\"Kroese Watersport\", \"Vinkeveen\"],\n      [\"Yachting Willemstad\", \"Willemstad\"]\n    ];\n\n    const belgieData = [\n      [\"Optiteam BvbA\", \"Antwerpen\"],\n      [\"Seashop BvbA\", \"Nieuwpoort\"],\n      [\"Steven Boats\", \"Zeebrugge\"]\n    ];\n\n    function renderTable(data, containerId) {\n      const container = document.getElementById(containerId);\n      container.innerHTML = \"\";\n      data.forEach(([name, city]) => {\n        const row = document.createElement(\"tr\");\n        row.innerHTML = `\n          <td class=\"px-4 py-2\">${name}<\/td>\n          <td class=\"px-4 py-2\">${city}<\/td>\n        `;\n        container.appendChild(row);\n      });\n    }\n\n    function filterTables() {\n      const search = document.getElementById(\"searchInput\").value.toLowerCase();\n      renderTable(\n        nederlandData.filter(([n, c]) =>\n          n.toLowerCase().includes(search) || c.toLowerCase().includes(search)\n        ),\n        \"nederlandTable\"\n      );\n      renderTable(\n        belgieData.filter(([n, c]) =>\n          n.toLowerCase().includes(search) || c.toLowerCase().includes(search)\n        ),\n        \"belgieTable\"\n      );\n    }\n\n    document.getElementById(\"searchInput\").addEventListener(\"input\", filterTables);\n\n    \/\/ Initial render\n    renderTable(nederlandData, \"nederlandTable\");\n    renderTable(belgieData, \"belgieTable\");\n  <\/script>\n<\/body>\n<\/html><\/div><\/div><\/div><\/div><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Watersports Companies Our dealers in The Netherlands &#038; Belgium The Netherlands Company Location Belgium Company Location<\/p>","protected":false},"author":11,"featured_media":0,"parent":8614,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-blank-4.php","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"rs_blank_template":"","rs_page_bg_color":"","slide_template_v7":"","inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-9783","page","type-page","status-publish","hentry","no-post-thumbnail"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Our Dealers in The Netherlands - Dulon Marine<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dulonmarine.com\/sl\/nasi-trgovci\/nizozemska\/\" \/>\n<meta property=\"og:locale\" content=\"sl_SI\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Our Dealers in The Netherlands - Dulon Marine\" \/>\n<meta property=\"og:description\" content=\"Watersports Companies Our dealers in The Netherlands &amp; Belgium The Netherlands Company Location Belgium Company Location\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dulonmarine.com\/sl\/nasi-trgovci\/nizozemska\/\" \/>\n<meta property=\"og:site_name\" content=\"Dulon Marine\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dulonmarine?locale=nl_NL\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-25T13:14:03+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuta\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/our-dealers\\\/the-netherlands\\\/\",\"url\":\"https:\\\/\\\/dulonmarine.com\\\/our-dealers\\\/the-netherlands\\\/\",\"name\":\"Our Dealers in The Netherlands - Dulon Marine\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/#website\"},\"datePublished\":\"2025-04-14T15:06:44+00:00\",\"dateModified\":\"2025-06-25T13:14:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/our-dealers\\\/the-netherlands\\\/#breadcrumb\"},\"inLanguage\":\"sl-SI\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dulonmarine.com\\\/our-dealers\\\/the-netherlands\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/our-dealers\\\/the-netherlands\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dulonmarine.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Our dealers\",\"item\":\"https:\\\/\\\/dulonmarine.com\\\/da\\\/our-dealers\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The Netherlands\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/#website\",\"url\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/\",\"name\":\"Dulon Marine\",\"description\":\"Onderhoudsproducten voor de scheepvaart\",\"publisher\":{\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"sl-SI\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/#organization\",\"name\":\"Dulon Marine Deckmate Group\",\"url\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"sl-SI\",\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/dulonmarine.com\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Dulon-Marine-Deckmate-Group-logo-small.png\",\"contentUrl\":\"http:\\\/\\\/dulonmarine.com\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Dulon-Marine-Deckmate-Group-logo-small.png\",\"width\":350,\"height\":150,\"caption\":\"Dulon Marine Deckmate Group\"},\"image\":{\"@id\":\"https:\\\/\\\/dulonmarine.com\\\/pt\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dulonmarine?locale=nl_NL\",\"https:\\\/\\\/www.instagram.com\\\/dulonmarinegroup\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Na\u0161i trgovci na Nizozemskem - Dulon Marine","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dulonmarine.com\/sl\/nasi-trgovci\/nizozemska\/","og_locale":"sl_SI","og_type":"article","og_title":"Our Dealers in The Netherlands - Dulon Marine","og_description":"Watersports Companies Our dealers in The Netherlands & Belgium The Netherlands Company Location Belgium Company Location","og_url":"https:\/\/dulonmarine.com\/sl\/nasi-trgovci\/nizozemska\/","og_site_name":"Dulon Marine","article_publisher":"https:\/\/www.facebook.com\/dulonmarine?locale=nl_NL","article_modified_time":"2025-06-25T13:14:03+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minuta"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dulonmarine.com\/our-dealers\/the-netherlands\/","url":"https:\/\/dulonmarine.com\/our-dealers\/the-netherlands\/","name":"Na\u0161i trgovci na Nizozemskem - Dulon Marine","isPartOf":{"@id":"https:\/\/dulonmarine.com\/pt\/#website"},"datePublished":"2025-04-14T15:06:44+00:00","dateModified":"2025-06-25T13:14:03+00:00","breadcrumb":{"@id":"https:\/\/dulonmarine.com\/our-dealers\/the-netherlands\/#breadcrumb"},"inLanguage":"sl-SI","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dulonmarine.com\/our-dealers\/the-netherlands\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dulonmarine.com\/our-dealers\/the-netherlands\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dulonmarine.com\/"},{"@type":"ListItem","position":2,"name":"Our dealers","item":"https:\/\/dulonmarine.com\/da\/our-dealers\/"},{"@type":"ListItem","position":3,"name":"The Netherlands"}]},{"@type":"WebSite","@id":"https:\/\/dulonmarine.com\/pt\/#website","url":"https:\/\/dulonmarine.com\/pt\/","name":"Dulon Marine","description":"Onderhoudsproducten voor de scheepvaart","publisher":{"@id":"https:\/\/dulonmarine.com\/pt\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dulonmarine.com\/pt\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"sl-SI"},{"@type":"Organization","@id":"https:\/\/dulonmarine.com\/pt\/#organization","name":"Dulon Marine Skupina Deckmate","url":"https:\/\/dulonmarine.com\/pt\/","logo":{"@type":"ImageObject","inLanguage":"sl-SI","@id":"https:\/\/dulonmarine.com\/pt\/#\/schema\/logo\/image\/","url":"http:\/\/dulonmarine.com\/wp-content\/uploads\/2023\/02\/Dulon-Marine-Deckmate-Group-logo-small.png","contentUrl":"http:\/\/dulonmarine.com\/wp-content\/uploads\/2023\/02\/Dulon-Marine-Deckmate-Group-logo-small.png","width":350,"height":150,"caption":"Dulon Marine Deckmate Group"},"image":{"@id":"https:\/\/dulonmarine.com\/pt\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dulonmarine?locale=nl_NL","https:\/\/www.instagram.com\/dulonmarinegroup\/"]}]}},"_links":{"self":[{"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/pages\/9783","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/comments?post=9783"}],"version-history":[{"count":8,"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/pages\/9783\/revisions"}],"predecessor-version":[{"id":9876,"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/pages\/9783\/revisions\/9876"}],"up":[{"embeddable":true,"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/pages\/8614"}],"wp:attachment":[{"href":"https:\/\/dulonmarine.com\/sl\/wp-json\/wp\/v2\/media?parent=9783"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}