{"id":2817,"date":"2023-03-13T15:13:39","date_gmt":"2023-03-13T13:13:39","guid":{"rendered":"http:\/\/triplewebsites.com\/?page_id=2817"},"modified":"2023-04-20T14:33:22","modified_gmt":"2023-04-20T11:33:22","slug":"qr-code","status":"publish","type":"page","link":"https:\/\/triplewebsites.com\/el\/qr-code\/","title":{"rendered":"QR Code Generator"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2817\" class=\"elementor elementor-2817\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f16bf44 elementor-section-height-min-height elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-items-middle elementor-invisible\" data-id=\"f16bf44\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-90fb854\" data-id=\"90fb854\" 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-0462cac elementor-widget elementor-widget-heading\" data-id=\"0462cac\" 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\">QR Code Generator<\/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-836ac1c elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"836ac1c\" 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-14a0eb8\" data-id=\"14a0eb8\" 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-1799750 elementor-widget elementor-widget-html\" data-id=\"1799750\" 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<html>\r\n    <head>\r\n        \r\n  <script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/qrcodejs\/1.0.0\/qrcode.min.js\" integrity=\"sha512-CNgIRecGo7nphbeZ04Sc13ka07paqdeTu0WR1IM4kNcpmBAUSHSQX0FslNhTDadL4O5SAGapGt4FodqL8My0mA==\" crossorigin=\"anonymous\" referrerpolicy=\"no-referrer\"><\/script> \r\n    \r\n    <\/head>\r\n    \r\n<body>\r\n   \r\n <div><center>\r\n  <input style=\"width: 500px;\" type=\"text\" id=\"qr-input\" placeholder=\"Enter text to generate QR code\">\r\n  <br>\r\n  <button style= \"margin:15px;\" id=\"generate-btn\">Generate<\/button>\r\n \r\n  <div id=\"qrcode\"><\/div>\r\n   <br><button id=\"download-btn\">\r\n      Download<\/button>\r\n  <\/center>\r\n<\/div>\r\n\r\n <script>\r\n \r\n let qr = document.getElementById('qrcode');\r\n \r\n \r\n      function generateQRCode() {\r\n        \/\/ Get the text to encode from the input field\r\n        \r\n        var textToEncode = document.getElementById('qr-input').value;\r\n        if (!textToEncode) {\r\n          alert('Please enter text to generate QR code');\r\n          return;\r\n        }\r\n        \r\nclearUI();\r\n\r\n        \/\/ Generate the QR code and display it on the page\r\n        var qrcode = new QRCode(document.getElementById(\"qrcode\"), {\r\n          text: textToEncode,\r\n          width: 256,\r\n          height: 256,\r\n          colorDark: \"#000000\",\r\n          colorLight: \"#ffffff\"\r\n        });\r\n      }\r\n      \r\n      const clearUI = () => {\r\n          qr.innerHTML='';\r\n      }\r\n    \r\n      \/\/ Add an event listener to the Generate button\r\n      document.getElementById('generate-btn').addEventListener('click', generateQRCode);\r\n      \r\n      \r\n        \/\/ Add an event listener to the input field for the 'keydown' event\r\n  document.getElementById('qr-input').addEventListener('keydown', function(event) {\r\n    \/\/ Check if the key pressed is the Enter key\r\n    if (event.keyCode === 13) {\r\n      generateQRCode();\r\n    }\r\n  });\r\n     \r\n     \/\/ Add an event listener to the Download button\r\ndocument.getElementById('download-btn').addEventListener('click', function() {\r\n\r\n  \/\/ Wait for the QR code to be generated\r\n  setTimeout(function() {\r\n\r\n    \/\/ Get the QR code image data\r\n    var qrCodeData = document.getElementById('qrcode').getElementsByTagName('img')[0].src;\r\n    if (!qrCodeData) {\r\n      alert('Please generate a QR code before downloading');\r\n      return;\r\n    }\r\n\r\n    \/\/ Create an img element with the QR code data\r\n    var qrCodeImg = document.createElement('img');\r\n    qrCodeImg.src = qrCodeData;\r\n\r\n    \/\/ Create a temporary link and download the image\r\n    var downloadLink = document.createElement('a');\r\n    downloadLink.href = qrCodeImg.src;\r\n    downloadLink.download = 'qrcode.png';\r\n    downloadLink.click();\r\n\r\n  }, 500);\r\n});\r\n       \r\n    <\/script>\r\n<\/body>\r\n<\/html>\r\n\r\n\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>QR Code Generator Generate Download<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_theme","meta":{"_monsterinsights_skip_tracking":false,"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ngg_post_thumbnail":0,"footnotes":""},"class_list":["post-2817","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/triplewebsites.com\/el\/qr-code\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"el_GR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Triple Websites | TripleWebsites\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development\" \/>\n\t\t<meta property=\"og:description\" content=\"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/triplewebsites.com\/el\/qr-code\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-03-13T13:13:39+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-04-20T11:33:22+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/triplewebsites\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@triplewebsites\" \/>\n\t\t<meta name=\"twitter:title\" content=\"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development\" \/>\n\t\t<meta name=\"twitter:description\" content=\"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@triplewebsites\" \/>\n\t\t<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t\t<meta name=\"twitter:data1\" content=\"Triple Websites\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/triplewebsites.com\\\/el\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/#listItem\",\"name\":\"QR Code Generator\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/#listItem\",\"position\":2,\"name\":\"QR Code Generator\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/#organization\",\"name\":\"Triple Websites\",\"description\":\"We can design your website beyond your imagination. Based in Limassol, Cyprus. Providing Web design, Website development, web hosting, domain, security, support, TripleWebsites, Triple Websites, tech support, Cyprus, cy, limassol, paphos, larnaca, nicosia, lemesos, pafos, lefkosia, web development, website design, cy, kipros\",\"url\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/\",\"telephone\":\"+35797936626\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/triplewebsites.com\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/3W-DOWN-1.png\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/#organizationLogo\",\"width\":557,\"height\":419,\"caption\":\"Triple Websites | TripleWebsites\"},\"image\":{\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/triplewebsites\",\"https:\\\/\\\/twitter.com\\\/triplewebsites\",\"https:\\\/\\\/instagram.com\\\/triplewebsites\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/triple-websites\"]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/#webpage\",\"url\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/\",\"name\":\"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development\",\"description\":\"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.\",\"inLanguage\":\"el\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/qr-code\\\/#breadcrumblist\"},\"datePublished\":\"2023-03-13T15:13:39+02:00\",\"dateModified\":\"2023-04-20T14:33:22+03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/#website\",\"url\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/\",\"name\":\"Website Development | Web Design | Triple Websites | TripleWebsites\",\"alternateName\":\"3W\",\"description\":\"We can design your website beyond your imagination. Based in Limassol, Cyprus. Providing Web design, Website development, web hosting, domain, security, support, TripleWebsites, Triple Websites, tech support, Cyprus, cy, limassol, paphos, larnaca, nicosia, lemesos, pafos, lefkosia, web development, website design, cy, kipros\",\"inLanguage\":\"el\",\"publisher\":{\"@id\":\"https:\\\/\\\/triplewebsites.com\\\/el\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development","description":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.","canonical_url":"https:\/\/triplewebsites.com\/el\/qr-code\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/triplewebsites.com\/el\/qr-code\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/triplewebsites.com\/el#listItem","position":1,"name":"Home","item":"https:\/\/triplewebsites.com\/el","nextItem":{"@type":"ListItem","@id":"https:\/\/triplewebsites.com\/el\/qr-code\/#listItem","name":"QR Code Generator"}},{"@type":"ListItem","@id":"https:\/\/triplewebsites.com\/el\/qr-code\/#listItem","position":2,"name":"QR Code Generator","previousItem":{"@type":"ListItem","@id":"https:\/\/triplewebsites.com\/el#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/triplewebsites.com\/el\/#organization","name":"Triple Websites","description":"We can design your website beyond your imagination. Based in Limassol, Cyprus. Providing Web design, Website development, web hosting, domain, security, support, TripleWebsites, Triple Websites, tech support, Cyprus, cy, limassol, paphos, larnaca, nicosia, lemesos, pafos, lefkosia, web development, website design, cy, kipros","url":"https:\/\/triplewebsites.com\/el\/","telephone":"+35797936626","logo":{"@type":"ImageObject","url":"https:\/\/triplewebsites.com\/wp-content\/uploads\/2022\/12\/3W-DOWN-1.png","@id":"https:\/\/triplewebsites.com\/el\/qr-code\/#organizationLogo","width":557,"height":419,"caption":"Triple Websites | TripleWebsites"},"image":{"@id":"https:\/\/triplewebsites.com\/el\/qr-code\/#organizationLogo"},"sameAs":["https:\/\/facebook.com\/triplewebsites","https:\/\/twitter.com\/triplewebsites","https:\/\/instagram.com\/triplewebsites","https:\/\/www.linkedin.com\/company\/triple-websites"]},{"@type":"WebPage","@id":"https:\/\/triplewebsites.com\/el\/qr-code\/#webpage","url":"https:\/\/triplewebsites.com\/el\/qr-code\/","name":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development","description":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.","inLanguage":"el","isPartOf":{"@id":"https:\/\/triplewebsites.com\/el\/#website"},"breadcrumb":{"@id":"https:\/\/triplewebsites.com\/el\/qr-code\/#breadcrumblist"},"datePublished":"2023-03-13T15:13:39+02:00","dateModified":"2023-04-20T14:33:22+03:00"},{"@type":"WebSite","@id":"https:\/\/triplewebsites.com\/el\/#website","url":"https:\/\/triplewebsites.com\/el\/","name":"Website Development | Web Design | Triple Websites | TripleWebsites","alternateName":"3W","description":"We can design your website beyond your imagination. Based in Limassol, Cyprus. Providing Web design, Website development, web hosting, domain, security, support, TripleWebsites, Triple Websites, tech support, Cyprus, cy, limassol, paphos, larnaca, nicosia, lemesos, pafos, lefkosia, web development, website design, cy, kipros","inLanguage":"el","publisher":{"@id":"https:\/\/triplewebsites.com\/el\/#organization"}}]},"og:locale":"el_GR","og:site_name":"Triple Websites | TripleWebsites","og:type":"article","og:title":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development","og:description":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.","og:url":"https:\/\/triplewebsites.com\/el\/qr-code\/","article:published_time":"2023-03-13T13:13:39+00:00","article:modified_time":"2023-04-20T11:33:22+00:00","article:publisher":"https:\/\/facebook.com\/triplewebsites","twitter:card":"summary_large_image","twitter:site":"@triplewebsites","twitter:title":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development","twitter:description":"QR Code Generator | Triple Websites | TripleWebsites | Web design | Website development Based in Limassol, Cyprus. Create your ideal website with Triple Websites.","twitter:creator":"@triplewebsites","twitter:label1":"Written by","twitter:data1":"Triple Websites"},"aioseo_meta_data":{"post_id":"2817","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-03-13 13:13:42","updated":"2025-06-04 12:53:44","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/triplewebsites.com\/el\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tQR Code Generator\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/triplewebsites.com\/el"},{"label":"QR Code Generator","link":"https:\/\/triplewebsites.com\/el\/qr-code\/"}],"_links":{"self":[{"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/pages\/2817","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/comments?post=2817"}],"version-history":[{"count":238,"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/pages\/2817\/revisions"}],"predecessor-version":[{"id":3192,"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/pages\/2817\/revisions\/3192"}],"wp:attachment":[{"href":"https:\/\/triplewebsites.com\/el\/wp-json\/wp\/v2\/media?parent=2817"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}