{"id":19295,"date":"2020-02-18T23:32:06","date_gmt":"2020-02-18T15:32:06","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=19295"},"modified":"2020-02-18T16:23:17","modified_gmt":"2020-02-18T08:23:17","slug":"kit-language","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/kit-language\/","title":{"rendered":"A look Into: The Kit Language"},"content":{"rendered":"<p>Let\u2019s say you were building prototypes for a website with <abbr title=\"HyperText Markup Language\">HTML<\/abbr> files. You have about 10 <a target=\"_blank\" href=\"https:\/\/www.hongkiat.com\/blog\/tag\/series-html5-css3-tuts\/\/\" rel=\"noopener noreferrer\">HTML<\/a> pages or so, and these pages share some common components such as Header, Sidebar, and Footer.<\/p>\n<p>Now here comes the problem: <strong>if you make a change in these shared components, you may end up having to change them in the other files<\/strong> as well. It is counterproductive and a big waste of time.<\/p>\n<p>To avoid this, you can try out <strong>templating engines<\/strong>. There are a number of templating engines out there, each with its distinctive features. In this post, we are going to walk you through one that we have found to be the simplest  yet still powerful: <strong>Kit<\/strong>.<\/p>\n<div class=\"ref-block ref-block--post\" id=\"ref-post-1\">\n\t\t\t\t\t<a href=\"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/\" class=\"ref-block__link\" title=\"Read More: Using Kit Language in Windows and Linux\" rel=\"bookmark\"><span class=\"screen-reader-text\">Using Kit Language in Windows and Linux<\/span><\/a>\n<div class=\"ref-block__thumbnail img-thumb img-thumb--jumbo\" data-img='{ \"src\" : \"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/using-kit-in-windows-and-linux.jpg\" }'>\n\t\t\t\t\t\t\t<noscript>\n<style>.no-js #ref-block-post-19776 .ref-block__thumbnail { background-image: url(\"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/using-kit-in-windows-and-linux.jpg\"); }<\/style>\n<\/noscript>\n\t\t\t\t\t\t<\/div>\n<div class=\"ref-block__summary\">\n<h4 class=\"ref-title\">Using Kit Language in Windows and Linux<\/h4>\n<p class=\"ref-description\">\n\t\t\t\t\t\tIn the previous post, we have discussed about Kit, a very simple HTML templating language. If you had...\t\t\t\t\t\t<span>Read more<\/span><\/p>\n<\/div>\n<\/div>\n<h2>What is Kit?<\/h2>\n<p>Kit is a proprietary language of <a href=\"https:\/\/codekitapp.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Codekit<\/a> that brings <strong>variable<\/strong> and file <strong>import<\/strong> ability to HTML. It is written with a <code>.kit<\/code> file extension. Using Codekit, it can then be compiled into an HTML file upon a file save.<\/p>\n<h3>Variables<\/h3>\n<p>Kit variables are not set in stone; they can be defined with the <code>$<\/code> or <code>@<\/code> notation. So, if you use Kit along with <a target=\"_blank\" href=\"https:\/\/www.hongkiat.com\/blog\/less-basic\/\" rel=\"noopener noreferrer\">LESS<\/a>, you can name your variables with the <code>@<\/code> notation to follow the LESS convention. Similarly, you can use the <code>$<\/code> for <a target=\"_blank\" href=\"https:\/\/www.hongkiat.com\/blog\/getting-started-saas\/\" rel=\"noopener noreferrer\">Sass<\/a>. The values can be assigned with colon, equal sign, or space. Below are some examples:<\/p>\n<pre>\r\n&lt;!-- $var: variable value --&gt;\r\n&lt;!-- @var: variable value --&gt;\r\n&lt;!-- $var = variable value --&gt;\r\n&lt;!-- @var = variable value --&gt;\r\n&lt;!-- $var variable value --&gt;\r\n<\/pre>\n<p>However, it is worth noting that you may only set one variable per comment, so the following example won\u2019t work as a variable.<\/p>\n<pre>\r\n&lt;!-- $var1: variable value, @var2: variable value --&gt;\r\n<\/pre>\n<h3>Import<\/h3>\n<p>With the Kit language, you can import any type of file including <code>.html<\/code>, <code>.txt<\/code>, <code>.kit<\/code>, and even <code>.php<\/code>. To import files, you can use <code>@import<\/code> or <code>@include<\/code>.<\/p>\n<pre>\r\n&lt;!-- @import \"file.kit\" --&gt;\r\n&lt;!-- @include \"file.html\" --&gt;\r\n<\/pre>\n<p>Furthermore, unlike defining variables, you can import multiple files in one line, like so:<\/p>\n<pre>\r\n&lt;!-- @import file1.kit, file2.html, inc\/file3.txt --&gt;\r\n<\/pre>\n<p>Upon saving, Codekit will grab the content in these files and append them to the file.<\/p>\n<h2>Using Kit<\/h2>\n<p>So we have seen what Kit has to offer. They may not be much, but they are certainly powerful enough to make life easier when handling a bunch of HTML files.<\/p>\n<p>In a practical scenario, we can break our document down into several files, for example: <code>header.kit<\/code>, <code>sidebar.kit<\/code>, <code>footer.kit<\/code>, <code>head.kit<\/code>, <code>opening.kit<\/code>, and <code>closing.kit<\/code>. We will import these files into our pages so that when we make a change, it will apply on all the pages.<\/p>\n<h3>Document Opening and Closing<\/h3>\n<p>I\u2019m sure the file names are pretty self-explanatory as to what the files are carrying, except (perhaps) the <code>opening.kit<\/code>, and the <code>closing.kit<\/code>.<\/p>\n<p>In our example below, the <code>opening.kit<\/code> file contains the Doctype, the HTML opening tag, and the opening body tag. In this file, we also import the <code>head.kit<\/code> which contains anything that is wrapped within the <code>&lt;head&gt;<\/code> element, and can also define several global variables that can be inherited through all the files, like so:<\/p>\n<pre>\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en-US\"&gt;\r\n&lt;!-- @path_js  : js\/ --&gt;\r\n&lt;!-- @path_css : css\/ --&gt;\r\n&lt;!-- @path_img : img\/ --&gt;\r\n&lt;head&gt;\r\n    &lt;title&gt;&lt;!-- @page_name --&gt; &mdash; Hongkiat.com&lt;\/title&gt;    \r\n    &lt;link href=\"&lt;!-- @path_css --&gt;style.css\" rel=\"stylesheet\" media=\"screen\"&gt;\r\n    &lt;script src=\"&lt;!-- @path_js --&gt;jquery.js\"&gt;&lt;\/script&gt;\r\n&lt;\/head&gt;\r\n\r\n&lt;body class=\"&lt;!-- @body_class --&gt;\"&gt;\r\n<\/pre>\n<p>Note that I also added two variables: <code>@body_class<\/code> in the body tag and <code>@page_name<\/code> in the title tag. These variables will allow us to set different classes and page names across the pages. If we have two pages named <code>index.kit<\/code> and <code>about.kit<\/code>, in each of these files we can set the values of those two variables like so:<\/p>\n<p><strong>index.kit<\/strong><\/p>\n<pre>\r\n&lt;!-- @page_name: Homepage --&gt;\r\n&lt;!-- @body_class: home blog --&gt;\r\n&lt;!-- @include inc\/opening.kit --&gt;\r\n<\/pre>\n<p><strong>about.kit<\/strong><\/p>\n<pre>\r\n&lt;!-- @page_name: About --&gt;\r\n&lt;!-- @body_class: about page page-template --&gt;\r\n&lt;!-- @include inc\/opening.kit --&gt;\r\n<\/pre>\n<p>When we have saved the files, Codekit will replace the variables that we have put in the <code>body<\/code> tag and the <code>title<\/code> with those values. One thing to note though, is that the variables have to <strong>come before<\/strong> the inclusion of <code>opening.kit<\/code>, otherwise they will not be picked up.<\/p>\n<h2>Conclusion<\/h2>\n<p>As previously mentioned, Kit could be the simplest templating language available. It <strong>only uses the HTML comment tag<\/strong>, and gives great flexibility in defining variables and importing files.<\/p>\n<p>Being able to use variables and import files in HTML means that we can  increase our producivity, as we no longer have to change our codes multiple times in multiple files, which is very time-consuming. In addition, it also allows us to make our project modular, and  thus more manageable.<\/p>","protected":false},"excerpt":{"rendered":"<p>Let\u2019s say you were building prototypes for a website with HTML files. You have about 10 HTML pages or so, and these pages share some common components such as Header, Sidebar, and Footer. Now here comes the problem: if you make a change in these shared components, you may end up having to change them&hellip;<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3392],"tags":[506,2969],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>A look Into: The Kit Language - Hongkiat<\/title>\n<meta name=\"description\" content=\"Let&#039;s say you were building prototypes for a website with HTML files. You have about 10 HTML pages or so, and these pages share some common components\" \/>\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.hongkiat.com\/blog\/kit-language\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A look Into: The Kit Language\" \/>\n<meta property=\"og:description\" content=\"Let&#039;s say you were building prototypes for a website with HTML files. You have about 10 HTML pages or so, and these pages share some common components\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/kit-language\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-18T15:32:06+00:00\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"A look Into: The Kit Language\",\"datePublished\":\"2020-02-18T15:32:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/\"},\"wordCount\":630,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"keywords\":[\"HTML\",\"Kit\"],\"articleSection\":[\"Coding\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/\",\"name\":\"A look Into: The Kit Language - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"datePublished\":\"2020-02-18T15:32:06+00:00\",\"description\":\"Let's say you were building prototypes for a website with HTML files. You have about 10 HTML pages or so, and these pages share some common components\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/kit-language\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A look Into: The Kit Language\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"A look Into: The Kit Language - Hongkiat","description":"Let's say you were building prototypes for a website with HTML files. You have about 10 HTML pages or so, and these pages share some common components","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.hongkiat.com\/blog\/kit-language\/","og_locale":"en_US","og_type":"article","og_title":"A look Into: The Kit Language","og_description":"Let's say you were building prototypes for a website with HTML files. You have about 10 HTML pages or so, and these pages share some common components","og_url":"https:\/\/www.hongkiat.com\/blog\/kit-language\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2020-02-18T15:32:06+00:00","author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/kit-language\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/kit-language\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"A look Into: The Kit Language","datePublished":"2020-02-18T15:32:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/kit-language\/"},"wordCount":630,"commentCount":6,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"keywords":["HTML","Kit"],"articleSection":["Coding"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/kit-language\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/kit-language\/","url":"https:\/\/www.hongkiat.com\/blog\/kit-language\/","name":"A look Into: The Kit Language - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"datePublished":"2020-02-18T15:32:06+00:00","description":"Let's say you were building prototypes for a website with HTML files. You have about 10 HTML pages or so, and these pages share some common components","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/kit-language\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/kit-language\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/kit-language\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"A look Into: The Kit Language"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-51d","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19295","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=19295"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19295\/revisions"}],"predecessor-version":[{"id":49421,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19295\/revisions\/49421"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=19295"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=19295"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=19295"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=19295"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}