{"id":19776,"date":"2014-04-09T21:01:38","date_gmt":"2014-04-09T13:01:38","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=19776"},"modified":"2025-04-04T01:44:00","modified_gmt":"2025-04-03T17:44:00","slug":"using-kit-in-windows-and-linux","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/","title":{"rendered":"Using Kit Language in Windows and Linux"},"content":{"rendered":"<p>In the previous post, we have discussed about <a target=\"_blank\" href=\"https:\/\/www.hongkiat.com\/blog\/kit-language\/\" rel=\"noopener\">Kit<\/a>, a very simple HTML templating language. If you had been following this, you should find that the GUI application which is capable of compiling Kit into browser-compliant HTML format is <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/codekitapp.com\/\">Codekit<\/a>.<\/p>\n<p>Unfortunately, Codekit, is only available for OS X, there is currently no similar application for Windows and Linux that support Kit.<\/p>\n<p>If you are working in Windows and Linux machine, yet would like to use Kit, you can use Grunt as an alternative. Grunt has <strong>a massive collection of plugins<\/strong>, contributed by generous developers around the world \u2014 this includes the plugin to compile Kit language, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.npmjs.com\/package\/grunt-codekit\">grunt-codekit<\/a>. Let\u2019s check it out.<\/p>\n<p><strong>Note:<\/strong> Even though the following tip is primarily aimed to show Windows and Linux users an alternative to Codekit, OS X user can also use it.<\/p>\n<h2>Getting Started<\/h2>\n<p>First, we will create a directory for our project. Let\u2019s launch Terminal or Command Prompt, and type the following command lines:<\/p>\n<pre>\r\n mkdir kit-grunt\r\n cd kit-grunt\r\n <\/pre>\n<p>We have created a new directory named <strong>kit-grunt<\/strong>; the second line lets us enter it. But if you have previously created a project directory, you may skip the first line, and immediately navigate to your own directory in Terminal with the <code>cd<\/code> command.<\/p>\n<p>Within the project directory, we create a new folder named <strong>kit<\/strong> where we will put the <code>.kit<\/code> files. Type this command below:<\/p>\n<pre>\r\n mkdir kit\r\n <\/pre>\n<p>We then also install both Grunt and the plugin, with these commands. <strong>Note that you have to install Node.js in your system first.<\/strong><\/p>\n<pre>\r\n npm install grunt --save-dev\r\n npm install grunt-codekit --save-dev\r\n <\/pre>\n<p>Once the process is completed you will find a new folder, node_modules, containing the modules that we have installed.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/project-directory.jpg\" height=\"120\" width=\"500\" alt=\"project dir\"><\/figure>\n<h2>Configuration<\/h2>\n<p>Create a new file named Gruntfile.js in the project directory, and put the following code in. This code is a <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/gruntjs.com\/getting-started#an-example-gruntfile\">Grunt Wrapper<\/a> where we will register, configure and execute Grunt task. If you are using Sublime Text, you can easily insert this code using the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/devatrox\/grunt-sublime-snippets\">Grunt Snippets<\/a>.<\/p>\n<pre>\r\n module.exports = function(grunt) {\r\n grunt.initConfig({\r\n \r\n }); \r\n }\r\n <\/pre>\n<p>Then we define the <code>codekit<\/code> task within the <code>grunt.initConfig<\/code>, like so.<\/p>\n<pre>\r\n module.exports = function(grunt) {\r\n grunt.initConfig({\r\n codekit: {\r\n your_target: {\r\n files : {\r\n 'index.html' : 'kit\/index.kit',\r\n }\r\n },\r\n },\r\n }); \r\n }\r\n <\/pre>\n<p>This configuration will compile index.kit into index.html. To try this out, we can add this in index.kit.<\/p>\n<pre>\r\n &lt;!-- @var = This is the variable --&gt;\r\n &lt;p&gt;&lt;!-- @var --&gt;&lt;\/p&gt;\r\n <\/pre>\n<p>\u2026and run <code>grunt codekit<\/code> in Terminal.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/grunt-run.jpg\" height=\"150\" width=\"500\" alt=\"grunt run\"><\/figure>\n<p>The index.html is successfully generated and as you can see below, the variable\u2019s value is also successfully applied within the paragraph tag.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/variable-tag.jpg\" height=\"120\" width=\"500\" alt=\"variable tag\"><\/figure>\n<h2>File Inclusion<\/h2>\n<p>As we have mentioned in our previous post, we can include\/import files into a Kit file. Given that we have header.kit, sidebar.kit, and footer.kit (I assume that we have added corresponding content within these files), we can include them into index.kit, like so.<\/p>\n<pre>\r\n &lt;!-- @include inc\/header.kit --&gt;\r\n &lt;div class=\"container\"&gt;\r\n &lt;div class=\"header row\"&gt;\r\n &lt;h1&gt;This is the header&lt;\/h1&gt;\r\n &lt;\/div&gt;\r\n &lt;div class=\"row\"&gt;\r\n &lt;div class=\"col-md-8\"&gt;\r\n &lt;p&gt;This is the content&lt;\/p&gt;\r\n &lt;\/div&gt;\r\n &lt;!-- @include inc\/sidebar.kit --&gt; \r\n &lt;\/div&gt;\r\n &lt;\/div&gt;\r\n &lt;!-- @include inc\/footer.kit --&gt;\r\n <\/pre>\n<p>Let\u2019s run the <code>grunt codekit<\/code> command again in Terminal. And here we go! The content from those files are put together into index.html. Nice!<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/import.jpg\" height=\"320\" width=\"500\" alt=\"import\"><\/figure>\n<h2>Conclusion<\/h2>\n<p>Grunt is a great alternative to many web development tools, including compiling Kit file. I hope this tip is useful, particularly for Windows and Linux users who want to get their hands on Kit language.<\/p>","protected":false},"excerpt":{"rendered":"<p>In the previous post, we have discussed about Kit, a very simple HTML templating language. If you had been following this, you should find that the GUI application which is capable of compiling Kit into browser-compliant HTML format is Codekit. Unfortunately, Codekit, is only available for OS X, there is currently no similar application for&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":[3397],"tags":[2969,888,171],"topic":[4520,4521],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Using Kit Language in Windows and Linux - Hongkiat<\/title>\n<meta name=\"description\" content=\"In the previous post, we have discussed about Kit, a very simple HTML templating language. If you had been following this, you should find that the GUI\" \/>\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\/using-kit-in-windows-and-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Kit Language in Windows and Linux\" \/>\n<meta property=\"og:description\" content=\"In the previous post, we have discussed about Kit, a very simple HTML templating language. If you had been following this, you should find that the GUI\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/\" \/>\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=\"2014-04-09T13:01:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T17:44:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/project-directory.jpg\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"Using Kit Language in Windows and Linux\",\"datePublished\":\"2014-04-09T13:01:38+00:00\",\"dateModified\":\"2025-04-03T17:44:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/\"},\"wordCount\":492,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/using-kit-in-windows-and-linux\\\/project-directory.jpg\",\"keywords\":[\"Kit\",\"Linux\",\"Microsoft Windows\"],\"articleSection\":[\"Desktop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/\",\"name\":\"Using Kit Language in Windows and Linux - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/using-kit-in-windows-and-linux\\\/project-directory.jpg\",\"datePublished\":\"2014-04-09T13:01:38+00:00\",\"dateModified\":\"2025-04-03T17:44:00+00:00\",\"description\":\"In the previous post, we have discussed about Kit, a very simple HTML templating language. If you had been following this, you should find that the GUI\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/using-kit-in-windows-and-linux\\\/project-directory.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/using-kit-in-windows-and-linux\\\/project-directory.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/using-kit-in-windows-and-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Kit Language in Windows and Linux\"}]},{\"@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":"Using Kit Language in Windows and Linux - Hongkiat","description":"In the previous post, we have discussed about Kit, a very simple HTML templating language. If you had been following this, you should find that the GUI","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\/using-kit-in-windows-and-linux\/","og_locale":"en_US","og_type":"article","og_title":"Using Kit Language in Windows and Linux","og_description":"In the previous post, we have discussed about Kit, a very simple HTML templating language. If you had been following this, you should find that the GUI","og_url":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2014-04-09T13:01:38+00:00","article_modified_time":"2025-04-03T17:44:00+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/project-directory.jpg","type":"","width":"","height":""}],"author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"Using Kit Language in Windows and Linux","datePublished":"2014-04-09T13:01:38+00:00","dateModified":"2025-04-03T17:44:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/"},"wordCount":492,"commentCount":0,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/project-directory.jpg","keywords":["Kit","Linux","Microsoft Windows"],"articleSection":["Desktop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/","url":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/","name":"Using Kit Language in Windows and Linux - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/project-directory.jpg","datePublished":"2014-04-09T13:01:38+00:00","dateModified":"2025-04-03T17:44:00+00:00","description":"In the previous post, we have discussed about Kit, a very simple HTML templating language. If you had been following this, you should find that the GUI","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/project-directory.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/using-kit-in-windows-and-linux\/project-directory.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/using-kit-in-windows-and-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Using Kit Language in Windows and Linux"}]},{"@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-58Y","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19776","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=19776"}],"version-history":[{"count":4,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19776\/revisions"}],"predecessor-version":[{"id":73676,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19776\/revisions\/73676"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=19776"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=19776"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=19776"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=19776"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}