{"id":8269,"date":"2022-11-05T21:42:52","date_gmt":"2022-11-05T21:42:52","guid":{"rendered":"https:\/\/www.arnold-robot.com\/zoznam-tem\/"},"modified":"2022-12-07T09:50:51","modified_gmt":"2022-12-07T09:50:51","slug":"zoznam-tem","status":"publish","type":"page","link":"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/","title":{"rendered":"Zoznam t\u00e9m"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"8269\" class=\"elementor elementor-8269 elementor-7960\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-0c860df elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"0c860df\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-06d01ec\" data-id=\"06d01ec\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b1f5877 elementor-hidden-phone elementor-widget elementor-widget-spacer\" data-id=\"b1f5877\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7241e2 elementor-widget elementor-widget-heading\" data-id=\"a7241e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Zoznam t\u00e9m<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5bc5127 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5bc5127\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6ffeadc\" data-id=\"6ffeadc\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-bac711a elementor-widget elementor-widget-html\" data-id=\"bac711a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"topics-root\"><\/div>\r\n\r\n<script>\r\nconst categoryOrder = [\r\n  'hiring',\r\n  'onboard',\r\n  {\r\n    categoryName: 'Rozvoj a spokojenost',\r\n    \/\/ categoryName: 'Satisfaction and Development',\r\n    items: [\r\n      'devel',\r\n      'culture',\r\n      'prod',\r\n      'motiv',\r\n      'succ',\r\n      'change',\r\n      'remote',\r\n      'reten',\r\n    ]\r\n  },\r\n  'attr',\r\n  'offboard',\r\n];\r\n\r\ninitTopics('sk', location.host.includes('arnold-robot.com'));\r\n\r\nfunction initTopics(lang, isProd) {\r\n  if (!isProd) {\r\n    const localData = `.\/js\/data_${lang}.json`;\r\n    fetch(localData)\r\n      .then(response => response.json())\r\n      .then(result => renderPage(result, 'topics-root'))\r\n      .catch(error => console.log('error', error));\r\n  } else {\r\n    getData(lang, data => renderPage(data, 'topics-root'));\r\n  }\r\n}\r\n\r\nfunction getData(lang, done) {\r\n  const myHeaders = new Headers();\r\n  myHeaders.append(\"Content-Type\", \"application\/json\");\r\n\r\n  const graphql = JSON.stringify({\r\n    query: `{\\r\\n  publicTopicGroups(language: \\\"${lang}\\\") {\\r\\n    id\\r\\n    name\\r\\n    description\\r\\n    categoryName\\r\\n    categoryCode\\r\\n    process\\r\\n    steps {\\r\\n      id\\r\\n      name\\r\\n      description\\r\\n      categoryName\\r\\n      process\\r\\n      categoryCode\\r\\n    }\\r\\n  }\\r\\n}`,\r\n    variables: {}\r\n  })\r\n  const requestOptions = {\r\n    method: 'POST',\r\n    headers: myHeaders,\r\n    body: graphql,\r\n    redirect: 'follow'\r\n  };\r\n\r\n  fetch(\"https:\/\/api.arnold-robot.com\/graphql\", requestOptions)\r\n    .then(response => response.json())\r\n    .then(result => done(result))\r\n    .catch(error => console.log('error', error));\r\n}\r\n\r\nfunction getCategoryName(topicsByCategory, categoryCode) {\r\n  if (topicsByCategory[categoryCode]) {\r\n    return topicsByCategory[categoryCode][0]['categoryName'];\r\n  }\r\n  return false;\r\n}\r\n\r\nfunction renderPage(data, containerId) {\r\n  const container = document.getElementById(containerId);\r\n  const topics = data?.data?.publicTopicGroups;\r\n  \r\n  const topicsByCategory = topics.reduce((accumulator, current) => {\r\n    if (!Array.isArray(accumulator[current.categoryCode])) {\r\n      accumulator[current.categoryCode] = [];\r\n    }\r\n    accumulator[current.categoryCode].push(current);\r\n    return accumulator;\r\n  }, {});\r\n\r\n  \/\/ console.log(topicsByCategory);\r\n\r\n  const html = `\r\n  <div class=\"topic-list\">\r\n    <div class=\"topic-list__aside\">\r\n      ${renderNav(topicsByCategory)}\r\n    <\/div>\r\n    <div class=\"topic-list__main\">\r\n      ${renderTopics(topicsByCategory)}\r\n    <\/div>\r\n  <\/div>\r\n  `;\r\n\r\n  container.innerHTML = html;\r\n  sectionObserver();\r\n}\r\n\r\nfunction renderNav(topicsByCategory) {\r\n  \/\/ const menuItems = Object.keys(topicsByCategory).map(categoryCode => {\r\n  \/\/   const topics = topicsByCategory[categoryCode];\r\n  \/\/   const topicsCount = topics[0].process ? topics[0].steps.length : topics.length;\r\n  \/\/\r\n  \/\/   \/\/ console.log(topics);\r\n  \/\/  \r\n  \/\/   return `<li><a href=\"#${topics[0].categoryCode}\">${topics[0].categoryName} (${topicsCount})<\/a><\/li>`;\r\n  \/\/ });\r\n  \r\n  const menuItems = categoryOrder.map(category => {\r\n    if (typeof category === 'string') {\r\n      const categoryName = getCategoryName(topicsByCategory, category);\r\n      if (!categoryName) return;\r\n      return `<li><a href=\"#${category}\">${categoryName}<\/a><\/li>`;\r\n    } else {\r\n      \/\/ submenu\r\n      const items = category['items'].map(item => `<li><a href=\"#${item}\">${getCategoryName(topicsByCategory, item)}<\/a><\/li>`).join('');\r\n      \r\n      return `\r\n      <li>\r\n        <span>${category['categoryName']}<\/span>\r\n        <ul>\r\n          ${items}\r\n        <\/ul>\r\n      <\/li>`;\r\n    }\r\n  }).join('');\r\n  \r\n  \/\/ Automat\r\n  \/*\r\n  return `\r\n  <nav class=\"topic-nav\">\r\n    <ul>${menuItems.join('')}<\/ul>\r\n  <\/nav>\r\n  `;\r\n   *\/\r\n\r\n  return `\r\n    <nav class=\"topic-nav\">\r\n      <ul>\r\n        ${menuItems}\r\n      <\/ul>\r\n    <\/nav>\r\n  `;\r\n}\r\n\r\nfunction renderTopics(topicsByCategory) {\r\n  const flatCategories = categoryOrder.map(category => {\r\n    if (category['items']) {\r\n      return category['items'];\r\n    } else {\r\n      return category;\r\n    }\r\n  }).flat();\r\n\r\n  const categories = flatCategories.map(categoryCode => {\r\n    if (!Array.isArray(topicsByCategory[categoryCode])) return;\r\n    const topics = topicsByCategory[categoryCode];\r\n\r\n    return renderTopicCategory(topics);\r\n  });\r\n  \r\n  return categories.join('');\r\n}\r\n\r\nfunction renderTopicCategory(topics) {\r\n  if (topics.length < 1) return;\r\n  \r\n  return `\r\n  <div class=\"topic-list__category\" id=\"${topics[0]['categoryCode']}\">\r\n    <h2 class=\"topic-list__category-heading\">${topics[0]['categoryName']}<\/h2>\r\n\r\n    <div class=\"topic-list__category-list\">\r\n      ${renderTopicCards(topics)}\r\n    <\/div>\r\n  <\/div>\r\n  `\r\n}\r\n\r\nfunction renderTopicCards(topics) {\r\n  return topics.map(topic => {\r\n    if (topic.process === true && Array.isArray(topic.steps)) {\r\n      const parentTopic = topic;\r\n      return topic.steps.map(topic => renderTopicCard(topic, parentTopic)).join('');\r\n    } else {\r\n      return renderTopicCard(topic);\r\n    }\r\n  }).join('');\r\n}\r\n\r\nfunction renderTopicCard(topic, parentTopic) {\r\n  if (parentTopic) {\r\n    topic.categoryName =  parentTopic.categoryName;\r\n    topic.categoryCode =  parentTopic.categoryCode;\r\n  }\r\n  return `\r\n  <div class=\"topic-card topic-card--${topic.categoryCode}\" data-id=\"${topic.id}\">\r\n    <div class=\"topic-card__header\">\r\n      <span class=\"topic-card__category\">${topic.categoryName}<\/span>\r\n    <\/div>\r\n    <div class=\"topic-card__body\">\r\n      <h3 class=\"topic-card__heading\">${topic.name}<\/h3>\r\n      <p class=\"topic-card__description\">${topic.description}<\/p>\r\n    <\/div>\r\n  <\/div>\r\n  `;\r\n}\r\n\r\nfunction sectionObserver() {\r\n  const triggers = [...document.querySelectorAll('.topic-nav a')];\r\n  const targets = [...document.querySelectorAll('.topic-list__category')];\r\n  const activeClass = 'active';\r\n  let targetRatios = {};\r\n  let clickPrevTrigger;\r\n  let clickTargetId;\r\n\r\n  const IntersectionObserverOptions = {\r\n    root: null,\r\n    rootMargin: '0px',\r\n    threshold: thresholdArray(10)\r\n  };\r\n\r\n  triggers.forEach(trigger => trigger.addEventListener('click', handleTriggerClick));\r\n  \r\n  function handleTriggerClick(e) {\r\n    const prevTrigger = triggers.find(trigger => trigger.classList.contains(activeClass));\r\n    const nextTrigger = e.target;\r\n    clickPrevTrigger = prevTrigger;\r\n    clickTargetId = nextTrigger.hash;\r\n    switchActive(prevTrigger, nextTrigger);\r\n  }\r\n\r\n  function callback(entries) {\r\n    entries.forEach(entry => {\r\n      targetRatios[entry.target.id] = entry.intersectionRatio;\r\n    });\r\n\r\n    const ratios = Object.values(targetRatios);\r\n    const targetId = '#' + getLastKeyByValue(targetRatios, Math.max(...ratios));\r\n    const prevTrigger = clickPrevTrigger || triggers.find(trigger => trigger.classList.contains(activeClass));\r\n    const nextTrigger = triggers.find(trigger => trigger.hash === targetId);\r\n\r\n    if (clickPrevTrigger && targetId !== clickTargetId) return;\r\n    if (prevTrigger === nextTrigger) return;\r\n\r\n    switchActive(prevTrigger, nextTrigger);\r\n\r\n    clickPrevTrigger = null;\r\n  }\r\n\r\n  const observer = new IntersectionObserver(callback, IntersectionObserverOptions);\r\n  targets.forEach(target => {\r\n    observer.observe(target);\r\n  });\r\n\r\n  function switchActive(prev, next) {\r\n    if (prev) {\r\n      prev.classList.remove(activeClass);\r\n    }\r\n    if (next) {\r\n      next.classList.add(activeClass);\r\n    }\r\n  }\r\n\r\n  function thresholdArray(steps) {\r\n    return Array(steps + 1)\r\n      .fill(0)\r\n      .map((_, index) => index \/ steps || 0);\r\n  }\r\n\r\n  function getLastKeyByValue(object, value) {\r\n    return Object.keys(object).findLast(key => object[key] === value);\r\n  }\r\n}\r\n\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Zoznam t\u00e9m<\/p>\n","protected":false},"author":17,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-8269","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Zoznam t\u00e9m - Arnold Robot<\/title>\n<meta name=\"description\" content=\"Zoznam t\u00e9m\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/\" \/>\n<meta property=\"og:locale\" content=\"sk_SK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Zoznam t\u00e9m - Arnold Robot\" \/>\n<meta property=\"og:description\" content=\"Zoznam t\u00e9m\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/\" \/>\n<meta property=\"og:site_name\" content=\"Arnold Robot\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Arnold-Robot-411681249444594\/\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-07T09:50:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.arnold-robot.com\/wp-content\/uploads\/2020\/10\/ShareTag-EN.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/zoznam-tem\\\/\",\"url\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/zoznam-tem\\\/\",\"name\":\"Zoznam t\u00e9m - Arnold Robot\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/#website\"},\"datePublished\":\"2022-11-05T21:42:52+00:00\",\"dateModified\":\"2022-12-07T09:50:51+00:00\",\"description\":\"Zoznam t\u00e9m\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/zoznam-tem\\\/#breadcrumb\"},\"inLanguage\":\"sk-SK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/zoznam-tem\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/zoznam-tem\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Zoznam t\u00e9m\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/#website\",\"url\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/\",\"name\":\"Arnold Robot\",\"description\":\"Employee surveys reinvented\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"sk-SK\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/#organization\",\"name\":\"Arnold Robot\",\"url\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"sk-SK\",\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.arnold-robot.com\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/arnold_logo_A.png\",\"contentUrl\":\"https:\\\/\\\/www.arnold-robot.com\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/arnold_logo_A.png\",\"width\":1808,\"height\":906,\"caption\":\"Arnold Robot\"},\"image\":{\"@id\":\"https:\\\/\\\/www.arnold-robot.com\\\/sk\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Arnold-Robot-411681249444594\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/arnold-robot\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Zoznam t\u00e9m - Arnold Robot","description":"Zoznam t\u00e9m","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:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/","og_locale":"sk_SK","og_type":"article","og_title":"Zoznam t\u00e9m - Arnold Robot","og_description":"Zoznam t\u00e9m","og_url":"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/","og_site_name":"Arnold Robot","article_publisher":"https:\/\/www.facebook.com\/Arnold-Robot-411681249444594\/","article_modified_time":"2022-12-07T09:50:51+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.arnold-robot.com\/wp-content\/uploads\/2020\/10\/ShareTag-EN.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/","url":"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/","name":"Zoznam t\u00e9m - Arnold Robot","isPartOf":{"@id":"https:\/\/www.arnold-robot.com\/sk\/#website"},"datePublished":"2022-11-05T21:42:52+00:00","dateModified":"2022-12-07T09:50:51+00:00","description":"Zoznam t\u00e9m","breadcrumb":{"@id":"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/#breadcrumb"},"inLanguage":"sk-SK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.arnold-robot.com\/sk\/zoznam-tem\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.arnold-robot.com\/sk\/"},{"@type":"ListItem","position":2,"name":"Zoznam t\u00e9m"}]},{"@type":"WebSite","@id":"https:\/\/www.arnold-robot.com\/sk\/#website","url":"https:\/\/www.arnold-robot.com\/sk\/","name":"Arnold Robot","description":"Employee surveys reinvented","publisher":{"@id":"https:\/\/www.arnold-robot.com\/sk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.arnold-robot.com\/sk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"sk-SK"},{"@type":"Organization","@id":"https:\/\/www.arnold-robot.com\/sk\/#organization","name":"Arnold Robot","url":"https:\/\/www.arnold-robot.com\/sk\/","logo":{"@type":"ImageObject","inLanguage":"sk-SK","@id":"https:\/\/www.arnold-robot.com\/sk\/#\/schema\/logo\/image\/","url":"https:\/\/www.arnold-robot.com\/wp-content\/uploads\/2019\/10\/arnold_logo_A.png","contentUrl":"https:\/\/www.arnold-robot.com\/wp-content\/uploads\/2019\/10\/arnold_logo_A.png","width":1808,"height":906,"caption":"Arnold Robot"},"image":{"@id":"https:\/\/www.arnold-robot.com\/sk\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Arnold-Robot-411681249444594\/","https:\/\/www.linkedin.com\/company\/arnold-robot\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/pages\/8269","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/comments?post=8269"}],"version-history":[{"count":2,"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/pages\/8269\/revisions"}],"predecessor-version":[{"id":8279,"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/pages\/8269\/revisions\/8279"}],"wp:attachment":[{"href":"https:\/\/www.arnold-robot.com\/sk\/wp-json\/wp\/v2\/media?parent=8269"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}