Browse Source

Refactor data structure by converting YAML files to JSON (#2069)

Paweł Kuna 8 months ago
parent
commit
0e4bf5fc73
76 changed files with 8943 additions and 5951 deletions
  1. 28 29
      .build/download-images.js
  2. 5 0
      .changeset/nice-fireants-itch.md
  3. 1 3
      package.json
  4. 0 10
      pnpm-lock.yaml
  5. 56 0
      src/pages/_data/activity.json
  6. 0 18
      src/pages/_data/activity.yml
  7. 26 0
      src/pages/_data/alerts.json
  8. 0 16
      src/pages/_data/alerts.yml
  9. 44 0
      src/pages/_data/articles.json
  10. 0 34
      src/pages/_data/articles.yml
  11. 1962 0
      src/pages/_data/charts.json
  12. 0 494
      src/pages/_data/charts.yml
  13. 67 0
      src/pages/_data/chat.json
  14. 0 39
      src/pages/_data/chat.yml
  15. 8 0
      src/pages/_data/comments.json
  16. 0 6
      src/pages/_data/comments.yml
  17. 940 0
      src/pages/_data/commits.json
  18. 0 803
      src/pages/_data/commits.yml
  19. 1010 0
      src/pages/_data/crypto-currencies.json
  20. 0 907
      src/pages/_data/crypto-currencies.yml
  21. 265 0
      src/pages/_data/docs.json
  22. 0 208
      src/pages/_data/docs.yml
  23. 32 0
      src/pages/_data/errors.json
  24. 0 24
      src/pages/_data/errors.yml
  25. 47 0
      src/pages/_data/faq.json
  26. 0 16
      src/pages/_data/faq.yml
  27. 104 0
      src/pages/_data/files.json
  28. 0 68
      src/pages/_data/files.yml
  29. 14 0
      src/pages/_data/inline-players.json
  30. 0 9
      src/pages/_data/inline-players.yml
  31. 178 0
      src/pages/_data/invoices.json
  32. 0 175
      src/pages/_data/invoices.yml
  33. 127 0
      src/pages/_data/jobs.json
  34. 0 106
      src/pages/_data/jobs.yml
  35. 94 0
      src/pages/_data/languages.json
  36. 0 46
      src/pages/_data/languages.yml
  37. 78 0
      src/pages/_data/layouts.json
  38. 0 57
      src/pages/_data/layouts.yml
  39. 5 0
      src/pages/_data/maps-vector.json
  40. 0 76
      src/pages/_data/maps-vector.yml
  41. 78 0
      src/pages/_data/maps.json
  42. 0 36
      src/pages/_data/maps.yml
  43. 39 0
      src/pages/_data/menu-sample.json
  44. 0 32
      src/pages/_data/menu-sample.yml
  45. 473 0
      src/pages/_data/menu.json
  46. 0 367
      src/pages/_data/menu.yml
  47. 27 0
      src/pages/_data/orders.json
  48. 0 15
      src/pages/_data/orders.yml
  49. 58 0
      src/pages/_data/pages.json
  50. 0 47
      src/pages/_data/pages.yml
  51. 871 0
      src/pages/_data/photos.json
  52. 0 817
      src/pages/_data/photos.yml
  53. 54 0
      src/pages/_data/products.json
  54. 0 38
      src/pages/_data/products.yml
  55. 58 0
      src/pages/_data/projects.json
  56. 0 50
      src/pages/_data/projects.yml
  57. 50 0
      src/pages/_data/real-estate.json
  58. 0 43
      src/pages/_data/real-estate.yml
  59. 137 0
      src/pages/_data/rollercoasters.json
  60. 0 119
      src/pages/_data/rollercoasters.yml
  61. 272 0
      src/pages/_data/selects.json
  62. 0 190
      src/pages/_data/selects.yml
  63. 72 0
      src/pages/_data/settings.json
  64. 0 55
      src/pages/_data/settings.yml
  65. 50 0
      src/pages/_data/social-tiles.json
  66. 0 39
      src/pages/_data/social-tiles.yml
  67. 26 0
      src/pages/_data/tasks-list.json
  68. 0 13
      src/pages/_data/tasks-list.yml
  69. 138 0
      src/pages/_data/tasks.json
  70. 0 83
      src/pages/_data/tasks.yml
  71. 22 0
      src/pages/_data/testimonials.json
  72. 0 20
      src/pages/_data/testimonials.yml
  73. 41 0
      src/pages/_data/timeline.json
  74. 0 31
      src/pages/_data/timeline.yml
  75. 1386 0
      src/pages/_data/tracks.json
  76. 0 812
      src/pages/_data/tracks.yml

+ 28 - 29
.build/download-images.js

@@ -2,56 +2,55 @@
 
 'use strict'
 
-const YAML = require('yaml')
 const fs = require('node:fs')
 const path = require('node:path')
 const request = require('request')
-const filePath = path.join(__dirname, '../src/pages/_data/photos.yml')
+const filePath = path.join(__dirname, '../src/pages/_data/photos.json')
 
-const photos = YAML.parse(fs.readFileSync(filePath, 'utf8'))
+const photos = JSON.parse(fs.readFileSync(filePath, 'utf8'))
 
 const urlTitle = (str) => {
-  str = str
+	str = str
 		.toLowerCase()
 		.replaceAll('&', 'and')
 		.replace(/[^[a-z0-9-]/g, '-')
 		.replace(/-+/g, '-')
 
-  return str
+	return str
 }
 
-const download = function(uri, filename, callback, error) {
-  request.head(uri, function(err, res, body) {
-	 request(uri).pipe(fs.createWriteStream(filename))
-		  .on('close', callback)
-		  .on('error', error)
-  })
+const download = function (uri, filename, callback, error) {
+	request.head(uri, function (err, res, body) {
+		request(uri).pipe(fs.createWriteStream(filename))
+			.on('close', callback)
+			.on('error', error)
+	})
 }
 
 async function downloadPhotos() {
-  for (const key in photos) {
-	 const photo = photos[key]
+	for (const key in photos) {
+		const photo = photos[key]
 
-	 let filename, i = 1;
+		let filename, i = 1;
 
-	 do {
-		filename = `${urlTitle(photo['title'])}${i > 1 ? `-${i}` : ''}.jpg`
-		i++
-	 } while (fs.existsSync(path.join(__dirname, `../src/static/photos/${filename}`)))
+		do {
+			filename = `${urlTitle(photo['title'])}${i > 1 ? `-${i}` : ''}.jpg`
+			i++
+		} while (fs.existsSync(path.join(__dirname, `../src/static/photos/${filename}`)))
 
-	 await new Promise((resolve, reject) => {
-		download(photo['path'], path.join(__dirname, `../src/static/photos/${filename}`), function(){
-		  resolve()
-		}, function() {
-		  reject()
-		});
-	 })
+		await new Promise((resolve, reject) => {
+			download(photo['path'], path.join(__dirname, `../src/static/photos/${filename}`), function () {
+				resolve()
+			}, function () {
+				reject()
+			});
+		})
 
-	 photos[key]['file'] = filename
-	 photos[key]['horizontal'] = photo['width'] > photo['height']
-  }
+		photos[key]['file'] = filename
+		photos[key]['horizontal'] = photo['width'] > photo['height']
+	}
 
-  fs.writeFileSync(filePath, YAML.stringify(photos))
+	fs.writeFileSync(filePath, JSON.stringify(photos))
 }
 
 downloadPhotos();

+ 5 - 0
.changeset/nice-fireants-itch.md

@@ -0,0 +1,5 @@
+---
+"@tabler/core": patch
+---
+
+Refactor data structure by converting YAML files to JSON

+ 1 - 3
package.json

@@ -186,9 +186,7 @@
     "typed.js": "^2.1.0",
     "vinyl-buffer": "^1.0.1",
     "vinyl-source-stream": "^2.0.0",
-    "yaml": "^2.7.0",
-    "yargs": "^17.7.2",
-    "zod": "^3.24.1"
+    "yargs": "^17.7.2"
   },
   "dependencies": {
     "@popperjs/core": "^2.11.8",

+ 0 - 10
pnpm-lock.yaml

@@ -184,15 +184,9 @@ devDependencies:
   vinyl-source-stream:
     specifier: ^2.0.0
     version: 2.0.0
-  yaml:
-    specifier: ^2.7.0
-    version: 2.7.0
   yargs:
     specifier: ^17.7.2
     version: 17.7.2
-  zod:
-    specifier: ^3.24.1
-    version: 3.24.1
 
 packages:
 
@@ -9228,7 +9222,3 @@ packages:
     resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
     engines: {node: '>=10'}
     dev: true
-
-  /[email protected]:
-    resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
-    dev: true

+ 56 - 0
src/pages/_data/activity.json

@@ -0,0 +1,56 @@
+[
+  {
+    "text": "<strong>%p</strong> commented on your <strong>\"I'm not a witch.\"</strong> post."
+  },
+  {
+    "text": "It's <strong>%p</strong>'s birthday. Wish him well!"
+  },
+  {
+    "text": "<strong>%p</strong> posted <strong>\"Well, what do you want?\"</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> created a new project <strong>Morning alarm clock</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> liked your photo."
+  },
+  {
+    "text": "<strong>%p</strong> registered new client as <strong>%c</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> closed a new deal on project <strong>Pen Pineapple Apple Pen</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> created a new project for <strong>%c</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> change status of <strong>Tabler Icons</strong> from <strong>open</strong> to <strong>closed</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> liked <strong>Tabler UI Kit</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> posted new video."
+  },
+  {
+    "text": "<strong>%p</strong> and 3 others followed you."
+  },
+  {
+    "text": "<strong>%p</strong> upload 3 new photos to category <strong>Inspirations</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> made a <strong>$10</strong> donation."
+  },
+  {
+    "text": "<strong>%p</strong> created a profile."
+  },
+  {
+    "text": "<strong>%p</strong> hosted the event <strong>Tabler UI Birthday</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> mentioned you on <strong>Best of 2020</strong>."
+  },
+  {
+    "text": "<strong>%p</strong> sent a Review Request to <strong>Amanda Blake</strong>."
+  }
+]

+ 0 - 18
src/pages/_data/activity.yml

@@ -1,18 +0,0 @@
-- text: "<strong>%p</strong> commented on your <strong>\"I'm not a witch.\"</strong> post."
-- text: "It's <strong>%p</strong>'s birthday. Wish him well!"
-- text: "<strong>%p</strong> posted <strong>\"Well, what do you want?\"</strong>."
-- text: "<strong>%p</strong> created a new project <strong>Morning alarm clock</strong>."
-- text: "<strong>%p</strong> liked your photo."
-- text: "<strong>%p</strong> registered new client as <strong>%c</strong>."
-- text: "<strong>%p</strong> closed a new deal on project <strong>Pen Pineapple Apple Pen</strong>."
-- text: "<strong>%p</strong> created a new project for <strong>%c</strong>."
-- text: "<strong>%p</strong> change status of <strong>Tabler Icons</strong> from <strong>open</strong> to <strong>closed</strong>."
-- text: "<strong>%p</strong> liked <strong>Tabler UI Kit</strong>."
-- text: "<strong>%p</strong> posted new video."
-- text: "<strong>%p</strong> and 3 others followed you."
-- text: "<strong>%p</strong> upload 3 new photos to category <strong>Inspirations</strong>."
-- text: "<strong>%p</strong> made a <strong>$10</strong> donation."
-- text: "<strong>%p</strong> created a profile."
-- text: "<strong>%p</strong> hosted the event <strong>Tabler UI Birthday</strong>."
-- text: "<strong>%p</strong> mentioned you on <strong>Best of 2020</strong>."
-- text: "<strong>%p</strong> sent a Review Request to <strong>Amanda Blake</strong>."

+ 26 - 0
src/pages/_data/alerts.json

@@ -0,0 +1,26 @@
+[
+  {
+    "color": "success",
+    "icon": "check",
+    "text": "Wow! Everything worked!",
+    "description": "Your account has been saved!"
+  },
+  {
+    "color": "info",
+    "icon": "info-circle",
+    "text": "Did you know?",
+    "description": "Here is something that you might like to know."
+  },
+  {
+    "color": "warning",
+    "icon": "alert-triangle",
+    "text": "Uh oh, something went wrong",
+    "description": "Sorry! There was a problem with your request."
+  },
+  {
+    "color": "danger",
+    "icon": "alert-circle",
+    "text": "I'm so sorry&hellip;",
+    "description": "Your account has been deleted and can't be restored."
+  }
+]

+ 0 - 16
src/pages/_data/alerts.yml

@@ -1,16 +0,0 @@
-- color: success
-  icon: check
-  text: Wow! Everything worked!
-  description: Your account has been saved!
-- color: info
-  icon: info-circle
-  text: Did you know?
-  description: Here is something that you might like to know.
-- color: warning
-  icon: alert-triangle
-  text: Uh oh, something went wrong
-  description: Sorry! There was a problem with your request.
-- color: danger
-  icon: alert-circle
-  text: I'm so sorry&hellip;
-  description: Your account has been deleted and can't be restored.

+ 44 - 0
src/pages/_data/articles.json

@@ -0,0 +1,44 @@
+[
+  {
+    "title": "And this isn't my nose. This is a false one.",
+    "description": "Look, my liege! The Knights Who Say Ni demand a sacrifice! …Are you suggesting that coconuts migrate? Well, I got better.",
+    "image": 14,
+    "author": 3
+  },
+  {
+    "title": "Well, I didn't vote for you.",
+    "description": "Well, we did do the nose. Why? Shut up! Will you shut up?! You don't frighten us, English pig-dogs! Go and boil your bottoms, sons of a silly person! I blow my nose at you, so-called Ah-thoor Keeng, you and all your silly English K-n-n-n-n-n-n-n-niggits!",
+    "image": 15,
+    "author": 4
+  },
+  {
+    "title": "How do you know she is a witch?",
+    "description": "Are you suggesting that coconuts migrate? No, no, no! Yes, yes. A bit. But she's got a wart. You don't vote for kings. Ah, now we see the violence inherent in the system!",
+    "image": 16,
+    "author": 5
+  },
+  {
+    "title": "Shut up!",
+    "description": "Burn her! How do you know she is a witch? You don't frighten us, English pig-dogs! Go and boil your bottoms, sons of a silly person! I blow my nose at you, so-called Ah-thoor Keeng, you and all your silly English K-n-n-n-n-n-n-n-niggits!",
+    "image": 17,
+    "author": 6
+  },
+  {
+    "title": "Weaseling out of things is important to learn.",
+    "description": "Please do not offer my god a peanut. That's why I love elementary school, Edna. The children believe anything you tell them. Brace yourselves gentlemen. According to the gas chromatograph, the secret ingredient is… Love!? Who's been screwing with this thing?",
+    "image": 20,
+    "author": 12
+  },
+  {
+    "title": "You don't like your job, you don't strike.",
+    "description": "But, Aquaman, you cannot marry a woman without gills. You're from two different worlds… Oh, I've wasted my life. Son, when you participate in sporting events, it's not whether you win or lose: it's how drunk you get.",
+    "image": 21,
+    "author": 13
+  },
+  {
+    "title": "I hope I didn't brain my damage.",
+    "description": "I don't like being outdoors, Smithers. For one thing, there's too many fat children. Oh, loneliness and cheeseburgers are a dangerous mix. Jesus must be spinning in his grave! I hope this has taught you kids a lesson: kids never learn.",
+    "image": 22,
+    "author": 14
+  }
+]

+ 0 - 34
src/pages/_data/articles.yml

@@ -1,34 +0,0 @@
-- title: And this isn't my nose. This is a false one.
-  description: Look, my liege! The Knights Who Say Ni demand a sacrifice! …Are you suggesting that coconuts migrate? Well, I got better.
-  image: 14
-  author: 3
-
-- title: Well, I didn't vote for you.
-  description: Well, we did do the nose. Why? Shut up! Will you shut up?! You don't frighten us, English pig-dogs! Go and boil your bottoms, sons of a silly person! I blow my nose at you, so-called Ah-thoor Keeng, you and all your silly English K-n-n-n-n-n-n-n-niggits!
-  image: 15
-  author: 4
-
-- title: How do you know she is a witch?
-  description: Are you suggesting that coconuts migrate? No, no, no! Yes, yes. A bit. But she's got a wart. You don't vote for kings. Ah, now we see the violence inherent in the system!
-  image: 16
-  author: 5
-
-- title: Shut up!
-  description: Burn her! How do you know she is a witch? You don't frighten us, English pig-dogs! Go and boil your bottoms, sons of a silly person! I blow my nose at you, so-called Ah-thoor Keeng, you and all your silly English K-n-n-n-n-n-n-n-niggits!
-  image: 17
-  author: 6
-
-- title: Weaseling out of things is important to learn.
-  description: Please do not offer my god a peanut. That's why I love elementary school, Edna. The children believe anything you tell them. Brace yourselves gentlemen. According to the gas chromatograph, the secret ingredient is… Love!? Who's been screwing with this thing?
-  image: 20
-  author: 12
-
-- title: You don't like your job, you don't strike.
-  description: "But, Aquaman, you cannot marry a woman without gills. You're from two different worlds… Oh, I've wasted my life. Son, when you participate in sporting events, it's not whether you win or lose: it's how drunk you get."
-  image: 21
-  author: 13
-
-- title: I hope I didn't brain my damage.
-  description: "I don't like being outdoors, Smithers. For one thing, there's too many fat children. Oh, loneliness and cheeseburgers are a dangerous mix. Jesus must be spinning in his grave! I hope this has taught you kids a lesson: kids never learn."
-  image: 22
-  author: 14

+ 1962 - 0
src/pages/_data/charts.json

@@ -0,0 +1,1962 @@
+{
+  "active-users-2": {
+    "type": "line",
+    "height": 18,
+    "datetime": true,
+    "series": [
+      {
+        "name": "Mobile",
+        "color": "primary",
+        "data": [
+          4164,
+          4652,
+          4817,
+          4841,
+          4920,
+          5439,
+          5486,
+          5498,
+          5512,
+          5538,
+          5841,
+          5877,
+          6086,
+          6146,
+          6199,
+          6431,
+          6704,
+          7939,
+          8127,
+          8296,
+          8322,
+          8389,
+          8411,
+          8502,
+          8868,
+          8977,
+          9273,
+          9325,
+          9345,
+          9430
+        ]
+      },
+      {
+        "name": "Desktop",
+        "color": "azure",
+        "data": [
+          2164,
+          2292,
+          2386,
+          2430,
+          2528,
+          3045,
+          3255,
+          3295,
+          3481,
+          3604,
+          3688,
+          3840,
+          3932,
+          3949,
+          4003,
+          4298,
+          4424,
+          4869,
+          4922,
+          4973,
+          5155,
+          5267,
+          5566,
+          5689,
+          5692,
+          5758,
+          5773,
+          5799,
+          5960,
+          6000
+        ]
+      },
+      {
+        "name": "Tablet",
+        "color": "green",
+        "data": [
+          1069,
+          1089,
+          1125,
+          1141,
+          1162,
+          1179,
+          1185,
+          1216,
+          1274,
+          1322,
+          1346,
+          1395,
+          1439,
+          1564,
+          1581,
+          1590,
+          1656,
+          1815,
+          1868,
+          2010,
+          2133,
+          2179,
+          2264,
+          2265,
+          2278,
+          2343,
+          2354,
+          2456,
+          2472,
+          2480
+        ]
+      }
+    ]
+  },
+  "demo-pie": {
+    "type": "donut",
+    "demo": true,
+    "sparkline": true,
+    "legend": true,
+    "series": [
+      {
+        "name": "Direct",
+        "color": "primary",
+        "data": 44
+      },
+      {
+        "name": "Affilliate",
+        "color": "primary",
+        "color-opacity": 0.8,
+        "data": 55
+      },
+      {
+        "name": "E-mail",
+        "color": "primary",
+        "color-opacity": 0.6,
+        "data": 12
+      },
+      {
+        "name": "Other",
+        "color": "gray-300",
+        "data": 2
+      }
+    ]
+  },
+  "demo-bar": {
+    "type": "bar",
+    "legend": true,
+    "horizontal": true,
+    "stacked": true,
+    "categories": [
+      2008,
+      2009,
+      2010,
+      2011,
+      2012,
+      2013,
+      2014
+    ],
+    "x-formatter": "val + \"K\"",
+    "series": [
+      {
+        "name": "Container for a Fanta",
+        "color": "purple",
+        "data": [
+          44,
+          55,
+          41,
+          37,
+          22,
+          43,
+          21
+        ]
+      },
+      {
+        "name": "Strange sunglasses",
+        "color": "green",
+        "data": [
+          53,
+          32,
+          33,
+          52,
+          13,
+          43,
+          32
+        ]
+      },
+      {
+        "name": "Pen Pineapple Apple Pen",
+        "color": "yellow",
+        "data": [
+          12,
+          17,
+          11,
+          9,
+          15,
+          11,
+          20
+        ]
+      },
+      {
+        "name": "Binoculars",
+        "color": "red",
+        "data": [
+          9,
+          7,
+          5,
+          8,
+          6,
+          9,
+          4
+        ]
+      },
+      {
+        "name": "Magical notebook",
+        "color": "primary",
+        "data": [
+          25,
+          12,
+          19,
+          32,
+          25,
+          24,
+          10
+        ]
+      }
+    ]
+  },
+  "demo-area": {
+    "type": "area",
+    "legend": true,
+    "datetime": true,
+    "series": [
+      {
+        "name": "series1",
+        "color": "primary",
+        "data": [
+          56,
+          40,
+          39,
+          47,
+          34,
+          48,
+          44
+        ]
+      },
+      {
+        "name": "series2",
+        "color": "purple",
+        "data": [
+          45,
+          43,
+          30,
+          23,
+          38,
+          39,
+          54
+        ]
+      }
+    ]
+  },
+  "demo-line": {
+    "type": "line",
+    "datetime": true,
+    "stroke-curve": "straight",
+    "legend": true,
+    "series": [
+      {
+        "name": "Session Duration",
+        "color": "yellow",
+        "data": [
+          117,
+          92,
+          94,
+          98,
+          75,
+          110,
+          69,
+          80,
+          109,
+          113,
+          115,
+          95
+        ]
+      },
+      {
+        "name": "Page Views",
+        "color": "green",
+        "data": [
+          59,
+          80,
+          61,
+          66,
+          70,
+          84,
+          87,
+          64,
+          94,
+          56,
+          55,
+          67
+        ]
+      },
+      {
+        "name": "Total Visits",
+        "color": "primary",
+        "data": [
+          53,
+          51,
+          52,
+          41,
+          46,
+          60,
+          45,
+          43,
+          30,
+          50,
+          58,
+          59
+        ]
+      }
+    ]
+  },
+  "social-referrals": {
+    "demo": false,
+    "type": "line",
+    "datetime": true,
+    "height": 18,
+    "legend": true,
+    "show-x": true,
+    "name": "Social referrals",
+    "series": [
+      {
+        "name": "Facebook",
+        "color": "facebook",
+        "data": [
+          13281,
+          8521,
+          15038,
+          9983,
+          15417,
+          8888,
+          7052,
+          14270,
+          5214,
+          9587,
+          5950,
+          16852,
+          17836,
+          12217,
+          17406,
+          12262,
+          9147,
+          14961,
+          18292,
+          15230,
+          13435,
+          10649,
+          5140,
+          13680,
+          4508,
+          13271,
+          13413,
+          5543,
+          18727,
+          18238,
+          18175,
+          6246,
+          5864,
+          17847,
+          9170,
+          6445,
+          12945,
+          8142,
+          8980,
+          10422,
+          15535,
+          11569,
+          10114,
+          17621,
+          16138,
+          13046,
+          6652,
+          9906,
+          14100,
+          16495,
+          6749
+        ]
+      },
+      {
+        "name": "Twitter",
+        "color": "twitter",
+        "data": [
+          3680,
+          1862,
+          3070,
+          2252,
+          5348,
+          3091,
+          3000,
+          3984,
+          5176,
+          5325,
+          2420,
+          5474,
+          3098,
+          1893,
+          3748,
+          2879,
+          4197,
+          5186,
+          4213,
+          4334,
+          2807,
+          1594,
+          4863,
+          2030,
+          3752,
+          4856,
+          5341,
+          3954,
+          3461,
+          3097,
+          3404,
+          4949,
+          2283,
+          3227,
+          3630,
+          2360,
+          3477,
+          4675,
+          1901,
+          2252,
+          3347,
+          2954,
+          5029,
+          2079,
+          2830,
+          3292,
+          4578,
+          3401,
+          4104,
+          3749,
+          4457,
+          3734
+        ]
+      },
+      {
+        "name": "Dribbble",
+        "color": "dribbble",
+        "data": [
+          722,
+          1866,
+          961,
+          1108,
+          1110,
+          561,
+          1753,
+          1815,
+          1985,
+          776,
+          859,
+          547,
+          1488,
+          766,
+          702,
+          621,
+          1599,
+          1372,
+          1620,
+          963,
+          759,
+          764,
+          739,
+          789,
+          1696,
+          1454,
+          1842,
+          734,
+          551,
+          1689,
+          1924,
+          1875,
+          908,
+          1675,
+          1541,
+          1953,
+          534,
+          502,
+          1524,
+          1867,
+          719,
+          1472,
+          1608,
+          1025,
+          889,
+          1150,
+          654,
+          1695,
+          1662,
+          1285,
+          1787
+        ]
+      }
+    ]
+  },
+  "mentions": {
+    "stacked": true,
+    "datetime": true,
+    "show-x": true,
+    "demo": false,
+    "series": [
+      {
+        "name": "Web",
+        "data": [
+          1,
+          0,
+          0,
+          0,
+          0,
+          1,
+          1,
+          0,
+          0,
+          0,
+          2,
+          12,
+          5,
+          8,
+          22,
+          6,
+          8,
+          6,
+          4,
+          1,
+          8,
+          24,
+          29,
+          51,
+          40,
+          47,
+          23,
+          26,
+          50,
+          26,
+          41,
+          22,
+          46,
+          47,
+          81,
+          46,
+          6
+        ],
+        "color": "primary"
+      },
+      {
+        "name": "Social",
+        "data": [
+          2,
+          5,
+          4,
+          3,
+          3,
+          1,
+          4,
+          7,
+          5,
+          1,
+          2,
+          5,
+          3,
+          2,
+          6,
+          7,
+          7,
+          1,
+          5,
+          5,
+          2,
+          12,
+          4,
+          6,
+          18,
+          3,
+          5,
+          2,
+          13,
+          15,
+          20,
+          47,
+          18,
+          15,
+          11,
+          10,
+          0
+        ],
+        "color": "primary",
+        "color-opacity": 0.8
+      },
+      {
+        "name": "Other",
+        "data": [
+          2,
+          9,
+          1,
+          7,
+          8,
+          3,
+          6,
+          5,
+          5,
+          4,
+          6,
+          4,
+          1,
+          9,
+          3,
+          6,
+          7,
+          5,
+          2,
+          8,
+          4,
+          9,
+          1,
+          2,
+          6,
+          7,
+          5,
+          1,
+          8,
+          3,
+          2,
+          3,
+          4,
+          9,
+          7,
+          1,
+          6
+        ],
+        "color": "green",
+        "color-opacity": 0.8
+      }
+    ]
+  },
+  "completion-tasks": {
+    "demo": true,
+    "datetime": true,
+    "debug": true,
+    "series": [
+      {
+        "name": "Tasks completion",
+        "data": [
+          155,
+          65,
+          465,
+          265,
+          225,
+          325,
+          80
+        ]
+      }
+    ]
+  },
+  "completion-tasks-2": {
+    "demo": true,
+    "extend": "completion-tasks",
+    "type": "line"
+  },
+  "completion-tasks-3": {
+    "demo": true,
+    "extend": "completion-tasks",
+    "type": "area"
+  },
+  "completion-tasks-4": {
+    "demo": true,
+    "extend": "completion-tasks",
+    "stroke-curve": "straight",
+    "type": "line"
+  },
+  "completion-tasks-5": {
+    "demo": true,
+    "extend": "completion-tasks",
+    "stroke-curve": "stepline",
+    "type": "line"
+  },
+  "completion-tasks-6": {
+    "demo": true,
+    "extend": "completion-tasks",
+    "type": "bar",
+    "horizontal": true
+  },
+  "completion-tasks-7": {
+    "demo": true,
+    "extend": "completion-tasks",
+    "type": "line",
+    "datalabels": true
+  },
+  "completion-tasks-8": {
+    "demo": true,
+    "datetime": true,
+    "type": "bar",
+    "series": [
+      {
+        "data": [
+          155,
+          65,
+          465,
+          265,
+          225,
+          325,
+          80
+        ]
+      },
+      {
+        "data": [
+          113,
+          42,
+          65,
+          54,
+          76,
+          65,
+          35
+        ],
+        "color": "red"
+      }
+    ]
+  },
+  "completion-tasks-9": {
+    "demo": true,
+    "extend": "completion-tasks-8",
+    "stacked": true
+  },
+  "completion-tasks-10": {
+    "demo": true,
+    "extend": "completion-tasks-8",
+    "type": "area"
+  },
+  "completion-tasks-11": {
+    "demo": true,
+    "extend": "completion-tasks-8",
+    "type": "area",
+    "stacked": true
+  },
+  "tasks-overview": {
+    "type": "bar",
+    "debug": true,
+    "categories": [
+      "Sprint 1",
+      "Sprint 2",
+      "Sprint 3",
+      "Sprint 4",
+      "Sprint 5",
+      "Sprint 6",
+      "Sprint 7",
+      "Sprint 8",
+      "Sprint 9",
+      "Sprint 10",
+      "Sprint 11",
+      "Sprint 12",
+      "Sprint 13",
+      "Sprint 14",
+      "Sprint 15",
+      "Sprint 16",
+      "Sprint 17",
+      "Sprint 18",
+      "Sprint 19",
+      "Sprint 20",
+      "Sprint 21",
+      "Sprint 22",
+      "Sprint 23",
+      "Sprint 24"
+    ],
+    "series": [
+      {
+        "name": "A",
+        "data": [
+          44,
+          32,
+          48,
+          72,
+          60,
+          16,
+          44,
+          32,
+          78,
+          50,
+          68,
+          34,
+          26,
+          48,
+          72,
+          60,
+          84,
+          64,
+          74,
+          52,
+          62,
+          50,
+          32,
+          22
+        ]
+      }
+    ]
+  },
+  "campaigns": {
+    "demo": true,
+    "type": "radialBar",
+    "sparkline": true,
+    "series": [
+      {
+        "name": "Total Sent",
+        "color": "primary",
+        "data": 44
+      },
+      {
+        "name": "Reached",
+        "color": "primary",
+        "color-opacity": 0.8,
+        "data": 36
+      },
+      {
+        "name": "Opened",
+        "color": "primary",
+        "color-opacity": 0.6,
+        "data": 18
+      }
+    ]
+  },
+  "tasks": {
+    "demo": true,
+    "type": "line",
+    "categories": [
+      "M",
+      "T",
+      "W",
+      "T",
+      "F",
+      "S",
+      "S",
+      "M",
+      "T",
+      "W",
+      "T",
+      "F",
+      "S",
+      "S",
+      "M",
+      "T",
+      "W"
+    ],
+    "groups": [
+      1,
+      2,
+      3
+    ],
+    "hide-points": true,
+    "fill": true,
+    "remove-padding": true,
+    "hide-tooltip": true,
+    "series": [
+      {
+        "name": "New",
+        "color": "primary",
+        "data": [
+          0,
+          0,
+          1,
+          2,
+          21,
+          9,
+          12,
+          10,
+          31,
+          13,
+          65,
+          10,
+          12,
+          6,
+          4,
+          3,
+          0
+        ]
+      },
+      {
+        "name": "Completed",
+        "color": "lime",
+        "data": [
+          0,
+          0,
+          1,
+          2,
+          7,
+          5,
+          6,
+          8,
+          24,
+          7,
+          12,
+          5,
+          6,
+          3,
+          2,
+          2,
+          0
+        ]
+      },
+      {
+        "name": "Closed",
+        "color": "orange",
+        "data": [
+          0,
+          0,
+          1,
+          0,
+          2,
+          0,
+          1,
+          0,
+          2,
+          3,
+          0,
+          2,
+          3,
+          2,
+          1,
+          0,
+          0
+        ]
+      }
+    ]
+  },
+  "development-activity": {
+    "type": "area",
+    "groups": [
+      1,
+      2,
+      3
+    ],
+    "hide-points": true,
+    "remove-padding": true,
+    "sparkline": true,
+    "datetime": true,
+    "series": [
+      {
+        "name": "Purchases",
+        "color": "primary",
+        "data": [
+          3,
+          5,
+          4,
+          6,
+          7,
+          5,
+          6,
+          8,
+          24,
+          7,
+          12,
+          5,
+          6,
+          3,
+          8,
+          4,
+          14,
+          30,
+          17,
+          19,
+          15,
+          14,
+          25,
+          32,
+          40,
+          55,
+          60,
+          48,
+          52,
+          70
+        ]
+      }
+    ]
+  },
+  "uptime": {
+    "type": "area",
+    "datetime": true,
+    "series": [
+      {
+        "name": "Uptime",
+        "color": "primary",
+        "data": [
+          150,
+          160,
+          170,
+          161,
+          167,
+          162,
+          161,
+          152,
+          141,
+          144,
+          154,
+          166,
+          176,
+          187,
+          198,
+          210,
+          196,
+          207,
+          200,
+          187,
+          192,
+          204,
+          193,
+          204,
+          208,
+          196,
+          193,
+          178,
+          191,
+          204,
+          218,
+          211,
+          218,
+          216,
+          201,
+          197,
+          190,
+          179,
+          172,
+          158,
+          159,
+          147,
+          152,
+          152,
+          144,
+          137,
+          136,
+          123,
+          112,
+          99,
+          100,
+          95,
+          105,
+          116,
+          125,
+          124,
+          133,
+          129,
+          116,
+          119,
+          109,
+          114,
+          115,
+          111,
+          96,
+          104,
+          104,
+          102,
+          116,
+          126,
+          117,
+          130,
+          124,
+          126,
+          131,
+          143,
+          130,
+          116,
+          118,
+          122,
+          132,
+          126,
+          136,
+          123,
+          112,
+          116,
+          113,
+          113,
+          109,
+          99,
+          100,
+          95,
+          83,
+          79,
+          64,
+          79,
+          81,
+          94,
+          99,
+          97,
+          83,
+          71,
+          75,
+          69,
+          71,
+          75,
+          84,
+          90,
+          100,
+          96,
+          108,
+          102,
+          116,
+          112,
+          112,
+          102,
+          115,
+          120,
+          118,
+          118
+        ]
+      }
+    ]
+  },
+  "uptime-incidents": {
+    "type": "bar",
+    "y-max": 20,
+    "datetime": true,
+    "series": [
+      {
+        "name": "Uptime incidents",
+        "color": "red",
+        "data": [
+          1,
+          2,
+          6,
+          3,
+          1,
+          1,
+          2,
+          5,
+          2,
+          5,
+          6,
+          2,
+          4,
+          3,
+          4,
+          5,
+          4,
+          3,
+          2,
+          1,
+          2,
+          0,
+          2,
+          1,
+          1
+        ]
+      }
+    ]
+  },
+  "line": {
+    "type": "line",
+    "categories": [
+      "2013",
+      "2014",
+      "2015",
+      "2016",
+      "2017",
+      "2018"
+    ],
+    "series": [
+      {
+        "name": "Development",
+        "color": "orange",
+        "data": [
+          2,
+          8,
+          6,
+          7,
+          14,
+          11
+        ]
+      },
+      {
+        "name": "Marketing",
+        "color": "primary",
+        "data": [
+          5,
+          15,
+          11,
+          15,
+          21,
+          25
+        ]
+      },
+      {
+        "name": "Sales",
+        "color": "green",
+        "data": [
+          17,
+          18,
+          21,
+          20,
+          30,
+          29
+        ]
+      }
+    ]
+  },
+  "line-stroke": {
+    "demo": true,
+    "type": "line",
+    "stroke-curve": "straight",
+    "categories": [
+      "2013",
+      "2014",
+      "2015",
+      "2016",
+      "2017",
+      "2018",
+      "2019"
+    ],
+    "series": [
+      {
+        "name": "Development",
+        "color": "orange",
+        "data": [
+          8,
+          10,
+          11,
+          12,
+          20,
+          27,
+          30
+        ]
+      },
+      {
+        "name": "Marketing",
+        "color": "primary",
+        "data": [
+          3,
+          16,
+          17,
+          19,
+          20,
+          30,
+          30
+        ]
+      },
+      {
+        "name": "Sales",
+        "color": "green",
+        "data": [
+          7,
+          10,
+          11,
+          18,
+          18,
+          18,
+          24
+        ]
+      }
+    ]
+  },
+  "stepline": {
+    "demo": true,
+    "type": "line",
+    "stroke-curve": "stepline",
+    "series": [
+      {
+        "name": "Development",
+        "color": "orange",
+        "data": [
+          34,
+          44,
+          54,
+          21,
+          12,
+          43,
+          33,
+          23,
+          66,
+          66,
+          58
+        ]
+      }
+    ]
+  },
+  "temperature": {
+    "demo": true,
+    "type": "line",
+    "show-labels": true,
+    "show-data-labels": true,
+    "show-markers": true,
+    "categories": [
+      "Jan",
+      "Feb",
+      "Mar",
+      "Apr",
+      "May",
+      "Jun",
+      "Jul",
+      "Aug",
+      "Sep",
+      "Oct",
+      "Nov",
+      "Dec"
+    ],
+    "series": [
+      {
+        "name": "Tokyo",
+        "color": "primary",
+        "data": [
+          7,
+          6.9,
+          9.5,
+          14.5,
+          18.4,
+          21.5,
+          25.2,
+          26.5,
+          23.3,
+          18.3,
+          13.9,
+          9.6
+        ]
+      },
+      {
+        "name": "London",
+        "color": "green",
+        "data": [
+          3.9,
+          4.2,
+          5.7,
+          8.5,
+          11.9,
+          15.2,
+          17,
+          16.6,
+          14.2,
+          10.3,
+          6.6,
+          4.8
+        ]
+      }
+    ]
+  },
+  "area": {
+    "demo": true,
+    "type": "area",
+    "categories": [
+      "Jan",
+      "Feb",
+      "Mar",
+      "Apr",
+      "May",
+      "Jun"
+    ],
+    "series": [
+      {
+        "name": "Maximum",
+        "color": "primary",
+        "data": [
+          11,
+          8,
+          15,
+          18,
+          19,
+          17
+        ]
+      },
+      {
+        "name": "Minimum",
+        "color": "pink",
+        "data": [
+          7,
+          7,
+          5,
+          7,
+          9,
+          12
+        ]
+      }
+    ]
+  },
+  "area-spline": {
+    "demo": true,
+    "type": "area",
+    "spline": true,
+    "categories": [
+      "Jan",
+      "Feb",
+      "Mar",
+      "Apr",
+      "May",
+      "Jun"
+    ],
+    "series": [
+      {
+        "name": "Maximum",
+        "color": "primary",
+        "data": [
+          11,
+          8,
+          15,
+          18,
+          19,
+          17
+        ]
+      },
+      {
+        "name": "Minimum",
+        "color": "pink",
+        "data": [
+          7,
+          7,
+          5,
+          7,
+          9,
+          12
+        ]
+      }
+    ]
+  },
+  "area-spline-stacked": {
+    "demo": true,
+    "type": "area",
+    "spline": true,
+    "stacked": true,
+    "categories": [
+      "Jan",
+      "Feb",
+      "Mar",
+      "Apr",
+      "May",
+      "Jun"
+    ],
+    "series": [
+      {
+        "name": "Maximum",
+        "color": "primary",
+        "data": [
+          11,
+          8,
+          15,
+          18,
+          19,
+          17
+        ]
+      },
+      {
+        "name": "Minimum",
+        "color": "pink",
+        "data": [
+          7,
+          7,
+          5,
+          7,
+          9,
+          12
+        ]
+      }
+    ]
+  },
+  "spline": {
+    "demo": true,
+    "type": "line",
+    "spline": true,
+    "show-labels": true,
+    "categories": [
+      "Jan",
+      "Feb",
+      "Mar",
+      "Apr",
+      "May",
+      "Jun"
+    ],
+    "series": [
+      {
+        "name": "Hestavollane",
+        "color": "primary",
+        "data": [
+          0.2,
+          0.8,
+          0.8,
+          0.8,
+          1,
+          1.3,
+          1.5,
+          2.9,
+          1.9,
+          2.6,
+          1.6,
+          3,
+          4,
+          3.6,
+          4.5,
+          4.2,
+          4.5,
+          4.5,
+          4,
+          3.1,
+          2.7,
+          4,
+          2.7,
+          2.3,
+          2.3,
+          4.1,
+          7.7,
+          7.1,
+          5.6,
+          6.1,
+          5.8,
+          8.6,
+          7.2,
+          9,
+          10.9,
+          11.5,
+          11.6,
+          11.1,
+          12,
+          12.3,
+          10.7,
+          9.4,
+          9.8,
+          9.6,
+          9.8,
+          9.5,
+          8.5,
+          7.4,
+          7.6
+        ]
+      },
+      {
+        "name": "Vik",
+        "color": "green",
+        "data": [
+          0,
+          0,
+          0.6,
+          0.9,
+          0.8,
+          0.2,
+          0,
+          0,
+          0,
+          0.1,
+          0.6,
+          0.7,
+          0.8,
+          0.6,
+          0.2,
+          0,
+          0.1,
+          0.3,
+          0.3,
+          0,
+          0.1,
+          0,
+          0,
+          0,
+          0.2,
+          0.1,
+          0,
+          0.3,
+          0,
+          0.1,
+          0.2,
+          0.1,
+          0.3,
+          0.3,
+          0,
+          3.1,
+          3.1,
+          2.5,
+          1.5,
+          1.9,
+          2.1,
+          1,
+          2.3,
+          1.9,
+          1.2,
+          0.7,
+          1.3,
+          0.4,
+          0.3
+        ]
+      }
+    ]
+  },
+  "pie": {
+    "type": "pie",
+    "show-data-labels": true,
+    "sparkline": true,
+    "series": [
+      {
+        "name": "A",
+        "color": "primary",
+        "data": 63
+      },
+      {
+        "name": "B",
+        "color": "primary",
+        "color-opacity": 0.8,
+        "data": 44
+      },
+      {
+        "name": "C",
+        "color": "primary",
+        "color-opacity": 0.6,
+        "data": 12
+      },
+      {
+        "name": "D",
+        "color": "primary",
+        "color-opacity": 0.4,
+        "data": 14
+      }
+    ]
+  },
+  "donut": {
+    "type": "donut",
+    "sparkline": true,
+    "series": [
+      {
+        "name": "Maximum",
+        "color": "green",
+        "data": 63
+      },
+      {
+        "name": "Minimum",
+        "color": "green",
+        "color-opacity": 0.8,
+        "data": 37
+      }
+    ]
+  },
+  "scatter": {
+    "demo": true,
+    "type": "scatter",
+    "categories": [
+      "Jan",
+      "Feb",
+      "Mar",
+      "Apr",
+      "May",
+      "Jun"
+    ],
+    "series": [
+      {
+        "name": "Maximum",
+        "color": "primary",
+        "data": [
+          11,
+          8,
+          15,
+          18,
+          19,
+          17
+        ]
+      },
+      {
+        "name": "Minimum",
+        "color": "pink",
+        "data": [
+          7,
+          7,
+          5,
+          7,
+          9,
+          12
+        ]
+      }
+    ]
+  },
+  "combination": {
+    "demo": true,
+    "type": "bar",
+    "types": {
+      "2": "line",
+      "3": "spline"
+    },
+    "groups": [
+      1,
+      4
+    ],
+    "categories": [
+      "2013",
+      "2014",
+      "2015",
+      "2016",
+      "2017",
+      "2018"
+    ],
+    "series": [
+      {
+        "name": "Development",
+        "color": "green",
+        "data": [
+          30,
+          20,
+          50,
+          40,
+          60,
+          50
+        ]
+      },
+      {
+        "name": "Marketing",
+        "color": "pink",
+        "data": [
+          200,
+          130,
+          90,
+          240,
+          130,
+          220
+        ]
+      },
+      {
+        "name": "Sales",
+        "color": "green",
+        "data": [
+          300,
+          200,
+          160,
+          400,
+          250,
+          250
+        ]
+      },
+      {
+        "name": "Sales",
+        "color": "primary",
+        "data": [
+          200,
+          130,
+          90,
+          240,
+          130,
+          220
+        ]
+      }
+    ]
+  },
+  "revenue-bg": {
+    "type": "area",
+    "datetime": true,
+    "sparkline": true,
+    "series": [
+      {
+        "name": "Profits",
+        "data": [
+          37,
+          35,
+          44,
+          28,
+          36,
+          24,
+          65,
+          31,
+          37,
+          39,
+          62,
+          51,
+          35,
+          41,
+          35,
+          27,
+          93,
+          53,
+          61,
+          27,
+          54,
+          43,
+          19,
+          46,
+          39,
+          62,
+          51,
+          35,
+          41,
+          67
+        ]
+      }
+    ]
+  },
+  "new-clients": {
+    "type": "line",
+    "datetime": true,
+    "sparkline": true,
+    "stroke-width": [
+      2,
+      1
+    ],
+    "stroke-dash": [
+      0,
+      3
+    ],
+    "series": [
+      {
+        "name": "May",
+        "color": "primary",
+        "data": [
+          37,
+          35,
+          44,
+          28,
+          36,
+          24,
+          65,
+          31,
+          37,
+          39,
+          62,
+          51,
+          35,
+          41,
+          35,
+          27,
+          93,
+          53,
+          61,
+          27,
+          54,
+          43,
+          4,
+          46,
+          39,
+          62,
+          51,
+          35,
+          41,
+          67
+        ]
+      },
+      {
+        "name": "April",
+        "color": "gray-600",
+        "data": [
+          93,
+          54,
+          51,
+          24,
+          35,
+          35,
+          31,
+          67,
+          19,
+          43,
+          28,
+          36,
+          62,
+          61,
+          27,
+          39,
+          35,
+          41,
+          27,
+          35,
+          51,
+          46,
+          62,
+          37,
+          44,
+          53,
+          41,
+          65,
+          39,
+          37
+        ]
+      }
+    ]
+  },
+  "active-users": {
+    "type": "bar",
+    "datetime": true,
+    "sparkline": true,
+    "series": [
+      {
+        "name": "Profits",
+        "data": [
+          37,
+          35,
+          44,
+          28,
+          36,
+          24,
+          65,
+          31,
+          37,
+          39,
+          62,
+          51,
+          35,
+          41,
+          35,
+          27,
+          93,
+          53,
+          61,
+          27,
+          54,
+          43,
+          19,
+          46,
+          39,
+          62,
+          51,
+          35,
+          41,
+          67
+        ]
+      }
+    ]
+  },
+  "traffic-in": {
+    "type": "bar",
+    "sparkline": true,
+    "color": "green",
+    "series": [
+      {
+        "name": "Inbound",
+        "data": [
+          14,
+          -3,
+          14,
+          9,
+          4,
+          6,
+          -2,
+          7,
+          7,
+          14,
+          10,
+          9,
+          5,
+          -1
+        ]
+      }
+    ]
+  },
+  "traffic-out": {
+    "type": "bar",
+    "sparkline": true,
+    "color": "red",
+    "series": [
+      {
+        "name": "Outbound",
+        "data": [
+          -3,
+          7,
+          9,
+          14,
+          4,
+          5,
+          3,
+          -1,
+          7,
+          10,
+          14,
+          14,
+          -2,
+          6
+        ]
+      }
+    ]
+  }
+}

+ 0 - 494
src/pages/_data/charts.yml

@@ -1,494 +0,0 @@
-active-users-2:
-  type: line
-  height: 18
-  datetime: true
-  series:
-    - name: Mobile
-      color: primary
-      data: [ 4164, 4652, 4817, 4841, 4920, 5439, 5486, 5498, 5512, 5538, 5841, 5877, 6086, 6146, 6199, 6431, 6704, 7939, 8127, 8296, 8322, 8389, 8411, 8502, 8868, 8977, 9273, 9325, 9345, 9430 ]
-    - name: Desktop
-      color: azure
-      data: [ 2164, 2292, 2386, 2430, 2528, 3045, 3255, 3295, 3481, 3604, 3688, 3840, 3932, 3949, 4003, 4298, 4424, 4869, 4922, 4973, 5155, 5267, 5566, 5689, 5692, 5758, 5773, 5799, 5960, 6000 ]
-    - name: Tablet
-      color: green
-      data: [ 1069, 1089, 1125, 1141, 1162, 1179, 1185, 1216, 1274, 1322, 1346, 1395, 1439, 1564, 1581, 1590, 1656, 1815, 1868, 2010, 2133, 2179, 2264, 2265, 2278, 2343, 2354, 2456, 2472, 2480 ]
-
-demo-pie:
-  type: donut
-  demo: true
-  sparkline: true
-  legend: true
-  series:
-    - name: Direct
-      color: primary
-      data: 44
-    - name: Affilliate
-      color: primary
-      color-opacity: .8
-      data: 55
-    - name: E-mail
-      color: primary
-      color-opacity: .6
-      data: 12
-    - name: Other
-      color: gray-300
-      data: 2
-
-demo-bar:
-  type: bar
-  legend: true
-  horizontal: true
-  stacked: true
-  categories: [2008, 2009, 2010, 2011, 2012, 2013, 2014]
-  x-formatter: 'val + "K"'
-  series:
-    - name: Container for a Fanta
-      color: purple
-      data: [ 44, 55, 41, 37, 22, 43, 21 ]
-    - name: Strange sunglasses
-      color: green
-      data: [ 53, 32, 33, 52, 13, 43, 32 ]
-    - name: Pen Pineapple Apple Pen
-      color: yellow
-      data: [ 12, 17, 11, 9, 15, 11, 20 ]
-    - name: Binoculars
-      color: red
-      data: [ 9, 7, 5, 8, 6, 9, 4 ]
-    - name: Magical notebook
-      color: primary
-      data: [ 25, 12, 19, 32, 25, 24, 10 ]
-
-demo-area:
-  type: area
-  legend: true
-  datetime: true
-  series:
-    - name: series1
-      color: primary
-      data: [ 56, 40, 39, 47, 34, 48, 44 ]
-    - name: series2
-      color: purple
-      data: [ 45, 43, 30, 23, 38, 39, 54 ]
-
-demo-line:
-  type: line
-  datetime: true
-  stroke-curve: straight
-  legend: true
-  series:
-    - name: Session Duration
-      color: yellow
-      data: [ 117, 92, 94, 98, 75, 110, 69, 80, 109, 113, 115, 95 ]
-    - name: Page Views
-      color: green
-      data: [ 59, 80, 61, 66, 70, 84, 87, 64, 94, 56, 55, 67 ]
-    - name: Total Visits
-      color: primary
-      data: [ 53, 51, 52, 41, 46, 60, 45, 43, 30, 50, 58, 59 ]
-
-social-referrals:
-  demo: false
-  type: line
-  datetime: true
-  height: 18
-  legend: true
-  show-x: true
-  name: Social referrals
-  series:
-    - name: Facebook
-      color: facebook
-      data: [13281, 8521, 15038, 9983, 15417, 8888, 7052, 14270, 5214, 9587, 5950, 16852, 17836, 12217, 17406, 12262, 9147, 14961, 18292, 15230, 13435, 10649, 5140, 13680, 4508, 13271, 13413, 5543, 18727, 18238, 18175, 6246, 5864, 17847, 9170, 6445, 12945, 8142, 8980, 10422, 15535, 11569, 10114, 17621, 16138, 13046, 6652, 9906, 14100, 16495, 6749]
-    - name: Twitter
-      color: twitter
-      data: [3680, 1862, 3070, 2252, 5348, 3091, 3000, 3984, 5176, 5325, 2420, 5474, 3098, 1893, 3748, 2879, 4197, 5186, 4213, 4334, 2807, 1594, 4863, 2030, 3752, 4856, 5341, 3954, 3461, 3097, 3404, 4949, 2283, 3227, 3630, 2360, 3477, 4675, 1901, 2252, 3347, 2954, 5029, 2079, 2830, 3292, 4578, 3401, 4104, 3749, 4457, 3734]
-    - name: Dribbble
-      color: dribbble
-      data: [722, 1866, 961, 1108, 1110, 561, 1753, 1815, 1985, 776, 859, 547, 1488, 766, 702, 621, 1599, 1372, 1620, 963, 759, 764, 739, 789, 1696, 1454, 1842, 734, 551, 1689, 1924, 1875, 908, 1675, 1541, 1953, 534, 502, 1524, 1867, 719, 1472, 1608, 1025, 889, 1150, 654, 1695, 1662, 1285, 1787]
-
-mentions:
-  stacked: true
-  datetime: true
-  show-x: true
-  demo: false
-  series:
-    - name: Web
-      data: [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 12, 5, 8, 22, 6, 8, 6, 4, 1, 8, 24, 29, 51, 40, 47, 23, 26, 50, 26, 41, 22, 46, 47, 81, 46, 6]
-      color: primary
-    - name: Social
-      data: [2, 5, 4, 3, 3, 1, 4, 7, 5, 1, 2, 5, 3, 2, 6, 7, 7, 1, 5, 5, 2, 12, 4, 6, 18, 3, 5, 2, 13, 15, 20, 47, 18, 15, 11, 10, 0]
-      color: primary
-      color-opacity: .8
-    - name: Other
-      data: [2, 9, 1, 7, 8, 3, 6, 5, 5, 4, 6, 4, 1, 9, 3, 6, 7, 5, 2, 8, 4, 9, 1, 2, 6, 7, 5, 1, 8, 3, 2, 3, 4, 9, 7, 1, 6]
-      color: green
-      color-opacity: .8
-
-completion-tasks:
-  demo: true
-  datetime: true
-  debug: true
-  series:
-    - name: Tasks completion
-      data: [155, 65, 465, 265, 225, 325, 80]
-
-completion-tasks-2:
-  demo: true
-  extend: completion-tasks
-  type: line
-
-completion-tasks-3:
-  demo: true
-  extend: completion-tasks
-  type: area
-
-completion-tasks-4:
-  demo: true
-  extend: completion-tasks
-  stroke-curve: straight
-  type: line
-
-completion-tasks-5:
-  demo: true
-  extend: completion-tasks
-  stroke-curve: stepline
-  type: line
-
-completion-tasks-6:
-  demo: true
-  extend: completion-tasks
-  type: bar
-  horizontal: true
-
-completion-tasks-7:
-  demo: true
-  extend: completion-tasks
-  type: line
-  datalabels: true
-
-completion-tasks-8:
-  demo: true
-  datetime: true
-  type: bar
-  series:
-    - data: [155, 65, 465, 265, 225, 325, 80]
-    - data: [113, 42, 65, 54, 76, 65, 35]
-      color: red
-
-completion-tasks-9:
-  demo: true
-  extend: completion-tasks-8
-  stacked: true
-
-completion-tasks-10:
-  demo: true
-  extend: completion-tasks-8
-  type: area
-
-completion-tasks-11:
-  demo: true
-  extend: completion-tasks-8
-  type: area
-  stacked: true
-
-tasks-overview:
-  type: bar
-  debug: true
-  categories: ['Sprint 1', 'Sprint 2', 'Sprint 3', 'Sprint 4', 'Sprint 5', 'Sprint 6', 'Sprint 7', 'Sprint 8', 'Sprint 9', 'Sprint 10', 'Sprint 11', 'Sprint 12', 'Sprint 13', 'Sprint 14', 'Sprint 15', 'Sprint 16', 'Sprint 17', 'Sprint 18', 'Sprint 19', 'Sprint 20', 'Sprint 21', 'Sprint 22', 'Sprint 23', 'Sprint 24']
-  series:
-    - name: A
-      data: [44, 32, 48, 72, 60, 16, 44, 32, 78, 50, 68, 34, 26, 48, 72, 60, 84, 64, 74, 52, 62, 50, 32, 22]
-
-
-
-campaigns:
-  demo: true
-  type: radialBar
-  sparkline: true
-  series:
-    - name: Total Sent
-      color: primary
-      data: 44
-    - name: Reached
-      color: primary
-      color-opacity: .8
-      data: 36
-    - name: Opened
-      color: primary
-      color-opacity: .6
-      data: 18
-
-tasks:
-  demo: true
-  type: line
-  categories: ['M', 'T', 'W', 'T', 'F', 'S', 'S', 'M', 'T', 'W', 'T', 'F', 'S', 'S', 'M', 'T', 'W']
-  groups: [1, 2, 3]
-  hide-points: true
-  fill: true
-  remove-padding: true
-  hide-tooltip: true
-  series:
-    - name: 'New'
-      color: primary
-      data: [0, 0, 1, 2, 21, 9, 12, 10, 31, 13, 65, 10, 12, 6, 4, 3, 0]
-    - name: 'Completed'
-      color: lime
-      data: [0, 0, 1, 2, 7, 5, 6, 8, 24, 7, 12, 5, 6, 3, 2, 2, 0]
-    - name: 'Closed'
-      color: orange
-      data: [0, 0, 1, 0, 2, 0, 1, 0, 2, 3, 0, 2, 3, 2, 1, 0, 0]
-
-development-activity:
-  type: area
-  groups: [1, 2, 3]
-  hide-points: true
-  remove-padding: true
-  sparkline: true
-  datetime: true
-  series:
-    - name: 'Purchases'
-      color: primary
-      data: [3, 5, 4, 6, 7, 5, 6, 8, 24, 7, 12, 5, 6, 3, 8, 4, 14, 30, 17, 19, 15, 14, 25, 32, 40, 55, 60, 48, 52, 70]
-
-uptime:
-  type: area
-  datetime: true
-  series:
-    - name: 'Uptime'
-      color: primary
-      data: [ 150, 160, 170, 161, 167, 162, 161, 152, 141, 144, 154, 166, 176, 187, 198, 210, 196, 207, 200, 187, 192, 204, 193, 204, 208, 196, 193, 178, 191, 204, 218, 211, 218, 216, 201, 197, 190, 179, 172, 158, 159, 147, 152, 152, 144, 137, 136, 123, 112, 99, 100, 95, 105, 116, 125, 124, 133, 129, 116, 119, 109, 114, 115, 111, 96, 104, 104, 102, 116, 126, 117, 130, 124, 126, 131, 143, 130, 116, 118, 122, 132, 126, 136, 123, 112, 116, 113, 113, 109, 99, 100, 95, 83, 79, 64, 79, 81, 94, 99, 97, 83, 71, 75, 69, 71, 75, 84, 90, 100, 96, 108, 102, 116, 112, 112, 102, 115, 120, 118, 118 ]
-
-uptime-incidents:
-  type: bar
-  y-max: 20
-  datetime: true
-  series:
-    - name: 'Uptime incidents'
-      color: red
-      data: [ 1, 2, 6, 3, 1, 1, 2, 5, 2, 5, 6, 2, 4, 3, 4, 5, 4, 3, 2, 1, 2, 0, 2, 1, 1 ]
-
-line:
-  type: line
-  categories: ['2013', '2014', '2015', '2016', '2017', '2018']
-  series:
-    - name: Development
-      color: orange
-      data: [2, 8, 6, 7, 14, 11]
-    - name: Marketing
-      color: primary
-      data: [5, 15, 11, 15, 21, 25]
-    - name: Sales
-      color: green
-      data: [17, 18, 21, 20, 30, 29]
-
-line-stroke:
-  demo: true
-  type: line
-  stroke-curve: straight
-  categories: ['2013', '2014', '2015', '2016', '2017', '2018', '2019']
-  series:
-    - name: Development
-      color: orange
-      data: [8, 10, 11, 12, 20, 27, 30]
-    - name: Marketing
-      color: primary
-      data: [3, 16, 17, 19, 20, 30, 30]
-    - name: Sales
-      color: green
-      data: [7, 10, 11, 18, 18, 18, 24]
-
-stepline:
-  demo: true
-  type: line
-  stroke-curve: stepline
-  series:
-    - name: Development
-      color: orange
-      data: [34, 44, 54, 21, 12, 43, 33, 23, 66, 66, 58]
-
-temperature:
-  demo: true
-  type: line
-  show-labels: true
-  show-data-labels: true
-  show-markers: true
-  categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
-  series:
-    - name: Tokyo
-      color: primary
-      data: [7.0, 6.9, 9.5, 14.5, 18.4, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
-    - name: London
-      color: green
-      data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
-
-
-area:
-  demo: true
-  type: area
-  categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
-  series:
-    - name: Maximum
-      color: primary
-      data: [11, 8, 15, 18, 19, 17]
-    - name: Minimum
-      color: pink
-      data: [7, 7, 5, 7, 9, 12]
-
-
-area-spline:
-  demo: true
-  type: area
-  spline: true
-  categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
-  series:
-    - name: Maximum
-      color: primary
-      data: [11, 8, 15, 18, 19, 17]
-    - name: Minimum
-      color: pink
-      data: [7, 7, 5, 7, 9, 12]
-
-
-area-spline-stacked:
-  demo: true
-  type: area
-  spline: true
-  stacked: true
-  categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
-  series:
-    - name: Maximum
-      color: primary
-      data: [11, 8, 15, 18, 19, 17]
-    - name: Minimum
-      color: pink
-      data: [7, 7, 5, 7, 9, 12]
-
-
-spline:
-  demo: true
-  type: line
-  spline: true
-  show-labels: true
-  categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
-  series:
-    - name: Hestavollane
-      color: primary
-      data: [0.2, 0.8, 0.8, 0.8, 1, 1.3, 1.5, 2.9, 1.9, 2.6, 1.6, 3, 4, 3.6, 4.5, 4.2, 4.5, 4.5, 4, 3.1, 2.7, 4, 2.7, 2.3, 2.3, 4.1, 7.7, 7.1, 5.6, 6.1, 5.8, 8.6, 7.2, 9, 10.9, 11.5, 11.6, 11.1, 12, 12.3, 10.7, 9.4, 9.8, 9.6, 9.8, 9.5, 8.5, 7.4, 7.6]
-    - name: Vik
-      color: green
-      data: [0, 0, 0.6, 0.9, 0.8, 0.2, 0, 0, 0, 0.1, 0.6, 0.7, 0.8, 0.6, 0.2, 0, 0.1, 0.3, 0.3, 0, 0.1, 0, 0, 0, 0.2, 0.1, 0, 0.3, 0, 0.1, 0.2, 0.1, 0.3, 0.3, 0, 3.1, 3.1, 2.5, 1.5, 1.9, 2.1, 1, 2.3, 1.9, 1.2, 0.7, 1.3, 0.4, 0.3]
-
-pie:
-  type: pie
-  show-data-labels: true
-  sparkline: true
-  series:
-    - name: A
-      color: primary
-      data: 63
-    - name: B
-      color: primary
-      color-opacity: .8
-      data: 44
-    - name: C
-      color: primary
-      color-opacity: .6
-      data: 12
-    - name: D
-      color: primary
-      color-opacity: .4
-      data: 14
-
-donut:
-  type: donut
-  sparkline: true
-  series:
-    - name: Maximum
-      color: green
-      data: 63
-    - name: Minimum
-      color: green
-      color-opacity: .8
-      data: 37
-
-
-scatter:
-  demo: true
-  type: scatter
-  categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
-  series:
-    - name: Maximum
-      color: primary
-      data: [11, 8, 15, 18, 19, 17]
-    - name: Minimum
-      color: pink
-      data: [7, 7, 5, 7, 9, 12]
-
-
-combination:
-  demo: true
-  type: bar
-  types:
-    2: 'line'
-    3: 'spline'
-  groups: [1, 4]
-  categories: ['2013', '2014', '2015', '2016', '2017', '2018']
-  series:
-    - name: Development
-      color: green
-      data: [30, 20, 50, 40, 60, 50]
-    - name: Marketing
-      color: pink
-      data: [200, 130, 90, 240, 130, 220]
-    - name: Sales
-      color: green
-      data: [300, 200, 160, 400, 250, 250]
-    - name: Sales
-      color: primary
-      data: [200, 130, 90, 240, 130, 220]
-
-revenue-bg:
-  type: area
-  datetime: true
-  sparkline: true
-  series:
-    - name: Profits
-      data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 19, 46, 39, 62, 51, 35, 41, 67]
-
-new-clients:
-  type: line
-  datetime: true
-  sparkline: true
-  stroke-width: [2, 1]
-  stroke-dash: [0, 3]
-  series:
-    - name: May
-      color: primary
-      data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 4, 46, 39, 62, 51, 35, 41, 67]
-    - name: April
-      color: gray-600
-      data: [93, 54, 51, 24, 35, 35, 31, 67, 19, 43, 28, 36, 62, 61, 27, 39, 35, 41, 27, 35, 51, 46, 62, 37, 44, 53, 41, 65, 39, 37]
-
-active-users:
-  type: bar
-  datetime: true
-  sparkline: true
-  series:
-    - name: Profits
-      data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 19, 46, 39, 62, 51, 35, 41, 67]
-
-traffic-in:
-  type: bar
-  sparkline: true
-  color: green
-  series:
-    - name: Inbound
-      data: [14, -3, 14, 9, 4, 6, -2, 7, 7, 14, 10, 9, 5, -1]
-
-traffic-out:
-  type: bar
-  sparkline: true
-  color: red
-  series:
-    - name: Outbound
-      data: [-3, 7, 9, 14, 4, 5, 3, -1, 7, 10, 14, 14, -2, 6]
-

+ 67 - 0
src/pages/_data/chat.json

@@ -0,0 +1,67 @@
+[
+  {
+    "timestamp": "09:32",
+    "person-id": 0,
+    "message": "Hey guys, I just pushed a new commit on the <code>dev</code> branch. Can you have a look and tell me what you think?"
+  },
+  {
+    "timestamp": "09:34",
+    "person-id": 2,
+    "message": "Sure Paweł, let me pull the latest updates."
+  },
+  {
+    "timestamp": "09:34",
+    "person-id": 3,
+    "message": "I'm on it too 👊"
+  },
+  {
+    "timestamp": "09:40",
+    "person-id": 2,
+    "message": "I see you've refactored the <code>calculateStatistics</code> function. The code is much cleaner now."
+  },
+  {
+    "timestamp": "09:42",
+    "person-id": 0,
+    "message": "Yes, I thought it was getting a bit cluttered."
+  },
+  {
+    "timestamp": "09:43",
+    "person-id": 4,
+    "message": "The commit message is descriptive, too. Good job on mentioning the issue number it fixes."
+  },
+  {
+    "timestamp": "09:44",
+    "person-id": 3,
+    "message": "I noticed you added some new dependencies in the <code>package.json</code>. Did you also update the <code>README</code> with the setup instructions?"
+  },
+  {
+    "timestamp": "09:45",
+    "person-id": 0,
+    "message": "Oops, I forgot. I'll add that right away.",
+    "gif": "https://media3.giphy.com/media/VABbCpX94WCfS/giphy.gif"
+  },
+  {
+    "timestamp": "09:46",
+    "person-id": 2,
+    "message": "I see a couple of edge cases we might not be handling in the <code>calculateStatistic</code> function. Should I open an issue for that?"
+  },
+  {
+    "timestamp": "09:47",
+    "person-id": 0,
+    "message": "Yes, Bob. Please do. We should not forget to handle those."
+  },
+  {
+    "timestamp": "09:50",
+    "person-id": 4,
+    "message": "Alright, once the <code>README</code> is updated, I'll merge this commit into the main branch. Nice work, Paweł."
+  },
+  {
+    "timestamp": "09:52",
+    "person-id": 0,
+    "message": "Thanks, <a href=\"#\">@everyone</a>! 🙌"
+  },
+  {
+    "person-id": 4,
+    "loading": true
+  }
+]

+ 0 - 39
src/pages/_data/chat.yml

@@ -1,39 +0,0 @@
-- timestamp: "09:32"
-  person-id: 0
-  message: "Hey guys, I just pushed a new commit on the <code>dev</code> branch. Can you have a look and tell me what you think?"
-- timestamp: "09:34"
-  person-id: 2
-  message: "Sure Paweł, let me pull the latest updates."
-- timestamp: "09:34"
-  person-id: 3
-  message: "I'm on it too 👊"
-- timestamp: "09:40"
-  person-id: 2
-  message: "I see you've refactored the <code>calculateStatistics</code> function. The code is much cleaner now."
-- timestamp: "09:42"
-  person-id: 0
-  message: "Yes, I thought it was getting a bit cluttered."
-- timestamp: "09:43"
-  person-id: 4
-  message: "The commit message is descriptive, too. Good job on mentioning the issue number it fixes."
-- timestamp: "09:44"
-  person-id: 3
-  message: "I noticed you added some new dependencies in the <code>package.json</code>. Did you also update the <code>README</code> with the setup instructions?"
-- timestamp: "09:45"
-  person-id: 0
-  message: "Oops, I forgot. I'll add that right away."
-  gif: "https://media3.giphy.com/media/VABbCpX94WCfS/giphy.gif"
-- timestamp: "09:46"
-  person-id: 2
-  message: "I see a couple of edge cases we might not be handling in the <code>calculateStatistic</code> function. Should I open an issue for that?"
-- timestamp: "09:47"
-  person-id: 0
-  message: "Yes, Bob. Please do. We should not forget to handle those."
-- timestamp: "09:50"
-  person-id: 4
-  message: "Alright, once the <code>README</code> is updated, I'll merge this commit into the main branch. Nice work, Paweł."
-- timestamp: "09:52"
-  person-id: 0
-  message: 'Thanks, <a href="#">@everyone</a>! 🙌'
-- person-id: 4
-  loading: true

+ 8 - 0
src/pages/_data/comments.json

@@ -0,0 +1,8 @@
+[
+  "Where's the old video of you guys going out? I really liked that one... Nonetheless, love the music! :)",
+  "This is PERFECT",
+  "She is so damn beautiful OMG i love her!!! does somebody knows what kind of music is this? sorry xD",
+  "Did anyone go camping in Oshkosh Wisconsin last month?",
+  "Hey i am subbed but i didnt get the notification how?",
+  "This is the best by far! I laughed for the hole sticking time 😂"
+]

+ 0 - 6
src/pages/_data/comments.yml

@@ -1,6 +0,0 @@
-- "Where's the old video of you guys going out? I really liked that one... Nonetheless, love the music! :)"
-- "This is PERFECT"
-- "She is so damn beautiful OMG i love her!!! does somebody knows what kind of music is this? sorry xD"
-- "Did anyone go camping in Oshkosh Wisconsin last month?"
-- "Hey i am subbed but i didnt get the notification how?"
-- "This is the best by far! I laughed for the hole sticking time 😂"

+ 940 - 0
src/pages/_data/commits.json

@@ -0,0 +1,940 @@
+[
+  {
+    "hash": "0964a88ac83d01395476695dd6a1307878543c13",
+    "short_hash": "0964a88",
+    "author": "Martijn Cuppens",
+    "date": "Thu Nov 28 08:48:33 2019 +0100",
+    "description": "Fix dart Sass compatibility (#29755)"
+  },
+  {
+    "hash": "4de4874e722ad934bd3bf21f20a19475096c889a",
+    "short_hash": "4de4874",
+    "author": "Matthieu Vignolle",
+    "date": "Wed Nov 27 07:43:49 2019 +0100",
+    "description": "Change deprecated html tags to text decoration classes (#29604)"
+  },
+  {
+    "hash": "1977a661e64572576f63acfd70f6b62b1beb382e",
+    "short_hash": "1977a66",
+    "author": "cccabinet",
+    "date": "Tue Nov 26 16:11:07 2019 +0900",
+    "description": "justify-content:between ⇒ justify-content:space-between (#29734)"
+  },
+  {
+    "hash": "82d8dae7e738167ea1820c960f25f07fc9721297",
+    "short_hash": "82d8dae",
+    "author": "XhmikosR",
+    "date": "Tue Nov 26 09:00:21 2019 +0200",
+    "description": "Update change-version.js (#29736)"
+  },
+  {
+    "hash": "a84f7233eab6e5713a6cfcb1ab22fafd79422a81",
+    "short_hash": "a84f723",
+    "author": "XhmikosR",
+    "date": "Mon Nov 25 16:30:53 2019 +0200",
+    "description": "Regenerate package-lock.json (#29730)"
+  },
+  {
+    "hash": "2180daa6f53fb9a93e4760baec7f2bd4123e6a3e",
+    "short_hash": "2180daa",
+    "author": "Mark Otto",
+    "date": "Sun Nov 24 10:40:16 2019 -0800",
+    "description": "Some minor text tweaks"
+  },
+  {
+    "hash": "d5c212bbcbcf2efe97540b3b890b4b8bdf6820f2",
+    "short_hash": "d5c212b",
+    "author": "Martijn Cuppens",
+    "date": "Fri Nov 1 11:22:29 2019 +0100",
+    "description": "Link to versioned docs"
+  },
+  {
+    "hash": "ff256ca23c78471dfdc732b7262bece2dad59dff",
+    "short_hash": "ff256ca",
+    "author": "Mark Otto",
+    "date": "Mon Oct 28 09:08:19 2019 +0200",
+    "description": "Copywriting edits"
+  },
+  {
+    "hash": "cd077cd599e55a8a126ce765d8f9adeb595ca3e2",
+    "short_hash": "cd077cd",
+    "author": "Martijn Cuppens",
+    "date": "Sun Oct 27 11:01:30 2019 +0100",
+    "description": "Enable RFS for font resizing"
+  },
+  {
+    "hash": "787256cae401f9ebd8bea1391343a58140d0f235",
+    "short_hash": "787256c",
+    "author": "Martijn Cuppens",
+    "date": "Sun Nov 24 20:20:03 2019 +0100",
+    "description": "Compressed Sass output support (#29702)"
+  },
+  {
+    "hash": "0caed940a578cb920a750dc0ce287c7d71e59a3e",
+    "short_hash": "0caed94",
+    "author": "Jonathan Hefner",
+    "date": "Sun Nov 24 13:15:35 2019 -0600",
+    "description": "Set vertical-align on .form-check-input (#29521)"
+  },
+  {
+    "hash": "460ba061cb470df7aca18b32854079a0caf335dd",
+    "short_hash": "460ba06",
+    "author": "Martijn Cuppens",
+    "date": "Sun Nov 24 20:01:02 2019 +0100",
+    "description": "Keep themed appearance for print (#29714)"
+  },
+  {
+    "hash": "a65d066530c463a973414e894924fd46bd34ee91",
+    "short_hash": "a65d066",
+    "author": "Martijn Cuppens",
+    "date": "Fri Nov 22 10:00:25 2019 +0100",
+    "description": "Use double quotes in `.stylelintrc` (#29709)"
+  },
+  {
+    "hash": "db87297afbc6a6458912d490a2398801ea7108bb",
+    "short_hash": "db87297",
+    "author": "XhmikosR",
+    "date": "Thu Nov 21 16:35:21 2019 +0200",
+    "description": "Regenerate package-lock.json (#29695)"
+  },
+  {
+    "hash": "099860d727f0ed2ab039ccac48e2ead61083427c",
+    "short_hash": "099860d",
+    "author": "XhmikosR",
+    "date": "Mon Nov 18 21:03:43 2019 +0200",
+    "description": "Switch to the Coveralls Action (#29478)"
+  },
+  {
+    "hash": "47b1bc71af5bedab27df115a23237ea30e1ac30e",
+    "short_hash": "47b1bc7",
+    "author": "XhmikosR",
+    "date": "Fri Nov 15 15:52:50 2019 +0200",
+    "description": "Fix npm audit vulnerability (#29677)"
+  },
+  {
+    "hash": "bca5b6ab9ca7277b03562e175e6914e81e27ddd7",
+    "short_hash": "bca5b6a",
+    "author": "XhmikosR",
+    "date": "Tue Nov 12 09:40:29 2019 +0200",
+    "description": "config.yml: update popper.js to v1.16.0 (#29624)"
+  },
+  {
+    "hash": "2a4d526ce81093c1dd26e37d94b9371e89085f52",
+    "short_hash": "2a4d526",
+    "author": "XhmikosR",
+    "date": "Tue Nov 12 09:34:16 2019 +0200",
+    "description": "Update anchor.js to v4.2.1 (#29662)"
+  },
+  {
+    "hash": "cc6f66f72a180af1910bb5f520f2067ad705f1b8",
+    "short_hash": "cc6f66f",
+    "author": "XhmikosR",
+    "date": "Fri Nov 8 10:11:23 2019 +0200",
+    "description": "Dist (#29638)"
+  },
+  {
+    "hash": "eb849d73cda18a660d13c22b25a9e7ebbf42faca",
+    "short_hash": "eb849d7",
+    "author": "Martijn Cuppens",
+    "date": "Thu Nov 7 20:03:52 2019 +0100",
+    "description": "Make check label cursor customizable (#29654)"
+  },
+  {
+    "hash": "dbeb85cb085c6231bd747f5fe597b91ef99ab2ae",
+    "short_hash": "dbeb85c",
+    "author": "Sam Duvall",
+    "date": "Thu Nov 7 13:34:54 2019 -0500",
+    "description": "Fixed input-height-sm and input-height-lg calculations (#29653)"
+  },
+  {
+    "hash": "67015b4aa2c075726aae7e2a2e014c87827f6d20",
+    "short_hash": "67015b4",
+    "author": "Martijn Cuppens",
+    "date": "Thu Nov 7 19:28:51 2019 +0100",
+    "description": "package.json: Add funding property (#29646)"
+  },
+  {
+    "hash": "c9ae98ee38f1c9108b079a0a48a1b21cdbd55001",
+    "short_hash": "c9ae98e",
+    "author": "XhmikosR",
+    "date": "Thu Nov 7 11:33:10 2019 +0200",
+    "description": "Remove shx. (#29636)"
+  },
+  {
+    "hash": "c3fa502d32d78f580760500fe1b91bd0f04b845c",
+    "short_hash": "c3fa502",
+    "author": "XhmikosR",
+    "date": "Thu Nov 7 11:20:12 2019 +0200",
+    "description": "dashboard/index.html: update tabler-icons to v4.24.1 (#29651)"
+  },
+  {
+    "hash": "1d30e05cafd986b1ca067edd20570899b0ad9e94",
+    "short_hash": "1d30e05",
+    "author": "XhmikosR",
+    "date": "Thu Nov 7 10:41:40 2019 +0200",
+    "description": "Regenerate package-lock.json."
+  },
+  {
+    "hash": "258a56b473edea843eb20e80bbc7bf49eb040a32",
+    "short_hash": "258a56b",
+    "author": "XhmikosR",
+    "date": "Mon Nov 4 15:42:09 2019 +0200",
+    "description": "site/assets/js/search.js: ignore the LGTM alert (#29634)"
+  },
+  {
+    "hash": "972369c997e4113607aaa002edd532e3d256f316",
+    "short_hash": "972369c",
+    "author": "XhmikosR",
+    "date": "Thu Oct 24 16:47:38 2019 +0300",
+    "description": "Tighten regex a bit. If we need to make this more robust in the future, we can revert this as needed."
+  },
+  {
+    "hash": "e40b3355f09d444337eb0081877d02329fbf52c9",
+    "short_hash": "e40b335",
+    "author": "XhmikosR",
+    "date": "Tue Sep 17 14:22:56 2019 +0300",
+    "description": "example.html: use double quotes"
+  },
+  {
+    "hash": "04acb679ab4282b50e2c6214c3ce7db634f9c2e1",
+    "short_hash": "04acb67",
+    "author": "Christopher Morrissey",
+    "date": "Fri Sep 6 18:35:43 2019 +0300",
+    "description": "Example shortcode: use a regex and simplify logic."
+  },
+  {
+    "hash": "a28adc76663b00b72abee1ae326b53cc9c9d6b9c",
+    "short_hash": "a28adc7",
+    "author": "XhmikosR",
+    "date": "Mon Nov 4 14:44:07 2019 +0200",
+    "description": "Move docs JS one folder up. (#29632)"
+  },
+  {
+    "hash": "504098d66466488927acd43369b6f0dd40daa1f7",
+    "short_hash": "504098d",
+    "author": "Martijn Cuppens",
+    "date": "Mon Nov 4 13:37:13 2019 +0100",
+    "description": "progress: Fix IE overflow (#29629)"
+  },
+  {
+    "hash": "6b3ee0e5fde816ff3aaad28f55282d5a11328bcc",
+    "short_hash": "6b3ee0e",
+    "author": "Johann-S",
+    "date": "Mon Nov 4 10:50:07 2019 +0100",
+    "description": "removing last occurences of _fixTitle in our docs (#29631)"
+  },
+  {
+    "hash": "8805122f73dc580aab449f6f680eb01b83cafeed",
+    "short_hash": 8805122,
+    "author": "XhmikosR",
+    "date": "Fri Nov 1 13:18:28 2019 +0200",
+    "description": "Update modal.md (#29621) Fix typo"
+  },
+  {
+    "hash": "f2483febb61f6397fd855efe92d2c1e536262c26",
+    "short_hash": "f2483fe",
+    "author": "Martijn Cuppens",
+    "date": "Thu Oct 31 09:56:10 2019 +0100",
+    "description": "Update stylelint-config-twbs-bootstrap to 0.9.0 (#29612)"
+  },
+  {
+    "hash": "08ba61e276a6393e8e2b97d56d2feb70a24fe22c",
+    "short_hash": "08ba61e",
+    "author": "Martijn Cuppens",
+    "date": "Wed Oct 30 09:03:53 2019 +0100",
+    "description": "Remove calc function from docs"
+  },
+  {
+    "hash": "ca9731692ecbff4e3415a77ff28612ed1fc96ac6",
+    "short_hash": "ca97316",
+    "author": "Martijn Cuppens",
+    "date": "Wed Oct 30 08:57:09 2019 +0100",
+    "description": "Add calc() to function blacklist"
+  },
+  {
+    "hash": "9e54d8e1208fbb292d48b879b66d19a404bba538",
+    "short_hash": "9e54d8e",
+    "author": "Mark Otto",
+    "date": "Sat Oct 19 08:32:29 2019 +0300",
+    "description": "Doc tweaks."
+  },
+  {
+    "hash": "32b932c959818a2d7a6651ecc57ad88bc8e0d0ea",
+    "short_hash": "32b932c",
+    "author": "Martijn Cuppens",
+    "date": "Sat Oct 12 16:03:17 2019 +0200",
+    "description": "Revert complex calculation"
+  },
+  {
+    "hash": "d6ebc60d3d98d48959e6e1bd4eeea4d6e8be4366",
+    "short_hash": "d6ebc60",
+    "author": "ysds",
+    "date": "Tue Sep 3 20:18:44 2019 +0300",
+    "description": "Add add and subtract function"
+  },
+  {
+    "hash": "c62efc3ef69d7dd6e784928b707f52884fab87de",
+    "short_hash": "c62efc3",
+    "author": "Steffen Roßkamp",
+    "date": "Thu Oct 31 06:58:09 2019 +0100",
+    "description": "Update normalizeDataKey to match the spec (#29609)"
+  },
+  {
+    "hash": "639c405c6510a286a3cfcfd6d733d28d0e7baf92",
+    "short_hash": "639c405",
+    "author": "Matias Puhakka",
+    "date": "Mon Oct 28 16:19:03 2019 +0200",
+    "description": "Remove redundant \"Navbar divider\" from \"Contents\" (#29601)"
+  },
+  {
+    "hash": "b81a23a60d1a0c137dfeff17ce9f85c80ca9fe5c",
+    "short_hash": "b81a23a",
+    "author": "Mark Otto",
+    "date": "Mon Oct 28 00:12:07 2019 -0700",
+    "description": "Update .form-check to properly support gradients when enabled (#29338)"
+  },
+  {
+    "hash": "9c7bc1a1111940158050db8aaf66340e8ce4d558",
+    "short_hash": "9c7bc1a",
+    "author": "Mark Otto",
+    "date": "Sun Oct 27 20:26:52 2019 -0700",
+    "description": "v5: Simplify navbars by requiring containers (#29339)"
+  },
+  {
+    "hash": "23c3cdbd432947e30c755c56aace15218aafc99a",
+    "short_hash": "23c3cdb",
+    "author": "XhmikosR",
+    "date": "Sun Oct 27 16:39:54 2019 +0200",
+    "description": "Remove unneeded ESLint suppression and regenerate lock file (#29593)"
+  },
+  {
+    "hash": "819f922276de18cbddb8f5d484b34e4a1a132886",
+    "short_hash": "819f922",
+    "author": "midzer",
+    "date": "Sat Oct 26 18:47:55 2019 +0200",
+    "description": "remove superflous transition parameter (#29595)"
+  },
+  {
+    "hash": "46912797b24f12817c24d84a1a80a72d224d1b3a",
+    "short_hash": 4691279,
+    "author": "Higor Araújo dos Anjos",
+    "date": "Fri Oct 25 15:12:09 2019 -0300",
+    "description": "Added animation when modal backdrop is static (#29516)"
+  },
+  {
+    "hash": "9ee9b8a1e8f6b2c9d1cbec6cf5c04ac5b8a2b378",
+    "short_hash": "9ee9b8a",
+    "author": "Martijn Cuppens",
+    "date": "Fri Oct 25 11:37:52 2019 +0200",
+    "description": "Add configurable button text wrapping (#29554)"
+  },
+  {
+    "hash": "b3dfcdc7ed066469074e96d9ca80b0684d185d82",
+    "short_hash": "b3dfcdc",
+    "author": "Pawel Wolak",
+    "date": "Fri Oct 25 11:25:30 2019 +0200",
+    "description": "Enable eslint no-console rule except for build directory (#29585)"
+  },
+  {
+    "hash": "e298e42e29022f275c42273e07cda7618b5d96c3",
+    "short_hash": "e298e42",
+    "author": "XhmikosR",
+    "date": "Tue Oct 22 20:56:19 2019 +0300",
+    "description": "Regenerate package-lock.json (#29571)"
+  },
+  {
+    "hash": "6c0e75d6cf6f4a37eede6f221b4be83d29d31742",
+    "short_hash": "6c0e75d",
+    "author": "XhmikosR",
+    "date": "Tue Oct 22 12:22:27 2019 +0300",
+    "description": "Fix one dev npm vulnerability. (#29568)"
+  },
+  {
+    "hash": "b91ce0940573dba21c574927e16ea092e3d50df5",
+    "short_hash": "b91ce09",
+    "author": "XhmikosR",
+    "date": "Tue Oct 22 07:49:06 2019 +0300",
+    "description": "Update hugo-bin to v0.47.0 (Hugo 0.59.0) (#29562)"
+  },
+  {
+    "hash": "3b876be65273eb4e1096a7420f4b73767607fe59",
+    "short_hash": "3b876be",
+    "author": "Shohei Yoshida",
+    "date": "Tue Oct 22 11:27:43 2019 +0900",
+    "description": "Rename close icon to close button (#29387)"
+  },
+  {
+    "hash": "3251de8d57b8e11b9dda0984298028cc977642eb",
+    "short_hash": "3251de8",
+    "author": "XhmikosR",
+    "date": "Tue Oct 22 05:11:22 2019 +0300",
+    "description": "Get rid of unneeded `div`s. (#29563)"
+  },
+  {
+    "hash": "f3e84e026863e6a4bbc471a8e6c84e9a3b254c55",
+    "short_hash": "f3e84e0",
+    "author": "XhmikosR",
+    "date": "Sun Oct 20 18:57:15 2019 +0300",
+    "description": "Update popper.js to v1.16.0. (#29537)"
+  },
+  {
+    "hash": "8d56c19b5509ef5b6358ee4b646a80bdffbe7396",
+    "short_hash": "8d56c19",
+    "author": "Mark Otto",
+    "date": "Fri Oct 18 11:06:12 2019 -0700",
+    "description": "v5: Icons docs cleanup (#29450)"
+  },
+  {
+    "hash": "943bef258d661e0d752f2c4f129952fe2a9de47e",
+    "short_hash": "943bef2",
+    "author": "Mark Otto",
+    "date": "Fri Oct 18 11:04:27 2019 -0700",
+    "description": "v5: Update colors to add shades and tints (#29348)"
+  },
+  {
+    "hash": "1fa337cc201a5c55f699af03595821b9c06273df",
+    "short_hash": "1fa337c",
+    "author": "Mark Otto",
+    "date": "Fri Oct 18 00:28:17 2019 -0700",
+    "description": "Add link to Icons site in our docs (#29544)"
+  },
+  {
+    "hash": "c1ee395f80c05de8317588b07f34a65c5b95c42c",
+    "short_hash": "c1ee395",
+    "author": "Jeremy Jackson",
+    "date": "Thu Oct 17 15:01:44 2019 +0000",
+    "description": "Skip hidden dropdowns while focusing (#29523)"
+  },
+  {
+    "hash": "104385c508a4c77761b04a9842e978bab6f359f6",
+    "short_hash": "104385c",
+    "author": "Mark Otto",
+    "date": "Wed Oct 16 23:46:34 2019 -0700",
+    "description": "Add make-col-auto mixin (#29367)"
+  },
+  {
+    "hash": "b483f80b9ea79318273299c7b365c3abff3bfeea",
+    "short_hash": "b483f80",
+    "author": "XhmikosR",
+    "date": "Wed Oct 16 18:06:26 2019 +0300",
+    "description": "Update dependabot config (#29536)"
+  },
+  {
+    "hash": "2a8486962ef0260553432ce1a0401cabba81b968",
+    "short_hash": "2a84869",
+    "author": "XhmikosR",
+    "date": "Wed Oct 16 14:48:28 2019 +0300",
+    "description": "Add dependabot config (#29526)"
+  },
+  {
+    "hash": "b4e957d360899c2555cb29a3ae4589405883bba9",
+    "short_hash": "b4e957d",
+    "author": "XhmikosR",
+    "date": "Mon Oct 14 10:54:39 2019 +0300",
+    "description": "Update devDependencies. (#29508)"
+  },
+  {
+    "hash": "7327e38b1c767051658e68171994042649a4203a",
+    "short_hash": 7.327e+41,
+    "author": "Martijn Cuppens",
+    "date": "Sat Oct 12 15:07:22 2019 +0200",
+    "description": "Fix top level ampersand (#29518)"
+  },
+  {
+    "hash": "64e22b42842b2d216f328a94ff9105da744bccbe",
+    "short_hash": "64e22b4",
+    "author": "leshasmp",
+    "date": "Sat Oct 12 17:09:04 2019 +0500",
+    "description": "Carousel variables (#29493)"
+  },
+  {
+    "hash": "09e6af48d7f44900e38d5676fb01ad7bb9ddd24b",
+    "short_hash": "09e6af4",
+    "author": "astrahov",
+    "date": "Sat Oct 12 16:56:29 2019 +0500",
+    "description": "Group line-height variables (#29466)"
+  },
+  {
+    "hash": "4e37fc3ab4b9441ec749ab91edff66b7fc192456",
+    "short_hash": "4e37fc3",
+    "author": "Jeremy Jackson",
+    "date": "Sat Oct 12 08:21:22 2019 +0000",
+    "description": "Add color argument to button mixins (#29444)"
+  },
+  {
+    "hash": "b3451ff258fad12e0803d3c4c0331230748720b8",
+    "short_hash": "b3451ff",
+    "author": "Mark Otto",
+    "date": "Thu Oct 10 11:18:19 2019 -0700",
+    "description": "Add new .bg-body utility class (#29511)"
+  },
+  {
+    "hash": "133e0c8c9a7fdb7bd4d5ebd82ce6d8dc944e0a4f",
+    "short_hash": "133e0c8",
+    "author": "XhmikosR",
+    "date": "Wed Oct 9 11:11:37 2019 +0300",
+    "description": "Drop support for Node.js 8. (#29496)"
+  },
+  {
+    "hash": "577bf8b14d76a864a8d69dbfb03b757fbeb6e241",
+    "short_hash": "577bf8b",
+    "author": "XhmikosR",
+    "date": "Wed Oct 9 01:27:43 2019 +0300",
+    "description": "Rename \"js/tests/units\" to \"js/tests/unit\". (#29503)"
+  },
+  {
+    "hash": "1770691b339bdbf17de5e8824158b358dc0284a9",
+    "short_hash": 1770691,
+    "author": "XhmikosR",
+    "date": "Tue Oct 8 09:39:10 2019 +0300",
+    "description": "Dist (#29484)"
+  },
+  {
+    "hash": "9c54d3579757aa1e4027ff8fb434a18c656d840c",
+    "short_hash": "9c54d35",
+    "author": "XhmikosR",
+    "date": "Tue Oct 8 08:47:40 2019 +0300",
+    "description": "CI: move `CI` env variable to the root of the workflow. (#29499)"
+  },
+  {
+    "hash": "622c914a3acc1ab933b3e89d8abfdd63feeb4016",
+    "short_hash": "622c914",
+    "author": "XhmikosR",
+    "date": "Mon Oct 7 09:31:12 2019 +0300",
+    "description": "Update devDependencies. (#29447)"
+  },
+  {
+    "hash": "60559d44a2166708a4dc2f6ccb835052da08ab65",
+    "short_hash": "60559d4",
+    "author": "astrahov",
+    "date": "Thu Oct 3 20:54:34 2019 +0500",
+    "description": "Add variable for `$breadcrumb-font-size` (#29467)"
+  },
+  {
+    "hash": "e1b82f51e21b6329d783406cfbc9c847c798ef23",
+    "short_hash": "e1b82f5",
+    "author": "Johann-S",
+    "date": "Wed Oct 2 14:32:29 2019 +0200",
+    "description": "add modularity integration test"
+  },
+  {
+    "hash": "3d12b541c488ea09efced2fb987fcbf384c656bb",
+    "short_hash": "3d12b54",
+    "author": "Johann-S",
+    "date": "Wed Oct 2 11:43:54 2019 +0200",
+    "description": "return to the original file structure to avoid breaking modularity"
+  },
+  {
+    "hash": "393ddae09b0578c8d381540bdbb4e68cdec1b45b",
+    "short_hash": "393ddae",
+    "author": "Martijn Cuppens",
+    "date": "Thu Oct 3 09:43:45 2019 +0200",
+    "description": "Fix border for single card in accordion (#29453)"
+  },
+  {
+    "hash": "03c9788f7a0293beef328c004b124f4433c3c64d",
+    "short_hash": "03c9788",
+    "author": "Martijn Cuppens",
+    "date": "Thu Oct 3 09:21:40 2019 +0200",
+    "description": "Variable card height (#29462)"
+  },
+  {
+    "hash": "f6a1e2fc8990f2c8975b0f27fc14027a6f7e9fae",
+    "short_hash": "f6a1e2f",
+    "author": "Paweł Kuna",
+    "date": "Thu Oct 3 08:52:25 2019 +0200",
+    "description": "Better radio input (#29441)"
+  },
+  {
+    "hash": "494713b55a40d5b1216acd8b44fe0e463224f73d",
+    "short_hash": "494713b",
+    "author": "Martijn Cuppens",
+    "date": "Wed Oct 2 21:48:15 2019 +0200",
+    "description": "Trim trailing whitespace from markdown files (#29460)"
+  },
+  {
+    "hash": "de8c65158be3bbf150b9352a3985762c7e094933",
+    "short_hash": "de8c651",
+    "author": "Martijn Cuppens",
+    "date": "Wed Oct 2 21:37:24 2019 +0200",
+    "description": "Remove appearance from textarea (#29455)"
+  },
+  {
+    "hash": "707973ebdd2ea058b297456ee6c7b0a27b725089",
+    "short_hash": "707973e",
+    "author": "Mark Otto",
+    "date": "Wed Oct 2 12:19:45 2019 -0700",
+    "description": "v5: .form-check layout changes (#29322)"
+  },
+  {
+    "hash": "c306e963e8f75cf4e2b5b7b656266b6df01c8b83",
+    "short_hash": "c306e96",
+    "author": "Andreas Schroth",
+    "date": "Wed Oct 2 21:10:31 2019 +0200",
+    "description": "Remove \"extra\" section from composer.json (#29420)"
+  },
+  {
+    "hash": "e41342b4c1be70ff8d6074f37ecc49dec632d80c",
+    "short_hash": "e41342b",
+    "author": "XhmikosR",
+    "date": "Wed Oct 2 22:05:15 2019 +0300",
+    "description": "coveralls: Add `COVERALLS_GIT_BRANCH` (#29458)"
+  },
+  {
+    "hash": "b1a4b0ecc42e5d2359f18d6430b9386defdb9ddb",
+    "short_hash": "b1a4b0e",
+    "author": "XhmikosR",
+    "date": "Wed Oct 2 21:56:39 2019 +0300",
+    "description": "workflows/test.yml: specify `CI=true` (#29440)"
+  },
+  {
+    "hash": "adfd3fbd4689b8d373d55df56bead6d09c728fcd",
+    "short_hash": "adfd3fb",
+    "author": "XhmikosR",
+    "date": "Wed Oct 2 21:49:34 2019 +0300",
+    "description": "README.md: link to the Actions page for Tests (#29480)"
+  },
+  {
+    "hash": "46e8f1a34fe00468209f46b12aac6323b5322eee",
+    "short_hash": "46e8f1a",
+    "author": "astrahov",
+    "date": "Tue Oct 1 18:14:43 2019 +0500",
+    "description": "Variable carousel indicator opacity (#29468)"
+  },
+  {
+    "hash": "0a3aa08b89031a835e73b53b161ba6c6d1cab848",
+    "short_hash": "0a3aa08",
+    "author": "Paweł Kuna",
+    "date": "Fri Sep 27 17:58:53 2019 +0200",
+    "description": "Remove outline from select box in FF (#29445)"
+  },
+  {
+    "hash": "f2dff864aa09140dd7edc6b5e27ecf590f2f7fa5",
+    "short_hash": "f2dff86",
+    "author": "wojtask9",
+    "date": "Fri Sep 27 14:22:31 2019 +0200",
+    "description": "Remove duplicated td selector (#29454)"
+  },
+  {
+    "hash": "6b150855df836210188b0cec5e989468ca5e9611",
+    "short_hash": "6b15085",
+    "author": "XhmikosR",
+    "date": "Fri Sep 27 09:01:36 2019 +0300",
+    "description": "Change blue and pink colors to be accessible. (#29198)"
+  },
+  {
+    "hash": "de3a3731bd8034536654053130663d12ff1ec811",
+    "short_hash": "de3a373",
+    "author": "XhmikosR",
+    "date": "Thu Sep 26 21:50:14 2019 +0300",
+    "description": "Sass: remove redundant stylelint inline suppressions. (#29427)"
+  },
+  {
+    "hash": "7e0901779043aa0357fa39e7544b60c2054cce01",
+    "short_hash": null,
+    "author": "XhmikosR",
+    "date": "Tue Sep 24 21:32:49 2019 +0300",
+    "description": "`update-deps`: remove moot `cross-env` call. (#29419)"
+  },
+  {
+    "hash": "d2a24e09ecfd453618f7bd6c07bc0546e38fb261",
+    "short_hash": "d2a24e0",
+    "author": "Shohei Yoshida",
+    "date": "Tue Sep 24 19:48:45 2019 +0900",
+    "description": "Grid card example tweaks (#29409)"
+  },
+  {
+    "hash": "84861ceadbb09ada3598a632fd0f5e1cc80b0e7a",
+    "short_hash": "84861ce",
+    "author": "XhmikosR",
+    "date": "Tue Sep 17 21:34:53 2019 +0300",
+    "description": ".eslintrc.json: Remove a couple of default rules."
+  },
+  {
+    "hash": "90c5de151be15815469a07b2c7aa4ab0c01f2a86",
+    "short_hash": "90c5de1",
+    "author": "XhmikosR",
+    "date": "Tue Sep 24 12:53:50 2019 +0300",
+    "description": "GH Actions updates. (#29429)"
+  },
+  {
+    "hash": "129bb08fc4d2c850ae71250371adf82a4441dc70",
+    "short_hash": "129bb08",
+    "author": "XhmikosR",
+    "date": "Tue Sep 17 00:22:49 2019 +0300",
+    "description": "Use Hugo for our docs Sass and JS. (#29280)"
+  },
+  {
+    "hash": "a9c05ab798df7b1a40af41c25dd92faa84b13f99",
+    "short_hash": "a9c05ab",
+    "author": "XhmikosR",
+    "date": "Wed Aug 28 17:31:45 2019 +0300",
+    "description": "examples: darken gray a little bit."
+  },
+  {
+    "hash": "758ee5f0f8c31f0140cd3df62cd3dd0eef33eecd",
+    "short_hash": "758ee5f",
+    "author": "XhmikosR",
+    "date": "Mon Aug 5 16:11:51 2019 +0300",
+    "description": "card.md: use `text-dark` for warning card."
+  },
+  {
+    "hash": "1edba8072db996d72a9b774953c9137eb2159432",
+    "short_hash": "1edba80",
+    "author": "XhmikosR",
+    "date": "Sat Aug 3 18:47:13 2019 +0300",
+    "description": "badge.md: use `text-dark` for warning."
+  },
+  {
+    "hash": "fbeed6f1d9a89d2fbe97312dfb94b6b8f85c195b",
+    "short_hash": "fbeed6f",
+    "author": "XhmikosR",
+    "date": "Sat Aug 3 18:27:11 2019 +0300",
+    "description": "Darken footer color."
+  },
+  {
+    "hash": "943a074a2ba9dc753cb4e27075246b7e82eeb306",
+    "short_hash": "943a074",
+    "author": "XhmikosR",
+    "date": "Sat Aug 3 18:20:45 2019 +0300",
+    "description": "Tweak syntax highlighting colors to be WCAG2AA valid."
+  },
+  {
+    "hash": "0126d9832b03fbb584066cc5f1eeadd283665ed6",
+    "short_hash": "0126d98",
+    "author": "XhmikosR",
+    "date": "Mon Sep 16 15:28:25 2019 +0300",
+    "description": "workflows/test.yml: switch to `setup-node@v1`. (#29410)"
+  },
+  {
+    "hash": "e2a93ec094d6ec1283c10a220b26a2acb4b7417c",
+    "short_hash": "e2a93ec",
+    "author": "ysds",
+    "date": "Thu Sep 12 23:30:47 2019 +0900",
+    "description": "Fix incorrect aspect ratio on IE11"
+  },
+  {
+    "hash": "6e638685002e8d5f5c42b274ce87ae3d044d52f2",
+    "short_hash": null,
+    "author": "Martijn Cuppens",
+    "date": "Thu Apr 25 21:10:55 2019 +0200",
+    "description": "Remove redundant properties"
+  },
+  {
+    "hash": "d99ff902f8c7b849ccb283af69d6a8ac15356450",
+    "short_hash": "d99ff90",
+    "author": "jahanzaibsuleman07",
+    "date": "Fri Sep 13 23:15:20 2019 +0500",
+    "description": "Responsive sticky top (#29158)"
+  },
+  {
+    "hash": "49469ca0dc383626b201d91b66bd4aaed8dceb0f",
+    "short_hash": "49469ca",
+    "author": "XhmikosR",
+    "date": "Fri Sep 13 12:13:08 2019 +0300",
+    "description": "Update devDependencies. (#29381)"
+  },
+  {
+    "hash": "2f549ecda8b154ac9203056786e77c8271e78f30",
+    "short_hash": "2f549ec",
+    "author": "Martijn Cuppens",
+    "date": "Sat Sep 7 21:16:48 2019 +0200",
+    "description": "Typo fix (#29382)"
+  },
+  {
+    "hash": "713dd824038aba59185b05e4c87bce8e5452e893",
+    "short_hash": "713dd82",
+    "author": "ysds",
+    "date": "Fri Sep 6 23:57:29 2019 +0900",
+    "description": "Remove unnecessary z-index"
+  },
+  {
+    "hash": "9066f9495cb41459574ab181fc3d435c1b4e358a",
+    "short_hash": "9066f94",
+    "author": "Martijn Cuppens",
+    "date": "Fri Sep 6 09:24:08 2019 +0200",
+    "description": "Make sure the content doesn't cover the navbar dropdown"
+  },
+  {
+    "hash": "c5e80ff2afe056fc959cd14b2ffda88016e0b81d",
+    "short_hash": "c5e80ff",
+    "author": "XhmikosR",
+    "date": "Sat Aug 31 14:41:15 2019 +0300",
+    "description": "about/brand.md: Remove unused class."
+  },
+  {
+    "hash": "c6ac6365e57efeff86b2b099703c907c3d57b261",
+    "short_hash": "c6ac636",
+    "author": "XhmikosR",
+    "date": "Sat Aug 31 14:30:29 2019 +0300",
+    "description": "Use the `$white` variable."
+  },
+  {
+    "hash": "b6b96c174bff4b27800fb9ddec75328d1ef30322",
+    "short_hash": "b6b96c1",
+    "author": "Martijn Cuppens",
+    "date": "Fri Aug 30 23:32:12 2019 +0300",
+    "description": "Docs tweaks"
+  },
+  {
+    "hash": "d6945d5e8fa66a84cf363d9ff710684971bdea85",
+    "short_hash": "d6945d5",
+    "author": "XhmikosR",
+    "date": "Sun Sep 1 13:37:24 2019 +0300",
+    "description": "Move shortcodes used only once where they are needed."
+  },
+  {
+    "hash": "2c9e22ef889b1b88df7b956d705a1069c10d5e68",
+    "short_hash": "2c9e22e",
+    "author": "XhmikosR",
+    "date": "Sun Sep 1 13:23:58 2019 +0300",
+    "description": "getting-started/theming.md: throw an error if the regex doesn't succeed."
+  },
+  {
+    "hash": "cf4ae75eff7d432962cc67d56d4ede3b9e3ac42c",
+    "short_hash": "cf4ae75",
+    "author": "XhmikosR",
+    "date": "Sun Sep 1 13:23:31 2019 +0300",
+    "description": "Break a couple of long lines."
+  },
+  {
+    "hash": "f7fe5d5bca78354c1ff27340702593ca5f81a3a3",
+    "short_hash": "f7fe5d5",
+    "author": "XhmikosR",
+    "date": "Fri Sep 6 08:51:46 2019 +0300",
+    "description": "homepage: remove redundant class (#29357)"
+  },
+  {
+    "hash": "eb49bd11c9e5f2705d4efa78c029a1de3a2fb832",
+    "short_hash": "eb49bd1",
+    "author": "Mark Otto",
+    "date": "Thu Sep 5 11:43:31 2019 -0700",
+    "description": "Update subnav to remove breadcrumb and just keep versions and search (#29368)"
+  },
+  {
+    "hash": "c6a82fcc6f46cc8679df45142dfd2de3312b85e6",
+    "short_hash": "c6a82fc",
+    "author": "XhmikosR",
+    "date": "Thu Sep 5 11:23:34 2019 +0300",
+    "description": "Update devDependencies. (#29349)"
+  },
+  {
+    "hash": "db002902da3a56db6d4d65ea8ae78212c91ea3a1",
+    "short_hash": "db00290",
+    "author": "XhmikosR",
+    "date": "Tue Sep 3 18:04:11 2019 +0300",
+    "description": "Tweak form validation snippet. (#29359)"
+  },
+  {
+    "hash": "d0affaa2eccdd0ab697bc3eee57b6c22f4bc24f9",
+    "short_hash": "d0affaa",
+    "author": "XhmikosR",
+    "date": "Mon Sep 2 19:19:25 2019 +0300",
+    "description": "Examples: use our utilities more. (#29358)"
+  },
+  {
+    "hash": "88d7d8b8223911726d8a0aeed9a16010dca04287",
+    "short_hash": "88d7d8b",
+    "author": "XhmikosR",
+    "date": "Mon Sep 2 12:52:26 2019 +0300",
+    "description": "Use the example shortcode in more places. (#29346)"
+  },
+  {
+    "hash": "6cb4ebc04870df30d5b6ec528ffcb84a07ab48c5",
+    "short_hash": "6cb4ebc",
+    "author": "XhmikosR",
+    "date": "Mon Sep 2 12:44:19 2019 +0300",
+    "description": "ESLint: specify `--report-unused-disable-directives` (#29350)"
+  },
+  {
+    "hash": "6f1eb110e7c39dc2fb7e2126248b320519ae037a",
+    "short_hash": "6f1eb11",
+    "author": "XhmikosR",
+    "date": "Mon Sep 2 12:31:02 2019 +0300",
+    "description": "Docs: simplify a few Hugo `range`s. (#29333)"
+  },
+  {
+    "hash": "edf7923c8f04b436291c0c2b8e405be7ae3f6ab1",
+    "short_hash": "edf7923",
+    "author": "XhmikosR",
+    "date": "Mon Sep 2 12:21:42 2019 +0300",
+    "description": "Fix a few redirected links. (#29352)"
+  },
+  {
+    "hash": "919b526f17a08cefba51c42b831c922adecb4a9f",
+    "short_hash": "919b526",
+    "author": "XhmikosR",
+    "date": "Sat Aug 31 08:11:16 2019 +0300",
+    "description": "Fix shortcodes/example.html class bug. (#29344)"
+  },
+  {
+    "hash": "b1f49092877c83bf2007cc363fc5c6925cc0dc8c",
+    "short_hash": "b1f4909",
+    "author": "ysds",
+    "date": "Thu Aug 29 22:12:26 2019 +0900",
+    "description": "Add responsive example"
+  },
+  {
+    "hash": "ebfeaa4ad18aa67c8ff91ff483f1f3634b2afc85",
+    "short_hash": "ebfeaa4",
+    "author": "ysds",
+    "date": "Wed Aug 28 23:37:39 2019 +0900",
+    "description": "Allow override default col width"
+  },
+  {
+    "hash": "cc248791b0f260aa6e0505a0aa7c3faeb1cbc797",
+    "short_hash": "cc24879",
+    "author": "Mark Otto",
+    "date": "Tue Jul 23 23:00:29 2019 -0700",
+    "description": "Cleanup"
+  },
+  {
+    "hash": "db692d02d555a66219283d5e2150a681fafee1e6",
+    "short_hash": "db692d0",
+    "author": "Mark Otto",
+    "date": "Thu Jul 18 02:48:43 2019 +0300",
+    "description": "Move margins, and equal height via utility example"
+  },
+  {
+    "hash": "e2252e023096daa7e852835a69c360484765c42b",
+    "short_hash": "e2252e0",
+    "author": "Mark Otto",
+    "date": "Thu Jul 18 02:27:53 2019 +0300",
+    "description": "First pass at .row-cols classes"
+  },
+  {
+    "hash": "4041d70eb5462fe8fdd08040f68fcb0ccf67935e",
+    "short_hash": "4041d70",
+    "author": "XhmikosR",
+    "date": "Fri Aug 30 17:35:12 2019 +0300",
+    "description": "card.md remove empty `class` placeholder argument (#29345)"
+  },
+  {
+    "hash": "aa3b4c41a4d98e054b0e18c0193efcce0db39d71",
+    "short_hash": "aa3b4c4",
+    "author": "XhmikosR",
+    "date": "Fri Aug 30 17:21:47 2019 +0300",
+    "description": "carousel.md: Remove duplicate bd-example div. (#29341)"
+  },
+  {
+    "hash": "a6460d972743ecf4cf1fc382dafd06af945fff0a",
+    "short_hash": "a6460d9",
+    "author": "XhmikosR",
+    "date": "Fri Aug 30 11:52:22 2019 +0300",
+    "description": "Merge lint scripts (#29329)"
+  },
+  {
+    "hash": "007ea0d8d043a788383109e1883717875fa5530d",
+    "short_hash": "007ea0d",
+    "author": "Martijn Cuppens",
+    "date": "Fri Aug 30 09:42:41 2019 +0200",
+    "description": "Clean up line heights & add line height utilities (#29271)"
+  },
+  {
+    "hash": "ae249e8f559b88f9db78ed96a39f680aea43c051",
+    "short_hash": "ae249e8",
+    "author": "XhmikosR",
+    "date": "Fri Aug 30 08:01:21 2019 +0300",
+    "description": "docs-sidebar.html: reindent. (#29337)"
+  }
+]

+ 0 - 803
src/pages/_data/commits.yml

@@ -1,803 +0,0 @@
-- hash: 0964a88ac83d01395476695dd6a1307878543c13
-  short_hash: 0964a88
-  author: Martijn Cuppens
-  date: Thu Nov 28 08:48:33 2019 +0100
-  description: Fix dart Sass compatibility (#29755)
-
-- hash: 4de4874e722ad934bd3bf21f20a19475096c889a
-  short_hash: 4de4874
-  author: Matthieu Vignolle
-  date: Wed Nov 27 07:43:49 2019 +0100
-  description: Change deprecated html tags to text decoration classes (#29604)
-
-- hash: 1977a661e64572576f63acfd70f6b62b1beb382e
-  short_hash: 1977a66
-  author: cccabinet
-  date: Tue Nov 26 16:11:07 2019 +0900
-  description: justify-content:between ⇒ justify-content:space-between (#29734)
-
-- hash: 82d8dae7e738167ea1820c960f25f07fc9721297
-  short_hash: 82d8dae
-  author: XhmikosR
-  date: Tue Nov 26 09:00:21 2019 +0200
-  description: Update change-version.js (#29736)
-
-- hash: a84f7233eab6e5713a6cfcb1ab22fafd79422a81
-  short_hash: a84f723
-  author: XhmikosR
-  date: Mon Nov 25 16:30:53 2019 +0200
-  description: Regenerate package-lock.json (#29730)
-
-- hash: 2180daa6f53fb9a93e4760baec7f2bd4123e6a3e
-  short_hash: 2180daa
-  author: Mark Otto
-  date: Sun Nov 24 10:40:16 2019 -0800
-  description: Some minor text tweaks
-
-- hash: d5c212bbcbcf2efe97540b3b890b4b8bdf6820f2
-  short_hash: d5c212b
-  author: Martijn Cuppens
-  date: Fri Nov 1 11:22:29 2019 +0100
-  description: Link to versioned docs
-
-- hash: ff256ca23c78471dfdc732b7262bece2dad59dff
-  short_hash: ff256ca
-  author: Mark Otto
-  date: Mon Oct 28 09:08:19 2019 +0200
-  description: Copywriting edits
-
-- hash: cd077cd599e55a8a126ce765d8f9adeb595ca3e2
-  short_hash: cd077cd
-  author: Martijn Cuppens
-  date: Sun Oct 27 11:01:30 2019 +0100
-  description: Enable RFS for font resizing
-
-- hash: 787256cae401f9ebd8bea1391343a58140d0f235
-  short_hash: 787256c
-  author: Martijn Cuppens
-  date: Sun Nov 24 20:20:03 2019 +0100
-  description: Compressed Sass output support (#29702)
-
-- hash: 0caed940a578cb920a750dc0ce287c7d71e59a3e
-  short_hash: 0caed94
-  author: Jonathan Hefner
-  date: Sun Nov 24 13:15:35 2019 -0600
-  description: Set vertical-align on .form-check-input (#29521)
-
-- hash: 460ba061cb470df7aca18b32854079a0caf335dd
-  short_hash: 460ba06
-  author: Martijn Cuppens
-  date: Sun Nov 24 20:01:02 2019 +0100
-  description: Keep themed appearance for print (#29714)
-
-- hash: a65d066530c463a973414e894924fd46bd34ee91
-  short_hash: a65d066
-  author: Martijn Cuppens
-  date: Fri Nov 22 10:00:25 2019 +0100
-  description: Use double quotes in `.stylelintrc` (#29709)
-
-- hash: db87297afbc6a6458912d490a2398801ea7108bb
-  short_hash: db87297
-  author: XhmikosR
-  date: Thu Nov 21 16:35:21 2019 +0200
-  description: Regenerate package-lock.json (#29695)
-
-- hash: 099860d727f0ed2ab039ccac48e2ead61083427c
-  short_hash: 099860d
-  author: XhmikosR
-  date: Mon Nov 18 21:03:43 2019 +0200
-  description: Switch to the Coveralls Action (#29478)
-
-- hash: 47b1bc71af5bedab27df115a23237ea30e1ac30e
-  short_hash: 47b1bc7
-  author: XhmikosR
-  date: Fri Nov 15 15:52:50 2019 +0200
-  description: Fix npm audit vulnerability (#29677)
-
-- hash: bca5b6ab9ca7277b03562e175e6914e81e27ddd7
-  short_hash: bca5b6a
-  author: XhmikosR
-  date: Tue Nov 12 09:40:29 2019 +0200
-  description: "config.yml: update popper.js to v1.16.0 (#29624)"
-
-- hash: 2a4d526ce81093c1dd26e37d94b9371e89085f52
-  short_hash: 2a4d526
-  author: XhmikosR
-  date: Tue Nov 12 09:34:16 2019 +0200
-  description: Update anchor.js to v4.2.1 (#29662)
-
-- hash: cc6f66f72a180af1910bb5f520f2067ad705f1b8
-  short_hash: cc6f66f
-  author: XhmikosR
-  date: Fri Nov 8 10:11:23 2019 +0200
-  description: Dist (#29638)
-
-- hash: eb849d73cda18a660d13c22b25a9e7ebbf42faca
-  short_hash: eb849d7
-  author: Martijn Cuppens
-  date: Thu Nov 7 20:03:52 2019 +0100
-  description: Make check label cursor customizable (#29654)
-
-- hash: dbeb85cb085c6231bd747f5fe597b91ef99ab2ae
-  short_hash: dbeb85c
-  author: Sam Duvall
-  date: Thu Nov 7 13:34:54 2019 -0500
-  description: Fixed input-height-sm and input-height-lg calculations (#29653)
-
-- hash: 67015b4aa2c075726aae7e2a2e014c87827f6d20
-  short_hash: 67015b4
-  author: Martijn Cuppens
-  date: Thu Nov 7 19:28:51 2019 +0100
-  description: "package.json: Add funding property (#29646)"
-
-- hash: c9ae98ee38f1c9108b079a0a48a1b21cdbd55001
-  short_hash: c9ae98e
-  author: XhmikosR
-  date: Thu Nov 7 11:33:10 2019 +0200
-  description: Remove shx. (#29636)
-
-- hash: c3fa502d32d78f580760500fe1b91bd0f04b845c
-  short_hash: c3fa502
-  author: XhmikosR
-  date: Thu Nov 7 11:20:12 2019 +0200
-  description: "dashboard/index.html: update tabler-icons to v4.24.1 (#29651)"
-
-- hash: 1d30e05cafd986b1ca067edd20570899b0ad9e94
-  short_hash: 1d30e05
-  author: XhmikosR
-  date: Thu Nov 7 10:41:40 2019 +0200
-  description: Regenerate package-lock.json.
-
-- hash: 258a56b473edea843eb20e80bbc7bf49eb040a32
-  short_hash: 258a56b
-  author: XhmikosR
-  date: Mon Nov 4 15:42:09 2019 +0200
-  description: "site/assets/js/search.js: ignore the LGTM alert (#29634)"
-
-- hash: 972369c997e4113607aaa002edd532e3d256f316
-  short_hash: 972369c
-  author: XhmikosR
-  date: Thu Oct 24 16:47:38 2019 +0300
-  description: Tighten regex a bit. If we need to make this more robust in the future, we can revert this as needed.
-
-- hash: e40b3355f09d444337eb0081877d02329fbf52c9
-  short_hash: e40b335
-  author: XhmikosR
-  date: Tue Sep 17 14:22:56 2019 +0300
-  description: "example.html: use double quotes"
-
-- hash: 04acb679ab4282b50e2c6214c3ce7db634f9c2e1
-  short_hash: 04acb67
-  author: Christopher Morrissey
-  date: Fri Sep 6 18:35:43 2019 +0300
-  description: "Example shortcode: use a regex and simplify logic."
-
-- hash: a28adc76663b00b72abee1ae326b53cc9c9d6b9c
-  short_hash: a28adc7
-  author: XhmikosR
-  date: Mon Nov 4 14:44:07 2019 +0200
-  description: Move docs JS one folder up. (#29632)
-
-- hash: 504098d66466488927acd43369b6f0dd40daa1f7
-  short_hash: 504098d
-  author: Martijn Cuppens
-  date: Mon Nov 4 13:37:13 2019 +0100
-  description: "progress: Fix IE overflow (#29629)"
-
-- hash: 6b3ee0e5fde816ff3aaad28f55282d5a11328bcc
-  short_hash: 6b3ee0e
-  author: Johann-S
-  date: Mon Nov 4 10:50:07 2019 +0100
-  description: removing last occurences of _fixTitle in our docs (#29631)
-
-- hash: 8805122f73dc580aab449f6f680eb01b83cafeed
-  short_hash: 8805122
-  author: XhmikosR
-  date: Fri Nov 1 13:18:28 2019 +0200
-  description: Update modal.md (#29621) Fix typo
-
-- hash: f2483febb61f6397fd855efe92d2c1e536262c26
-  short_hash: f2483fe
-  author: Martijn Cuppens
-  date: Thu Oct 31 09:56:10 2019 +0100
-  description: Update stylelint-config-twbs-bootstrap to 0.9.0 (#29612)
-
-- hash: 08ba61e276a6393e8e2b97d56d2feb70a24fe22c
-  short_hash: 08ba61e
-  author: Martijn Cuppens
-  date: Wed Oct 30 09:03:53 2019 +0100
-  description: Remove calc function from docs
-
-- hash: ca9731692ecbff4e3415a77ff28612ed1fc96ac6
-  short_hash: ca97316
-  author: Martijn Cuppens
-  date: Wed Oct 30 08:57:09 2019 +0100
-  description: Add calc() to function blacklist
-
-- hash: 9e54d8e1208fbb292d48b879b66d19a404bba538
-  short_hash: 9e54d8e
-  author: Mark Otto
-  date: Sat Oct 19 08:32:29 2019 +0300
-  description: Doc tweaks.
-
-- hash: 32b932c959818a2d7a6651ecc57ad88bc8e0d0ea
-  short_hash: 32b932c
-  author: Martijn Cuppens
-  date: Sat Oct 12 16:03:17 2019 +0200
-  description: Revert complex calculation
-
-- hash: d6ebc60d3d98d48959e6e1bd4eeea4d6e8be4366
-  short_hash: d6ebc60
-  author: ysds
-  date: Tue Sep 3 20:18:44 2019 +0300
-  description: Add add and subtract function
-
-- hash: c62efc3ef69d7dd6e784928b707f52884fab87de
-  short_hash: c62efc3
-  author: Steffen Roßkamp
-  date: Thu Oct 31 06:58:09 2019 +0100
-  description: Update normalizeDataKey to match the spec (#29609)
-
-- hash: 639c405c6510a286a3cfcfd6d733d28d0e7baf92
-  short_hash: 639c405
-  author: Matias Puhakka
-  date: Mon Oct 28 16:19:03 2019 +0200
-  description: Remove redundant "Navbar divider" from "Contents" (#29601)
-
-- hash: b81a23a60d1a0c137dfeff17ce9f85c80ca9fe5c
-  short_hash: b81a23a
-  author: Mark Otto
-  date: Mon Oct 28 00:12:07 2019 -0700
-  description: Update .form-check to properly support gradients when enabled (#29338)
-
-- hash: 9c7bc1a1111940158050db8aaf66340e8ce4d558
-  short_hash: 9c7bc1a
-  author: Mark Otto
-  date: Sun Oct 27 20:26:52 2019 -0700
-  description: "v5: Simplify navbars by requiring containers (#29339)"
-
-- hash: 23c3cdbd432947e30c755c56aace15218aafc99a
-  short_hash: 23c3cdb
-  author: XhmikosR
-  date: Sun Oct 27 16:39:54 2019 +0200
-  description: Remove unneeded ESLint suppression and regenerate lock file (#29593)
-
-- hash: 819f922276de18cbddb8f5d484b34e4a1a132886
-  short_hash: 819f922
-  author: midzer
-  date: Sat Oct 26 18:47:55 2019 +0200
-  description: remove superflous transition parameter (#29595)
-
-- hash: 46912797b24f12817c24d84a1a80a72d224d1b3a
-  short_hash: 4691279
-  author: Higor Araújo dos Anjos
-  date: Fri Oct 25 15:12:09 2019 -0300
-  description: Added animation when modal backdrop is static (#29516)
-
-- hash: 9ee9b8a1e8f6b2c9d1cbec6cf5c04ac5b8a2b378
-  short_hash: 9ee9b8a
-  author: Martijn Cuppens
-  date: Fri Oct 25 11:37:52 2019 +0200
-  description: Add configurable button text wrapping (#29554)
-
-- hash: b3dfcdc7ed066469074e96d9ca80b0684d185d82
-  short_hash: b3dfcdc
-  author: Pawel Wolak
-  date: Fri Oct 25 11:25:30 2019 +0200
-  description: Enable eslint no-console rule except for build directory (#29585)
-
-- hash: e298e42e29022f275c42273e07cda7618b5d96c3
-  short_hash: e298e42
-  author: XhmikosR
-  date: Tue Oct 22 20:56:19 2019 +0300
-  description: Regenerate package-lock.json (#29571)
-
-- hash: 6c0e75d6cf6f4a37eede6f221b4be83d29d31742
-  short_hash: 6c0e75d
-  author: XhmikosR
-  date: Tue Oct 22 12:22:27 2019 +0300
-  description: Fix one dev npm vulnerability. (#29568)
-
-- hash: b91ce0940573dba21c574927e16ea092e3d50df5
-  short_hash: b91ce09
-  author: XhmikosR
-  date: Tue Oct 22 07:49:06 2019 +0300
-  description: Update hugo-bin to v0.47.0 (Hugo 0.59.0) (#29562)
-
-- hash: 3b876be65273eb4e1096a7420f4b73767607fe59
-  short_hash: 3b876be
-  author: Shohei Yoshida
-  date: Tue Oct 22 11:27:43 2019 +0900
-  description: Rename close icon to close button (#29387)
-
-- hash: 3251de8d57b8e11b9dda0984298028cc977642eb
-  short_hash: 3251de8
-  author: XhmikosR
-  date: Tue Oct 22 05:11:22 2019 +0300
-  description: Get rid of unneeded `div`s. (#29563)
-
-- hash: f3e84e026863e6a4bbc471a8e6c84e9a3b254c55
-  short_hash: f3e84e0
-  author: XhmikosR
-  date: Sun Oct 20 18:57:15 2019 +0300
-  description: Update popper.js to v1.16.0. (#29537)
-
-- hash: 8d56c19b5509ef5b6358ee4b646a80bdffbe7396
-  short_hash: 8d56c19
-  author: Mark Otto
-  date: Fri Oct 18 11:06:12 2019 -0700
-  description: "v5: Icons docs cleanup (#29450)"
-
-- hash: 943bef258d661e0d752f2c4f129952fe2a9de47e
-  short_hash: 943bef2
-  author: Mark Otto
-  date: Fri Oct 18 11:04:27 2019 -0700
-  description: "v5: Update colors to add shades and tints (#29348)"
-
-- hash: 1fa337cc201a5c55f699af03595821b9c06273df
-  short_hash: 1fa337c
-  author: Mark Otto
-  date: Fri Oct 18 00:28:17 2019 -0700
-  description: Add link to Icons site in our docs (#29544)
-
-- hash: c1ee395f80c05de8317588b07f34a65c5b95c42c
-  short_hash: c1ee395
-  author: Jeremy Jackson
-  date: Thu Oct 17 15:01:44 2019 +0000
-  description: Skip hidden dropdowns while focusing (#29523)
-
-- hash: 104385c508a4c77761b04a9842e978bab6f359f6
-  short_hash: 104385c
-  author: Mark Otto
-  date: Wed Oct 16 23:46:34 2019 -0700
-  description: Add make-col-auto mixin (#29367)
-
-- hash: b483f80b9ea79318273299c7b365c3abff3bfeea
-  short_hash: b483f80
-  author: XhmikosR
-  date: Wed Oct 16 18:06:26 2019 +0300
-  description: Update dependabot config (#29536)
-
-- hash: 2a8486962ef0260553432ce1a0401cabba81b968
-  short_hash: 2a84869
-  author: XhmikosR
-  date: Wed Oct 16 14:48:28 2019 +0300
-  description: Add dependabot config (#29526)
-
-- hash: b4e957d360899c2555cb29a3ae4589405883bba9
-  short_hash: b4e957d
-  author: XhmikosR
-  date: Mon Oct 14 10:54:39 2019 +0300
-  description: Update devDependencies. (#29508)
-
-- hash: 7327e38b1c767051658e68171994042649a4203a
-  short_hash: 7327e38
-  author: Martijn Cuppens
-  date: Sat Oct 12 15:07:22 2019 +0200
-  description: Fix top level ampersand (#29518)
-
-- hash: 64e22b42842b2d216f328a94ff9105da744bccbe
-  short_hash: 64e22b4
-  author: leshasmp
-  date: Sat Oct 12 17:09:04 2019 +0500
-  description: Carousel variables (#29493)
-
-- hash: 09e6af48d7f44900e38d5676fb01ad7bb9ddd24b
-  short_hash: 09e6af4
-  author: astrahov
-  date: Sat Oct 12 16:56:29 2019 +0500
-  description: Group line-height variables (#29466)
-
-- hash: 4e37fc3ab4b9441ec749ab91edff66b7fc192456
-  short_hash: 4e37fc3
-  author: Jeremy Jackson
-  date: Sat Oct 12 08:21:22 2019 +0000
-  description: Add color argument to button mixins (#29444)
-
-- hash: b3451ff258fad12e0803d3c4c0331230748720b8
-  short_hash: b3451ff
-  author: Mark Otto
-  date: Thu Oct 10 11:18:19 2019 -0700
-  description: Add new .bg-body utility class (#29511)
-
-- hash: 133e0c8c9a7fdb7bd4d5ebd82ce6d8dc944e0a4f
-  short_hash: 133e0c8
-  author: XhmikosR
-  date: Wed Oct 9 11:11:37 2019 +0300
-  description: Drop support for Node.js 8. (#29496)
-
-- hash: 577bf8b14d76a864a8d69dbfb03b757fbeb6e241
-  short_hash: 577bf8b
-  author: XhmikosR
-  date: Wed Oct 9 01:27:43 2019 +0300
-  description: Rename "js/tests/units" to "js/tests/unit". (#29503)
-
-- hash: 1770691b339bdbf17de5e8824158b358dc0284a9
-  short_hash: 1770691
-  author: XhmikosR
-  date: Tue Oct 8 09:39:10 2019 +0300
-  description: Dist (#29484)
-
-- hash: 9c54d3579757aa1e4027ff8fb434a18c656d840c
-  short_hash: 9c54d35
-  author: XhmikosR
-  date: Tue Oct 8 08:47:40 2019 +0300
-  description: "CI: move `CI` env variable to the root of the workflow. (#29499)"
-
-- hash: 622c914a3acc1ab933b3e89d8abfdd63feeb4016
-  short_hash: 622c914
-  author: XhmikosR
-  date: Mon Oct 7 09:31:12 2019 +0300
-  description: Update devDependencies. (#29447)
-
-- hash: 60559d44a2166708a4dc2f6ccb835052da08ab65
-  short_hash: 60559d4
-  author: astrahov
-  date: Thu Oct 3 20:54:34 2019 +0500
-  description: Add variable for `$breadcrumb-font-size` (#29467)
-
-- hash: e1b82f51e21b6329d783406cfbc9c847c798ef23
-  short_hash: e1b82f5
-  author: Johann-S
-  date: Wed Oct 2 14:32:29 2019 +0200
-  description: add modularity integration test
-
-- hash: 3d12b541c488ea09efced2fb987fcbf384c656bb
-  short_hash: 3d12b54
-  author: Johann-S
-  date: Wed Oct 2 11:43:54 2019 +0200
-  description: return to the original file structure to avoid breaking modularity
-
-- hash: 393ddae09b0578c8d381540bdbb4e68cdec1b45b
-  short_hash: 393ddae
-  author: Martijn Cuppens
-  date: Thu Oct 3 09:43:45 2019 +0200
-  description: Fix border for single card in accordion (#29453)
-
-- hash: 03c9788f7a0293beef328c004b124f4433c3c64d
-  short_hash: 03c9788
-  author: Martijn Cuppens
-  date: Thu Oct 3 09:21:40 2019 +0200
-  description: Variable card height (#29462)
-
-- hash: f6a1e2fc8990f2c8975b0f27fc14027a6f7e9fae
-  short_hash: f6a1e2f
-  author: Paweł Kuna
-  date: Thu Oct 3 08:52:25 2019 +0200
-  description: Better radio input (#29441)
-
-- hash: 494713b55a40d5b1216acd8b44fe0e463224f73d
-  short_hash: 494713b
-  author: Martijn Cuppens
-  date: Wed Oct 2 21:48:15 2019 +0200
-  description: Trim trailing whitespace from markdown files (#29460)
-
-- hash: de8c65158be3bbf150b9352a3985762c7e094933
-  short_hash: de8c651
-  author: Martijn Cuppens
-  date: Wed Oct 2 21:37:24 2019 +0200
-  description: Remove appearance from textarea (#29455)
-
-- hash: 707973ebdd2ea058b297456ee6c7b0a27b725089
-  short_hash: 707973e
-  author: Mark Otto
-  date: Wed Oct 2 12:19:45 2019 -0700
-  description: "v5: .form-check layout changes (#29322)"
-
-- hash: c306e963e8f75cf4e2b5b7b656266b6df01c8b83
-  short_hash: c306e96
-  author: Andreas Schroth
-  date: Wed Oct 2 21:10:31 2019 +0200
-  description: Remove "extra" section from composer.json (#29420)
-
-- hash: e41342b4c1be70ff8d6074f37ecc49dec632d80c
-  short_hash: e41342b
-  author: XhmikosR
-  date: Wed Oct 2 22:05:15 2019 +0300
-  description: "coveralls: Add `COVERALLS_GIT_BRANCH` (#29458)"
-
-- hash: b1a4b0ecc42e5d2359f18d6430b9386defdb9ddb
-  short_hash: b1a4b0e
-  author: XhmikosR
-  date: Wed Oct 2 21:56:39 2019 +0300
-  description: "workflows/test.yml: specify `CI=true` (#29440)"
-
-- hash: adfd3fbd4689b8d373d55df56bead6d09c728fcd
-  short_hash: adfd3fb
-  author: XhmikosR
-  date: Wed Oct 2 21:49:34 2019 +0300
-  description: "README.md: link to the Actions page for Tests (#29480)"
-
-- hash: 46e8f1a34fe00468209f46b12aac6323b5322eee
-  short_hash: 46e8f1a
-  author: astrahov
-  date: Tue Oct 1 18:14:43 2019 +0500
-  description: Variable carousel indicator opacity (#29468)
-
-- hash: 0a3aa08b89031a835e73b53b161ba6c6d1cab848
-  short_hash: 0a3aa08
-  author: Paweł Kuna
-  date: Fri Sep 27 17:58:53 2019 +0200
-  description: Remove outline from select box in FF (#29445)
-
-- hash: f2dff864aa09140dd7edc6b5e27ecf590f2f7fa5
-  short_hash: f2dff86
-  author: wojtask9
-  date: Fri Sep 27 14:22:31 2019 +0200
-  description: Remove duplicated td selector (#29454)
-
-- hash: 6b150855df836210188b0cec5e989468ca5e9611
-  short_hash: 6b15085
-  author: XhmikosR
-  date: Fri Sep 27 09:01:36 2019 +0300
-  description: Change blue and pink colors to be accessible. (#29198)
-
-- hash: de3a3731bd8034536654053130663d12ff1ec811
-  short_hash: de3a373
-  author: XhmikosR
-  date: Thu Sep 26 21:50:14 2019 +0300
-  description: "Sass: remove redundant stylelint inline suppressions. (#29427)"
-
-- hash: 7e0901779043aa0357fa39e7544b60c2054cce01
-  short_hash: 7e09017
-  author: XhmikosR
-  date: Tue Sep 24 21:32:49 2019 +0300
-  description: "`update-deps`: remove moot `cross-env` call. (#29419)"
-
-- hash: d2a24e09ecfd453618f7bd6c07bc0546e38fb261
-  short_hash: d2a24e0
-  author: Shohei Yoshida
-  date: Tue Sep 24 19:48:45 2019 +0900
-  description: Grid card example tweaks (#29409)
-
-- hash: 84861ceadbb09ada3598a632fd0f5e1cc80b0e7a
-  short_hash: 84861ce
-  author: XhmikosR
-  date: Tue Sep 17 21:34:53 2019 +0300
-  description: ".eslintrc.json: Remove a couple of default rules."
-
-- hash: 90c5de151be15815469a07b2c7aa4ab0c01f2a86
-  short_hash: 90c5de1
-  author: XhmikosR
-  date: Tue Sep 24 12:53:50 2019 +0300
-  description: GH Actions updates. (#29429)
-
-- hash: 129bb08fc4d2c850ae71250371adf82a4441dc70
-  short_hash: 129bb08
-  author: XhmikosR
-  date: Tue Sep 17 00:22:49 2019 +0300
-  description: Use Hugo for our docs Sass and JS. (#29280)
-
-- hash: a9c05ab798df7b1a40af41c25dd92faa84b13f99
-  short_hash: a9c05ab
-  author: XhmikosR
-  date: Wed Aug 28 17:31:45 2019 +0300
-  description: "examples: darken gray a little bit."
-
-- hash: 758ee5f0f8c31f0140cd3df62cd3dd0eef33eecd
-  short_hash: 758ee5f
-  author: XhmikosR
-  date: Mon Aug 5 16:11:51 2019 +0300
-  description: "card.md: use `text-dark` for warning card."
-
-- hash: 1edba8072db996d72a9b774953c9137eb2159432
-  short_hash: 1edba80
-  author: XhmikosR
-  date: Sat Aug 3 18:47:13 2019 +0300
-  description: "badge.md: use `text-dark` for warning."
-
-- hash: fbeed6f1d9a89d2fbe97312dfb94b6b8f85c195b
-  short_hash: fbeed6f
-  author: XhmikosR
-  date: Sat Aug 3 18:27:11 2019 +0300
-  description: Darken footer color.
-
-- hash: 943a074a2ba9dc753cb4e27075246b7e82eeb306
-  short_hash: 943a074
-  author: XhmikosR
-  date: Sat Aug 3 18:20:45 2019 +0300
-  description: Tweak syntax highlighting colors to be WCAG2AA valid.
-
-- hash: 0126d9832b03fbb584066cc5f1eeadd283665ed6
-  short_hash: 0126d98
-  author: XhmikosR
-  date: Mon Sep 16 15:28:25 2019 +0300
-  description: "workflows/test.yml: switch to `setup-node@v1`. (#29410)"
-
-- hash: e2a93ec094d6ec1283c10a220b26a2acb4b7417c
-  short_hash: e2a93ec
-  author: ysds
-  date: Thu Sep 12 23:30:47 2019 +0900
-  description: Fix incorrect aspect ratio on IE11
-
-- hash: 6e638685002e8d5f5c42b274ce87ae3d044d52f2
-  short_hash: 6e63868
-  author: Martijn Cuppens
-  date: Thu Apr 25 21:10:55 2019 +0200
-  description: Remove redundant properties
-
-- hash: d99ff902f8c7b849ccb283af69d6a8ac15356450
-  short_hash: d99ff90
-  author: jahanzaibsuleman07
-  date: Fri Sep 13 23:15:20 2019 +0500
-  description: Responsive sticky top (#29158)
-
-- hash: 49469ca0dc383626b201d91b66bd4aaed8dceb0f
-  short_hash: 49469ca
-  author: XhmikosR
-  date: Fri Sep 13 12:13:08 2019 +0300
-  description: Update devDependencies. (#29381)
-
-- hash: 2f549ecda8b154ac9203056786e77c8271e78f30
-  short_hash: 2f549ec
-  author: Martijn Cuppens
-  date: Sat Sep 7 21:16:48 2019 +0200
-  description: Typo fix (#29382)
-
-- hash: 713dd824038aba59185b05e4c87bce8e5452e893
-  short_hash: 713dd82
-  author: ysds
-  date: Fri Sep 6 23:57:29 2019 +0900
-  description: Remove unnecessary z-index
-
-- hash: 9066f9495cb41459574ab181fc3d435c1b4e358a
-  short_hash: 9066f94
-  author: Martijn Cuppens
-  date: Fri Sep 6 09:24:08 2019 +0200
-  description: Make sure the content doesn't cover the navbar dropdown
-
-- hash: c5e80ff2afe056fc959cd14b2ffda88016e0b81d
-  short_hash: c5e80ff
-  author: XhmikosR
-  date: Sat Aug 31 14:41:15 2019 +0300
-  description: "about/brand.md: Remove unused class."
-
-- hash: c6ac6365e57efeff86b2b099703c907c3d57b261
-  short_hash: c6ac636
-  author: XhmikosR
-  date: Sat Aug 31 14:30:29 2019 +0300
-  description: Use the `$white` variable.
-
-- hash: b6b96c174bff4b27800fb9ddec75328d1ef30322
-  short_hash: b6b96c1
-  author: Martijn Cuppens
-  date: Fri Aug 30 23:32:12 2019 +0300
-  description: Docs tweaks
-
-- hash: d6945d5e8fa66a84cf363d9ff710684971bdea85
-  short_hash: d6945d5
-  author: XhmikosR
-  date: Sun Sep 1 13:37:24 2019 +0300
-  description: Move shortcodes used only once where they are needed.
-
-- hash: 2c9e22ef889b1b88df7b956d705a1069c10d5e68
-  short_hash: 2c9e22e
-  author: XhmikosR
-  date: Sun Sep 1 13:23:58 2019 +0300
-  description: "getting-started/theming.md: throw an error if the regex doesn't succeed."
-
-- hash: cf4ae75eff7d432962cc67d56d4ede3b9e3ac42c
-  short_hash: cf4ae75
-  author: XhmikosR
-  date: Sun Sep 1 13:23:31 2019 +0300
-  description: Break a couple of long lines.
-
-- hash: f7fe5d5bca78354c1ff27340702593ca5f81a3a3
-  short_hash: f7fe5d5
-  author: XhmikosR
-  date: Fri Sep 6 08:51:46 2019 +0300
-  description: "homepage: remove redundant class (#29357)"
-
-- hash: eb49bd11c9e5f2705d4efa78c029a1de3a2fb832
-  short_hash: eb49bd1
-  author: Mark Otto
-  date: Thu Sep 5 11:43:31 2019 -0700
-  description: Update subnav to remove breadcrumb and just keep versions and search (#29368)
-
-- hash: c6a82fcc6f46cc8679df45142dfd2de3312b85e6
-  short_hash: c6a82fc
-  author: XhmikosR
-  date: Thu Sep 5 11:23:34 2019 +0300
-  description: Update devDependencies. (#29349)
-
-- hash: db002902da3a56db6d4d65ea8ae78212c91ea3a1
-  short_hash: db00290
-  author: XhmikosR
-  date: Tue Sep 3 18:04:11 2019 +0300
-  description: Tweak form validation snippet. (#29359)
-
-- hash: d0affaa2eccdd0ab697bc3eee57b6c22f4bc24f9
-  short_hash: d0affaa
-  author: XhmikosR
-  date: Mon Sep 2 19:19:25 2019 +0300
-  description: "Examples: use our utilities more. (#29358)"
-
-- hash: 88d7d8b8223911726d8a0aeed9a16010dca04287
-  short_hash: 88d7d8b
-  author: XhmikosR
-  date: Mon Sep 2 12:52:26 2019 +0300
-  description: Use the example shortcode in more places. (#29346)
-
-- hash: 6cb4ebc04870df30d5b6ec528ffcb84a07ab48c5
-  short_hash: 6cb4ebc
-  author: XhmikosR
-  date: Mon Sep 2 12:44:19 2019 +0300
-  description: "ESLint: specify `--report-unused-disable-directives` (#29350)"
-
-- hash: 6f1eb110e7c39dc2fb7e2126248b320519ae037a
-  short_hash: 6f1eb11
-  author: XhmikosR
-  date: Mon Sep 2 12:31:02 2019 +0300
-  description: "Docs: simplify a few Hugo `range`s. (#29333)"
-
-- hash: edf7923c8f04b436291c0c2b8e405be7ae3f6ab1
-  short_hash: edf7923
-  author: XhmikosR
-  date: Mon Sep 2 12:21:42 2019 +0300
-  description: Fix a few redirected links. (#29352)
-
-- hash: 919b526f17a08cefba51c42b831c922adecb4a9f
-  short_hash: 919b526
-  author: XhmikosR
-  date: Sat Aug 31 08:11:16 2019 +0300
-  description: Fix shortcodes/example.html class bug. (#29344)
-
-- hash: b1f49092877c83bf2007cc363fc5c6925cc0dc8c
-  short_hash: b1f4909
-  author: ysds
-  date: Thu Aug 29 22:12:26 2019 +0900
-  description: Add responsive example
-
-- hash: ebfeaa4ad18aa67c8ff91ff483f1f3634b2afc85
-  short_hash: ebfeaa4
-  author: ysds
-  date: Wed Aug 28 23:37:39 2019 +0900
-  description: Allow override default col width
-
-- hash: cc248791b0f260aa6e0505a0aa7c3faeb1cbc797
-  short_hash: cc24879
-  author: Mark Otto
-  date: Tue Jul 23 23:00:29 2019 -0700
-  description: Cleanup
-
-- hash: db692d02d555a66219283d5e2150a681fafee1e6
-  short_hash: db692d0
-  author: Mark Otto
-  date: Thu Jul 18 02:48:43 2019 +0300
-  description: Move margins, and equal height via utility example
-
-- hash: e2252e023096daa7e852835a69c360484765c42b
-  short_hash: e2252e0
-  author: Mark Otto
-  date: Thu Jul 18 02:27:53 2019 +0300
-  description: First pass at .row-cols classes
-
-- hash: 4041d70eb5462fe8fdd08040f68fcb0ccf67935e
-  short_hash: 4041d70
-  author: XhmikosR
-  date: Fri Aug 30 17:35:12 2019 +0300
-  description: card.md remove empty `class` placeholder argument (#29345)
-
-- hash: aa3b4c41a4d98e054b0e18c0193efcce0db39d71
-  short_hash: aa3b4c4
-  author: XhmikosR
-  date: Fri Aug 30 17:21:47 2019 +0300
-  description: "carousel.md: Remove duplicate bd-example div. (#29341)"
-
-- hash: a6460d972743ecf4cf1fc382dafd06af945fff0a
-  short_hash: a6460d9
-  author: XhmikosR
-  date: Fri Aug 30 11:52:22 2019 +0300
-  description: Merge lint scripts (#29329)
-
-- hash: 007ea0d8d043a788383109e1883717875fa5530d
-  short_hash: 007ea0d
-  author: Martijn Cuppens
-  date: Fri Aug 30 09:42:41 2019 +0200
-  description: Clean up line heights & add line height utilities (#29271)
-
-- hash: ae249e8f559b88f9db78ed96a39f680aea43c051
-  short_hash: ae249e8
-  author: XhmikosR
-  date: Fri Aug 30 08:01:21 2019 +0300
-  description: "docs-sidebar.html: reindent. (#29337)"

+ 1010 - 0
src/pages/_data/crypto-currencies.json

@@ -0,0 +1,1010 @@
+[
+  {
+    "name": "Bitcoin",
+    "price": "$10513.00",
+    "p24h": -7,
+    "market-cap": "$179,470,305,923",
+    "circulating-supply": "16,819,612 BTC",
+    "volume-24h": "$9,578,830,000",
+    "cmgr": "8.11% / 57",
+    "inflation": "0.36%",
+    "icon": "bitcoin.svg"
+  },
+  {
+    "name": "Ethereum",
+    "price": "$966.61",
+    "p24h": -6,
+    "market-cap": "$95,270,125,036",
+    "circulating-supply": "97,145,024 ETH",
+    "volume-24h": "$3,466,060,000",
+    "cmgr": "22.62% / 29",
+    "inflation": "0.64%",
+    "icon": "ethereum.svg"
+  },
+  {
+    "name": "Ripple",
+    "price": "$1.2029",
+    "p24h": -11,
+    "market-cap": "$47,649,145,657",
+    "circulating-supply": "38,739,144,704 XRP",
+    "volume-24h": "$2,081,450,000",
+    "cmgr": "10.85% / 53",
+    "inflation": "0.06%",
+    "icon": "ripple.svg"
+  },
+  {
+    "name": "Bitcoin Cash",
+    "price": "$1547.00",
+    "p24h": -11,
+    "market-cap": "$26,720,210,956",
+    "circulating-supply": "16,925,988 BCH",
+    "volume-24h": "$598,337,000",
+    "cmgr": "21.30% / 6",
+    "inflation": "0.32%"
+  },
+  {
+    "name": "Cardano",
+    "price": "$0.550768",
+    "p24h": -9,
+    "market-cap": "$14,279,800,786",
+    "circulating-supply": "25,927,069,696 ADA",
+    "volume-24h": "$466,381,000",
+    "cmgr": "205.35% / 3",
+    "inflation": "0.00%",
+    "icon": "cardano.svg"
+  },
+  {
+    "name": "Litecoin",
+    "price": "$173.86",
+    "p24h": -7,
+    "market-cap": "$9,670,920,267",
+    "circulating-supply": "54,873,584 LTC",
+    "volume-24h": "$430,524,000",
+    "cmgr": "6.87% / 57",
+    "inflation": "0.80%",
+    "icon": "litecoin.svg"
+  },
+  {
+    "name": "EOS",
+    "price": "$13.394",
+    "p24h": 5,
+    "market-cap": "$8,420,143,033",
+    "circulating-supply": "621,412,800 EOS",
+    "volume-24h": "$2,864,780,000",
+    "cmgr": "53.25% / 6",
+    "inflation": "11.56%",
+    "icon": "eos.svg"
+  },
+  {
+    "name": "NEM",
+    "price": "$0.935049",
+    "p24h": -11,
+    "market-cap": "$8,415,440,999",
+    "circulating-supply": "8,999,999,488 XEM",
+    "volume-24h": "$66,061,000",
+    "cmgr": "26.99% / 33",
+    "inflation": "0.24%",
+    "icon": "nem.svg"
+  },
+  {
+    "name": "Stellar",
+    "price": "$0.467813",
+    "p24h": 2,
+    "market-cap": "$8,358,735,080",
+    "circulating-supply": "17,867,683,840 XLM",
+    "volume-24h": "$370,297,000",
+    "cmgr": "13.12% / 41",
+    "inflation": "0.19%"
+  },
+  {
+    "name": "NEO",
+    "price": "$118.61",
+    "p24h": -9,
+    "market-cap": "$7,693,400,000",
+    "circulating-supply": "65,000,000 NEO",
+    "volume-24h": "$318,308,000",
+    "cmgr": "62.68% / 15",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "IOTA",
+    "price": "$2.34",
+    "p24h": -14,
+    "market-cap": "$6,504,100,862",
+    "circulating-supply": "2,779,530,240 MIOTA",
+    "volume-24h": "$103,132,000",
+    "cmgr": "23.27% / 7",
+    "inflation": "-0.02%"
+  },
+  {
+    "name": "Dash",
+    "price": "$747.222",
+    "p24h": -8,
+    "market-cap": "$5,881,413,815",
+    "circulating-supply": "7,833,738 DASH",
+    "volume-24h": "$96,147,900",
+    "cmgr": "19.19% / 47",
+    "inflation": "0.81%",
+    "icon": "dash.svg"
+  },
+  {
+    "name": "Monero",
+    "price": "$305.16",
+    "p24h": -11,
+    "market-cap": "$4,778,157,533",
+    "circulating-supply": "15,633,286 XMR",
+    "volume-24h": "$100,788,000",
+    "cmgr": "11.88% / 44",
+    "inflation": "0.78%"
+  },
+  {
+    "name": "TRON",
+    "price": "$0.067691",
+    "p24h": -5,
+    "market-cap": "$4,450,560,896",
+    "circulating-supply": "65,748,193,280 TRX",
+    "volume-24h": "$581,651,000",
+    "cmgr": "142.69% / 4",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Bitcoin Gold",
+    "price": "$181.39",
+    "p24h": -7,
+    "market-cap": "$3,084,108,676",
+    "circulating-supply": "16,779,700 BTG",
+    "volume-24h": "$199,652,000",
+    "cmgr": "-25.44% / 3",
+    "inflation": "0.34%"
+  },
+  {
+    "name": "ICON",
+    "price": "$7.90",
+    "p24h": -10,
+    "market-cap": "$3,002,355,531",
+    "circulating-supply": "380,044,992 ICX",
+    "volume-24h": "$78,201,200",
+    "cmgr": "179.33% / 3",
+    "inflation": "90.09%"
+  },
+  {
+    "name": "Qtum",
+    "price": "$38.37",
+    "p24h": -9,
+    "market-cap": "$2,832,729,404",
+    "circulating-supply": "73,826,672 QTUM",
+    "volume-24h": "$593,524,000",
+    "cmgr": "30.43% / 8",
+    "inflation": "0.11%"
+  },
+  {
+    "name": "Ethereum Classic",
+    "price": "$28.023",
+    "p24h": -6,
+    "market-cap": "$2,827,320,112",
+    "circulating-supply": "99,308,752 ETC",
+    "volume-24h": "$303,356,000",
+    "cmgr": "22.79% / 18",
+    "inflation": "0.74%"
+  },
+  {
+    "name": "Lisk",
+    "price": "$20.48",
+    "p24h": -6,
+    "market-cap": "$2,401,760,051",
+    "circulating-supply": "117,273,440 LSK",
+    "volume-24h": "$44,483,500",
+    "cmgr": "12.05% / 21",
+    "inflation": "0.86%"
+  },
+  {
+    "name": "VeChain",
+    "price": "$8.33",
+    "p24h": 9,
+    "market-cap": "$2,308,764,732",
+    "circulating-supply": "277,162,624 VEN",
+    "volume-24h": "$348,907,000",
+    "cmgr": "101.15% / 5",
+    "inflation": "-0.06%"
+  },
+  {
+    "name": "RaiBlocks",
+    "price": "$14.46",
+    "p24h": -15,
+    "market-cap": "$1,926,770,258",
+    "circulating-supply": "133,248,288 XRB",
+    "volume-24h": "$13,331,500",
+    "cmgr": "112.15% / 10",
+    "inflation": "0.06%"
+  },
+  {
+    "name": "Tether",
+    "price": "$1.0097",
+    "p24h": -1,
+    "market-cap": "$1,618,090,823",
+    "circulating-supply": "1,618,090,880 USDT",
+    "volume-24h": "$3,022,620,000",
+    "cmgr": "0.03% / 33",
+    "inflation": "33.71%"
+  },
+  {
+    "name": "OmiseGO",
+    "price": "$14.83",
+    "p24h": -11,
+    "market-cap": "$1,532,679,131",
+    "circulating-supply": "102,042,552 OMG",
+    "volume-24h": "$63,574,500",
+    "cmgr": "50.49% / 6",
+    "inflation": "-0.04%"
+  },
+  {
+    "name": "Populous",
+    "price": "$41.22",
+    "p24h": -3,
+    "market-cap": "$1,525,305,992",
+    "circulating-supply": "37,004,028 PPT",
+    "volume-24h": "$2,271,650",
+    "cmgr": "58.49% / 6",
+    "inflation": "-10.29%"
+  },
+  {
+    "name": "Zcash",
+    "price": "$431.43",
+    "p24h": -10,
+    "market-cap": "$1,358,979,711",
+    "circulating-supply": "3,114,069 ZEC",
+    "volume-24h": "$71,375,000",
+    "cmgr": "-13.51% / 15",
+    "inflation": "7.44%"
+  },
+  {
+    "name": "Verge",
+    "price": "$0.089875",
+    "p24h": -13,
+    "market-cap": "$1,303,358,298",
+    "circulating-supply": "14,501,900,288 XVG",
+    "volume-24h": "$75,841,900",
+    "cmgr": "27.95% / 39",
+    "inflation": "2.06%"
+  },
+  {
+    "name": "Binance Coin",
+    "price": "$12.60",
+    "p24h": -9,
+    "market-cap": "$1,247,576,400",
+    "circulating-supply": "99,014,000 BNB",
+    "volume-24h": "$129,483,000",
+    "cmgr": "122.80% / 6",
+    "inflation": "0.08%"
+  },
+  {
+    "name": "Siacoin",
+    "price": "$0.037594",
+    "p24h": -13,
+    "market-cap": "$1,180,306,719",
+    "circulating-supply": "31,396,145,152 SC",
+    "volume-24h": "$58,783,600",
+    "cmgr": "26.70% / 29",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Stratis",
+    "price": "$11.50",
+    "p24h": -13,
+    "market-cap": "$1,135,175,764",
+    "circulating-supply": "98,710,936 STRAT",
+    "volume-24h": "$25,548,100",
+    "cmgr": "49.79% / 17",
+    "inflation": "-0.02%"
+  },
+  {
+    "name": "Bytecoin",
+    "price": "$0.006127",
+    "p24h": -8,
+    "market-cap": "$1,125,403,469",
+    "circulating-supply": "183,679,369,216 BCN",
+    "volume-24h": "$7,904,870",
+    "cmgr": "11.39% / 43",
+    "inflation": "0.23%"
+  },
+  {
+    "name": "Steem",
+    "price": "$4.13",
+    "p24h": -14,
+    "market-cap": "$1,022,039,920",
+    "circulating-supply": "247,467,296 STEEM",
+    "volume-24h": "$29,580,000",
+    "cmgr": "10.15% / 21",
+    "inflation": "0.68%"
+  },
+  {
+    "name": "Ardor",
+    "price": "$0.995641",
+    "p24h": -9,
+    "market-cap": "$994,644,856",
+    "circulating-supply": "998,999,488 ARDR",
+    "volume-24h": "$143,752,000",
+    "cmgr": "20.75% / 18",
+    "inflation": "-0.41%"
+  },
+  {
+    "name": "Status",
+    "price": "$0.264278",
+    "p24h": -9,
+    "market-cap": "$917,172,514",
+    "circulating-supply": "3,470,483,712 SNT",
+    "volume-24h": "$355,833,000",
+    "cmgr": "24.53% / 7",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Maker",
+    "price": "$1480.84",
+    "p24h": -7,
+    "market-cap": "$915,496,751",
+    "circulating-supply": "618,228 MKR",
+    "volume-24h": "$1,662,690",
+    "cmgr": "42.77% / 12",
+    "inflation": "-"
+  },
+  {
+    "name": "Augur",
+    "price": "$81.55",
+    "p24h": -5,
+    "market-cap": "$897,050,000",
+    "circulating-supply": "11,000,000 REP",
+    "volume-24h": "$16,086,600",
+    "cmgr": "16.36% / 27",
+    "inflation": "0.01%"
+  },
+  {
+    "name": "BitShares",
+    "price": "$0.317687",
+    "p24h": -9,
+    "market-cap": "$828,330,730",
+    "circulating-supply": "2,607,379,968 BTS",
+    "volume-24h": "$43,185,600",
+    "cmgr": "8.22% / 42",
+    "inflation": "0.06%"
+  },
+  {
+    "name": "0x",
+    "price": "$1.66",
+    "p24h": -3,
+    "market-cap": "$827,949,569",
+    "circulating-supply": "498,764,800 ZRX",
+    "volume-24h": "$20,493,000",
+    "cmgr": "72.59% / 5",
+    "inflation": "-0.24%"
+  },
+  {
+    "name": "Waves",
+    "price": "$8.13",
+    "p24h": -1,
+    "market-cap": "$813,000,000",
+    "circulating-supply": "100,000,000 WAVES",
+    "volume-24h": "$26,239,600",
+    "cmgr": "10.11% / 19",
+    "inflation": "-0.01%"
+  },
+  {
+    "name": "Dogecoin",
+    "price": "$0.00659",
+    "p24h": -8,
+    "market-cap": "$743,890,685",
+    "circulating-supply": "112,881,745,920 DOGE",
+    "volume-24h": "$20,613,400",
+    "cmgr": "5.35% / 49",
+    "inflation": "0.36%"
+  },
+  {
+    "name": "KuCoin Shares",
+    "price": "$7.91",
+    "p24h": -17,
+    "market-cap": "$720,150,731",
+    "circulating-supply": "91,043,072 KCS",
+    "volume-24h": "$5,481,780",
+    "cmgr": "276.01% / 2",
+    "inflation": "-0.04%"
+  },
+  {
+    "name": "Electroneum",
+    "price": "$0.120304",
+    "p24h": -7,
+    "market-cap": "$712,763,819",
+    "circulating-supply": "5,924,689,408 ETN",
+    "volume-24h": "$5,103,980",
+    "cmgr": "19.45% / 2",
+    "inflation": "18.19%"
+  },
+  {
+    "name": "Walton",
+    "price": "$27.79",
+    "p24h": 1,
+    "market-cap": "$691,920,366",
+    "circulating-supply": "24,898,178 WTC",
+    "volume-24h": "$50,403,900",
+    "cmgr": "92.30% / 5",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Veritaseum",
+    "price": "$335.15",
+    "p24h": -8,
+    "market-cap": "$682,581,571",
+    "circulating-supply": "2,036,645 VERI",
+    "volume-24h": "$628,128",
+    "cmgr": "33.82% / 7",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Komodo",
+    "price": "$5.96",
+    "p24h": -11,
+    "market-cap": "$614,151,644",
+    "circulating-supply": "103,045,576 KMD",
+    "volume-24h": "$7,010,050",
+    "cmgr": "45.00% / 11",
+    "inflation": "-1.09%"
+  },
+  {
+    "name": "Decred",
+    "price": "$91.29",
+    "p24h": -8,
+    "market-cap": "$603,249,158",
+    "circulating-supply": "6,608,053 DCR",
+    "volume-24h": "$1,304,410",
+    "cmgr": "22.47% / 23",
+    "inflation": "3.04%"
+  },
+  {
+    "name": "Dragonchain",
+    "price": "$2.39",
+    "p24h": -11,
+    "market-cap": "$569,828,436",
+    "circulating-supply": "238,421,936 DRGN",
+    "volume-24h": "$3,490,920",
+    "cmgr": "926.29% / 1",
+    "inflation": "0.14%"
+  },
+  {
+    "name": "Dentacoin",
+    "price": "$0.001735",
+    "p24h": -5,
+    "market-cap": "$564,205,023",
+    "circulating-supply": "325,190,221,824 DCN",
+    "volume-24h": "$1,082,850",
+    "cmgr": "43.44% / 5",
+    "inflation": "0.05%"
+  },
+  {
+    "name": "Loopring",
+    "price": "$0.965091",
+    "p24h": -9,
+    "market-cap": "$541,577,621",
+    "circulating-supply": "561,167,424 LRC",
+    "volume-24h": "$11,179,900",
+    "cmgr": "55.67% / 5",
+    "inflation": "95.51%"
+  },
+  {
+    "name": "Ark",
+    "price": "$5.36",
+    "p24h": -11,
+    "market-cap": "$525,179,682",
+    "circulating-supply": "97,981,280 ARK",
+    "volume-24h": "$7,183,610",
+    "cmgr": "68.16% / 10",
+    "inflation": "-0.07%"
+  },
+  {
+    "name": "SALT",
+    "price": "$7.23",
+    "p24h": -11,
+    "market-cap": "$514,095,078",
+    "circulating-supply": "71,105,824 SALT",
+    "volume-24h": "$12,135,100",
+    "cmgr": "4.35% / 4",
+    "inflation": "38.07%"
+  },
+  {
+    "name": "QASH",
+    "price": "$1.46",
+    "p24h": -9,
+    "market-cap": "$511,000,000",
+    "circulating-supply": "350,000,000 QASH",
+    "volume-24h": "$19,206,800",
+    "cmgr": "85.16% / 2",
+    "inflation": "-0.17%"
+  },
+  {
+    "name": "DigiByte",
+    "price": "$0.050116",
+    "p24h": -11,
+    "market-cap": "$487,853,928",
+    "circulating-supply": "9,734,494,208 DGB",
+    "volume-24h": "$11,389,900",
+    "cmgr": "8.02% / 47",
+    "inflation": "1.48%"
+  },
+  {
+    "name": "Basic Attention Token",
+    "price": "$0.487348",
+    "p24h": -12,
+    "market-cap": "$487,348,000",
+    "circulating-supply": "1,000,000,000 BAT",
+    "volume-24h": "$14,891,300",
+    "cmgr": "19.38% / 7",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "PIVX",
+    "price": "$8.68",
+    "p24h": 4,
+    "market-cap": "$480,968,834",
+    "circulating-supply": "55,411,156 PIVX",
+    "volume-24h": "$11,144,700",
+    "cmgr": "47.24% / 23",
+    "inflation": "0.42%"
+  },
+  {
+    "name": "Golem",
+    "price": "$0.571295",
+    "p24h": -9,
+    "market-cap": "$476,609,709",
+    "circulating-supply": "834,262,016 GNT",
+    "volume-24h": "$10,420,800",
+    "cmgr": "30.48% / 14",
+    "inflation": "0.10%"
+  },
+  {
+    "name": "Hshare",
+    "price": "$10.82",
+    "p24h": -9,
+    "market-cap": "$460,173,193",
+    "circulating-supply": "42,529,872 HSR",
+    "volume-24h": "$100,098,000",
+    "cmgr": "-9.81% / 5",
+    "inflation": "0.30%"
+  },
+  {
+    "name": "Byteball Bytes",
+    "price": "$700.65",
+    "p24h": -1,
+    "market-cap": "$452,074,794",
+    "circulating-supply": "645,222 GBYTE",
+    "volume-24h": "$1,461,460",
+    "cmgr": "32.04% / 13",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Kyber Network",
+    "price": "$3.32",
+    "p24h": -9,
+    "market-cap": "$445,320,554",
+    "circulating-supply": "134,132,696 KNC",
+    "volume-24h": "$39,139,800",
+    "cmgr": "18.46% / 4",
+    "inflation": "0.08%"
+  },
+  {
+    "name": "WAX",
+    "price": "$0.903366",
+    "p24h": -8,
+    "market-cap": "$445,318,368",
+    "circulating-supply": "492,954,528 WAX",
+    "volume-24h": "$8,945,930",
+    "cmgr": "-77.44% / 1",
+    "inflation": "-"
+  },
+  {
+    "name": "Ethos",
+    "price": "$5.84",
+    "p24h": -8,
+    "market-cap": "$440,377,399",
+    "circulating-supply": "75,407,088 ETHOS",
+    "volume-24h": "$3,608,200",
+    "cmgr": "84.05% / 2",
+    "inflation": "0.31%"
+  },
+  {
+    "name": "Gas",
+    "price": "$44.44",
+    "p24h": -12,
+    "market-cap": "$425,068,288",
+    "circulating-supply": "9,564,993 GAS",
+    "volume-24h": "$19,148,900",
+    "cmgr": "74.36% / 6",
+    "inflation": "4.55%"
+  },
+  {
+    "name": "RChain",
+    "price": "$1.71",
+    "p24h": -6,
+    "market-cap": "$417,309,706",
+    "circulating-supply": "244,040,768 RHOC",
+    "volume-24h": "$773,418",
+    "cmgr": "117.91% / 3",
+    "inflation": "33.41%"
+  },
+  {
+    "name": "FunFair",
+    "price": "$0.092324",
+    "p24h": -8,
+    "market-cap": "$407,987,657",
+    "circulating-supply": "4,419,085,824 FUN",
+    "volume-24h": "$12,285,800",
+    "cmgr": "37.92% / 6",
+    "inflation": "3.98%"
+  },
+  {
+    "name": "Cindicator",
+    "price": "$0.272886",
+    "p24h": 32,
+    "market-cap": "$394,586,767",
+    "circulating-supply": "1,445,976,576 CND",
+    "volume-24h": "$262,465,000",
+    "cmgr": "120.78% / 3",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "SmartCash",
+    "price": "$0.634479",
+    "p24h": -14,
+    "market-cap": "$393,086,475",
+    "circulating-supply": "619,542,144 SMART",
+    "volume-24h": "$943,553",
+    "cmgr": "88.55% / 6",
+    "inflation": "24.97%"
+  },
+  {
+    "name": "Factom",
+    "price": "$44.59",
+    "p24h": -6,
+    "market-cap": "$389,944,098",
+    "circulating-supply": "8,745,102 FCT",
+    "volume-24h": "$10,792,400",
+    "cmgr": "22.26% / 27",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Nxt",
+    "price": "$0.381823",
+    "p24h": 29,
+    "market-cap": "$381,441,154",
+    "circulating-supply": "998,999,936 NXT",
+    "volume-24h": "$122,842,000",
+    "cmgr": "6.32% / 49",
+    "inflation": "-0.20%"
+  },
+  {
+    "name": "Kin",
+    "price": "$0.000492",
+    "p24h": 0,
+    "market-cap": "$372,000,000",
+    "circulating-supply": "756,097,548,288 KIN",
+    "volume-24h": "$1,325,070",
+    "cmgr": "49.42% / 4",
+    "inflation": "0.11%"
+  },
+  {
+    "name": "Aion",
+    "price": "$4.75",
+    "p24h": -13,
+    "market-cap": "$370,278,764",
+    "circulating-supply": "77,953,424 AION",
+    "volume-24h": "$8,336,950",
+    "cmgr": "108.52% / 3",
+    "inflation": "30.32%"
+  },
+  {
+    "name": "Dent",
+    "price": "$0.033938",
+    "p24h": -12,
+    "market-cap": "$360,243,757",
+    "circulating-supply": "10,614,761,472 DENT",
+    "volume-24h": "$10,021,500",
+    "cmgr": "129.26% / 5",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "MonaCoin",
+    "price": "$6.24",
+    "p24h": -8,
+    "market-cap": "$355,053,036",
+    "circulating-supply": "56,899,524 MONA",
+    "volume-24h": "$5,033,730",
+    "cmgr": "10.28% / 46",
+    "inflation": "1.17%"
+  },
+  {
+    "name": "DigixDAO",
+    "price": "$176.77",
+    "p24h": -6,
+    "market-cap": "$353,540,000",
+    "circulating-supply": "2,000,000 DGD",
+    "volume-24h": "$6,663,630",
+    "cmgr": "12.74% / 8",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Power Ledger",
+    "price": "$0.949943",
+    "p24h": -9,
+    "market-cap": "$345,599,442",
+    "circulating-supply": "363,810,720 POWR",
+    "volume-24h": "$27,744,500",
+    "cmgr": "337.83% / 2",
+    "inflation": "1.12%"
+  },
+  {
+    "name": "Aeternity",
+    "price": "$1.48",
+    "p24h": -2,
+    "market-cap": "$344,870,298",
+    "circulating-supply": "233,020,480 AE",
+    "volume-24h": "$2,399,090",
+    "cmgr": "11.87% / 7",
+    "inflation": "-0.13%"
+  },
+  {
+    "name": "aelf",
+    "price": "$1.37",
+    "p24h": -10,
+    "market-cap": "$342,500,000",
+    "circulating-supply": "250,000,000 ELF",
+    "volume-24h": "$91,334,500",
+    "cmgr": "43.85% / 1",
+    "inflation": "-"
+  },
+  {
+    "name": "Bytom",
+    "price": "$0.340729",
+    "p24h": -4,
+    "market-cap": "$336,299,523",
+    "circulating-supply": "987,000,000 BTM",
+    "volume-24h": "$20,267,400",
+    "cmgr": "26.63% / 5",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "ZClassic",
+    "price": "$106.69",
+    "p24h": -19,
+    "market-cap": "$336,029,543",
+    "circulating-supply": "3,149,588 ZCL",
+    "volume-24h": "$29,954,800",
+    "cmgr": "25.48% / 14",
+    "inflation": "73.30%"
+  },
+  {
+    "name": "Nebulas",
+    "price": "$9.32",
+    "p24h": -7,
+    "market-cap": "$330,860,000",
+    "circulating-supply": "35,500,000 NAS",
+    "volume-24h": "$22,865,400",
+    "cmgr": "17.66% / 5",
+    "inflation": "-"
+  },
+  {
+    "name": "MaidSafeCoin",
+    "price": "$0.730459",
+    "p24h": 8,
+    "market-cap": "$330,570,982",
+    "circulating-supply": "452,552,416 MAID",
+    "volume-24h": "$11,475,700",
+    "cmgr": "8.94% / 44",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Syscoin",
+    "price": "$0.613294",
+    "p24h": -3,
+    "market-cap": "$325,307,399",
+    "circulating-supply": "530,426,528 SYS",
+    "volume-24h": "$29,120,200",
+    "cmgr": "15.10% / 41",
+    "inflation": "0.13%"
+  },
+  {
+    "name": "ReddCoin",
+    "price": "$0.010511",
+    "p24h": -11,
+    "market-cap": "$302,001,007",
+    "circulating-supply": "28,731,899,904 RDD",
+    "volume-24h": "$5,219,450",
+    "cmgr": "13.19% / 47",
+    "inflation": "0.09%"
+  },
+  {
+    "name": "Nexus",
+    "price": "$5.47",
+    "p24h": -6,
+    "market-cap": "$301,758,337",
+    "circulating-supply": "55,166,056 NXS",
+    "volume-24h": "$2,823,430",
+    "cmgr": "22.15% / 36",
+    "inflation": "1.13%"
+  },
+  {
+    "name": "SIRIN LABS Token",
+    "price": "$3.02",
+    "p24h": 23,
+    "market-cap": "$298,797,166",
+    "circulating-supply": "98,939,456 SRN",
+    "volume-24h": "$15,880,000",
+    "cmgr": "229.99% / 1",
+    "inflation": "-"
+  },
+  {
+    "name": "GXShares",
+    "price": "$4.92",
+    "p24h": 0,
+    "market-cap": "$295,200,000",
+    "circulating-supply": "60,000,000 GXS",
+    "volume-24h": "$9,631,300",
+    "cmgr": "-2.54% / 7",
+    "inflation": "48.19%"
+  },
+  {
+    "name": "Enigma",
+    "price": "$3.91",
+    "p24h": -11,
+    "market-cap": "$292,609,428",
+    "circulating-supply": "74,836,168 ENG",
+    "volume-24h": "$7,421,050",
+    "cmgr": "92.34% / 3",
+    "inflation": "0.41%"
+  },
+  {
+    "name": "Request Network",
+    "price": "$0.455615",
+    "p24h": -8,
+    "market-cap": "$292,069,688",
+    "circulating-supply": "641,044,928 REQ",
+    "volume-24h": "$13,739,700",
+    "cmgr": "104.63% / 3",
+    "inflation": "0.05%"
+  },
+  {
+    "name": "Cryptonex",
+    "price": "$6.26",
+    "p24h": 7,
+    "market-cap": "$282,187,766",
+    "circulating-supply": "45,077,920 CNX",
+    "volume-24h": "$293,944",
+    "cmgr": "30.18% / 3",
+    "inflation": "0.11%"
+  },
+  {
+    "name": "Emercoin",
+    "price": "$6.72",
+    "p24h": -10,
+    "market-cap": "$276,999,596",
+    "circulating-supply": "41,220,176 EMC",
+    "volume-24h": "$1,951,950",
+    "cmgr": "23.20% / 41",
+    "inflation": "0.14%"
+  },
+  {
+    "name": "ChainLink",
+    "price": "$0.790746",
+    "p24h": -10,
+    "market-cap": "$276,761,100",
+    "circulating-supply": "350,000,000 LINK",
+    "volume-24h": "$11,327,700",
+    "cmgr": "54.30% / 4",
+    "inflation": "-0.36%"
+  },
+  {
+    "name": "Neblio",
+    "price": "$21.57",
+    "p24h": -13,
+    "market-cap": "$274,933,398",
+    "circulating-supply": "12,746,101 NEBL",
+    "volume-24h": "$7,116,500",
+    "cmgr": "153.01% / 4",
+    "inflation": "0.66%"
+  },
+  {
+    "name": "Bancor",
+    "price": "$6.59",
+    "p24h": -7,
+    "market-cap": "$268,693,219",
+    "circulating-supply": "40,772,872 BNT",
+    "volume-24h": "$8,478,540",
+    "cmgr": "6.69% / 7",
+    "inflation": "-0.01%"
+  },
+  {
+    "name": "ZCoin",
+    "price": "$67.90",
+    "p24h": -12,
+    "market-cap": "$267,385,718",
+    "circulating-supply": "3,937,934 XZC",
+    "volume-24h": "$3,653,910",
+    "cmgr": "42.92% / 15",
+    "inflation": "5.28%"
+  },
+  {
+    "name": "Substratum",
+    "price": "$1.17",
+    "p24h": -16,
+    "market-cap": "$264,526,995",
+    "circulating-supply": "226,091,456 SUB",
+    "volume-24h": "$12,041,500",
+    "cmgr": "131.18% / 4",
+    "inflation": "0.14%"
+  },
+  {
+    "name": "Experience Points",
+    "price": "$0.00127",
+    "p24h": -11,
+    "market-cap": "$268,849,841",
+    "circulating-supply": "211,692,781,568 XP",
+    "volume-24h": "$1,528,840",
+    "cmgr": "160.93% / 1",
+    "inflation": "9.61%"
+  },
+  {
+    "name": "MediBloc",
+    "price": "$0.088088",
+    "p24h": -13,
+    "market-cap": "$261,302,842",
+    "circulating-supply": "2,966,384,128 MED",
+    "volume-24h": "$6,968,920",
+    "cmgr": "390.11% / 1",
+    "inflation": "-"
+  },
+  {
+    "name": "Quantstamp",
+    "price": "$0.412894",
+    "p24h": -6,
+    "market-cap": "$254,885,317",
+    "circulating-supply": "617,314,176 QSP",
+    "volume-24h": "$15,626,100",
+    "cmgr": "159.68% / 2",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Bitcore",
+    "price": "$22.43",
+    "p24h": -17,
+    "market-cap": "$244,287,081",
+    "circulating-supply": "10,891,087 BTX",
+    "volume-24h": "$3,291,470",
+    "cmgr": "16.18% / 9",
+    "inflation": "444.11%"
+  },
+  {
+    "name": "TenX",
+    "price": "$2.23",
+    "p24h": -6,
+    "market-cap": "$233,394,721",
+    "circulating-supply": "104,661,312 PAY",
+    "volume-24h": "$11,627,300",
+    "cmgr": "17.68% / 6",
+    "inflation": "0.05%"
+  },
+  {
+    "name": "XPlay",
+    "price": "$0.231756",
+    "p24h": 0,
+    "market-cap": "$231,756,000",
+    "circulating-supply": "1,000,000,000 XPA",
+    "volume-24h": "$143,905",
+    "cmgr": "106.90% / 4",
+    "inflation": "0.00%"
+  },
+  {
+    "name": "Iconomi",
+    "price": "$2.26",
+    "p24h": -11,
+    "market-cap": "$225,521,589",
+    "circulating-supply": "99,788,312 ICN",
+    "volume-24h": "$3,993,010",
+    "cmgr": "-3.30% / 7",
+    "inflation": "-0.19%"
+  }
+]

+ 0 - 907
src/pages/_data/crypto-currencies.yml

@@ -1,907 +0,0 @@
-- name: Bitcoin
-  price: "$10513.00"
-  p24h: -7
-  market-cap: "$179,470,305,923"
-  circulating-supply: 16,819,612 BTC
-  volume-24h: "$9,578,830,000"
-  cmgr: 8.11% / 57
-  inflation: 0.36%
-  icon: bitcoin.svg
-
-- name: Ethereum
-  price: "$966.61"
-  p24h: -6
-  market-cap: "$95,270,125,036"
-  circulating-supply: 97,145,024 ETH
-  volume-24h: "$3,466,060,000"
-  cmgr: 22.62% / 29
-  inflation: 0.64%
-  icon: ethereum.svg
-
-- name: Ripple
-  price: "$1.2029"
-  p24h: -11
-  market-cap: "$47,649,145,657"
-  circulating-supply: 38,739,144,704 XRP
-  volume-24h: "$2,081,450,000"
-  cmgr: 10.85% / 53
-  inflation: 0.06%
-  icon: ripple.svg
-
-- name: Bitcoin Cash
-  price: "$1547.00"
-  p24h: -11
-  market-cap: "$26,720,210,956"
-  circulating-supply: 16,925,988 BCH
-  volume-24h: "$598,337,000"
-  cmgr: 21.30% / 6
-  inflation: 0.32%
-
-- name: Cardano
-  price: "$0.550768"
-  p24h: -9
-  market-cap: "$14,279,800,786"
-  circulating-supply: 25,927,069,696 ADA
-  volume-24h: "$466,381,000"
-  cmgr: 205.35% / 3
-  inflation: 0.00%
-  icon: cardano.svg
-
-- name: Litecoin
-  price: "$173.86"
-  p24h: -7
-  market-cap: "$9,670,920,267"
-  circulating-supply: 54,873,584 LTC
-  volume-24h: "$430,524,000"
-  cmgr: 6.87% / 57
-  inflation: 0.80%
-  icon: litecoin.svg
-
-- name: EOS
-  price: "$13.394"
-  p24h: 5
-  market-cap: "$8,420,143,033"
-  circulating-supply: 621,412,800 EOS
-  volume-24h: "$2,864,780,000"
-  cmgr: 53.25% / 6
-  inflation: 11.56%
-  icon: eos.svg
-
-- name: NEM
-  price: "$0.935049"
-  p24h: -11
-  market-cap: "$8,415,440,999"
-  circulating-supply: 8,999,999,488 XEM
-  volume-24h: "$66,061,000"
-  cmgr: 26.99% / 33
-  inflation: 0.24%
-  icon: nem.svg
-
-- name: Stellar
-  price: "$0.467813"
-  p24h: 2
-  market-cap: "$8,358,735,080"
-  circulating-supply: 17,867,683,840 XLM
-  volume-24h: "$370,297,000"
-  cmgr: 13.12% / 41
-  inflation: 0.19%
-
-- name: NEO
-  price: "$118.61"
-  p24h: -9
-  market-cap: "$7,693,400,000"
-  circulating-supply: 65,000,000 NEO
-  volume-24h: "$318,308,000"
-  cmgr: 62.68% / 15
-  inflation: 0.00%
-
-- name: IOTA
-  price: "$2.34"
-  p24h: -14
-  market-cap: "$6,504,100,862"
-  circulating-supply: 2,779,530,240 MIOTA
-  volume-24h: "$103,132,000"
-  cmgr: 23.27% / 7
-  inflation: "-0.02%"
-
-- name: Dash
-  price: "$747.222"
-  p24h: -8
-  market-cap: "$5,881,413,815"
-  circulating-supply: 7,833,738 DASH
-  volume-24h: "$96,147,900"
-  cmgr: 19.19% / 47
-  inflation: 0.81%
-  icon: dash.svg
-
-- name: Monero
-  price: "$305.16"
-  p24h: -11
-  market-cap: "$4,778,157,533"
-  circulating-supply: 15,633,286 XMR
-  volume-24h: "$100,788,000"
-  cmgr: 11.88% / 44
-  inflation: 0.78%
-
-- name: TRON
-  price: "$0.067691"
-  p24h: -5
-  market-cap: "$4,450,560,896"
-  circulating-supply: 65,748,193,280 TRX
-  volume-24h: "$581,651,000"
-  cmgr: 142.69% / 4
-  inflation: 0.00%
-
-- name: Bitcoin Gold
-  price: "$181.39"
-  p24h: -7
-  market-cap: "$3,084,108,676"
-  circulating-supply: 16,779,700 BTG
-  volume-24h: "$199,652,000"
-  cmgr: "-25.44% / 3"
-  inflation: 0.34%
-
-- name: ICON
-  price: "$7.90"
-  p24h: -10
-  market-cap: "$3,002,355,531"
-  circulating-supply: 380,044,992 ICX
-  volume-24h: "$78,201,200"
-  cmgr: 179.33% / 3
-  inflation: 90.09%
-
-- name: Qtum
-  price: "$38.37"
-  p24h: -9
-  market-cap: "$2,832,729,404"
-  circulating-supply: 73,826,672 QTUM
-  volume-24h: "$593,524,000"
-  cmgr: 30.43% / 8
-  inflation: 0.11%
-
-- name: Ethereum Classic
-  price: "$28.023"
-  p24h: -6
-  market-cap: "$2,827,320,112"
-  circulating-supply: 99,308,752 ETC
-  volume-24h: "$303,356,000"
-  cmgr: 22.79% / 18
-  inflation: 0.74%
-
-- name: Lisk
-  price: "$20.48"
-  p24h: -6
-  market-cap: "$2,401,760,051"
-  circulating-supply: 117,273,440 LSK
-  volume-24h: "$44,483,500"
-  cmgr: 12.05% / 21
-  inflation: 0.86%
-
-- name: VeChain
-  price: "$8.33"
-  p24h: 9
-  market-cap: "$2,308,764,732"
-  circulating-supply: 277,162,624 VEN
-  volume-24h: "$348,907,000"
-  cmgr: 101.15% / 5
-  inflation: "-0.06%"
-
-- name: RaiBlocks
-  price: "$14.46"
-  p24h: -15
-  market-cap: "$1,926,770,258"
-  circulating-supply: 133,248,288 XRB
-  volume-24h: "$13,331,500"
-  cmgr: 112.15% / 10
-  inflation: 0.06%
-
-- name: Tether
-  price: "$1.0097"
-  p24h: -1
-  market-cap: "$1,618,090,823"
-  circulating-supply: 1,618,090,880 USDT
-  volume-24h: "$3,022,620,000"
-  cmgr: 0.03% / 33
-  inflation: 33.71%
-
-- name: OmiseGO
-  price: "$14.83"
-  p24h: -11
-  market-cap: "$1,532,679,131"
-  circulating-supply: 102,042,552 OMG
-  volume-24h: "$63,574,500"
-  cmgr: 50.49% / 6
-  inflation: "-0.04%"
-
-- name: Populous
-  price: "$41.22"
-  p24h: -3
-  market-cap: "$1,525,305,992"
-  circulating-supply: 37,004,028 PPT
-  volume-24h: "$2,271,650"
-  cmgr: 58.49% / 6
-  inflation: "-10.29%"
-
-- name: Zcash
-  price: "$431.43"
-  p24h: -10
-  market-cap: "$1,358,979,711"
-  circulating-supply: 3,114,069 ZEC
-  volume-24h: "$71,375,000"
-  cmgr: "-13.51% / 15"
-  inflation: 7.44%
-
-- name: Verge
-  price: "$0.089875"
-  p24h: -13
-  market-cap: "$1,303,358,298"
-  circulating-supply: 14,501,900,288 XVG
-  volume-24h: "$75,841,900"
-  cmgr: 27.95% / 39
-  inflation: 2.06%
-
-- name: Binance Coin
-  price: "$12.60"
-  p24h: -9
-  market-cap: "$1,247,576,400"
-  circulating-supply: 99,014,000 BNB
-  volume-24h: "$129,483,000"
-  cmgr: 122.80% / 6
-  inflation: 0.08%
-
-- name: Siacoin
-  price: "$0.037594"
-  p24h: -13
-  market-cap: "$1,180,306,719"
-  circulating-supply: 31,396,145,152 SC
-  volume-24h: "$58,783,600"
-  cmgr: 26.70% / 29
-  inflation: 0.00%
-
-- name: Stratis
-  price: "$11.50"
-  p24h: -13
-  market-cap: "$1,135,175,764"
-  circulating-supply: 98,710,936 STRAT
-  volume-24h: "$25,548,100"
-  cmgr: 49.79% / 17
-  inflation: "-0.02%"
-
-- name: Bytecoin
-  price: "$0.006127"
-  p24h: -8
-  market-cap: "$1,125,403,469"
-  circulating-supply: 183,679,369,216 BCN
-  volume-24h: "$7,904,870"
-  cmgr: 11.39% / 43
-  inflation: 0.23%
-
-- name: Steem
-  price: "$4.13"
-  p24h: -14
-  market-cap: "$1,022,039,920"
-  circulating-supply: 247,467,296 STEEM
-  volume-24h: "$29,580,000"
-  cmgr: 10.15% / 21
-  inflation: 0.68%
-
-- name: Ardor
-  price: "$0.995641"
-  p24h: -9
-  market-cap: "$994,644,856"
-  circulating-supply: 998,999,488 ARDR
-  volume-24h: "$143,752,000"
-  cmgr: 20.75% / 18
-  inflation: "-0.41%"
-
-- name: Status
-  price: "$0.264278"
-  p24h: -9
-  market-cap: "$917,172,514"
-  circulating-supply: 3,470,483,712 SNT
-  volume-24h: "$355,833,000"
-  cmgr: 24.53% / 7
-  inflation: 0.00%
-
-- name: Maker
-  price: "$1480.84"
-  p24h: -7
-  market-cap: "$915,496,751"
-  circulating-supply: 618,228 MKR
-  volume-24h: "$1,662,690"
-  cmgr: 42.77% / 12
-  inflation: "-"
-
-- name: Augur
-  price: "$81.55"
-  p24h: -5
-  market-cap: "$897,050,000"
-  circulating-supply: 11,000,000 REP
-  volume-24h: "$16,086,600"
-  cmgr: 16.36% / 27
-  inflation: 0.01%
-
-- name: BitShares
-  price: "$0.317687"
-  p24h: -9
-  market-cap: "$828,330,730"
-  circulating-supply: 2,607,379,968 BTS
-  volume-24h: "$43,185,600"
-  cmgr: 8.22% / 42
-  inflation: 0.06%
-
-- name: 0x
-  price: "$1.66"
-  p24h: -3
-  market-cap: "$827,949,569"
-  circulating-supply: 498,764,800 ZRX
-  volume-24h: "$20,493,000"
-  cmgr: 72.59% / 5
-  inflation: "-0.24%"
-
-- name: Waves
-  price: "$8.13"
-  p24h: -1
-  market-cap: "$813,000,000"
-  circulating-supply: 100,000,000 WAVES
-  volume-24h: "$26,239,600"
-  cmgr: 10.11% / 19
-  inflation: "-0.01%"
-
-- name: Dogecoin
-  price: "$0.00659"
-  p24h: -8
-  market-cap: "$743,890,685"
-  circulating-supply: 112,881,745,920 DOGE
-  volume-24h: "$20,613,400"
-  cmgr: 5.35% / 49
-  inflation: 0.36%
-
-- name: KuCoin Shares
-  price: "$7.91"
-  p24h: -17
-  market-cap: "$720,150,731"
-  circulating-supply: 91,043,072 KCS
-  volume-24h: "$5,481,780"
-  cmgr: 276.01% / 2
-  inflation: "-0.04%"
-
-- name: Electroneum
-  price: "$0.120304"
-  p24h: -7
-  market-cap: "$712,763,819"
-  circulating-supply: 5,924,689,408 ETN
-  volume-24h: "$5,103,980"
-  cmgr: 19.45% / 2
-  inflation: 18.19%
-
-- name: Walton
-  price: "$27.79"
-  p24h: 1
-  market-cap: "$691,920,366"
-  circulating-supply: 24,898,178 WTC
-  volume-24h: "$50,403,900"
-  cmgr: 92.30% / 5
-  inflation: 0.00%
-
-- name: Veritaseum
-  price: "$335.15"
-  p24h: -8
-  market-cap: "$682,581,571"
-  circulating-supply: 2,036,645 VERI
-  volume-24h: "$628,128"
-  cmgr: 33.82% / 7
-  inflation: 0.00%
-
-- name: Komodo
-  price: "$5.96"
-  p24h: -11
-  market-cap: "$614,151,644"
-  circulating-supply: 103,045,576 KMD
-  volume-24h: "$7,010,050"
-  cmgr: 45.00% / 11
-  inflation: "-1.09%"
-
-- name: Decred
-  price: "$91.29"
-  p24h: -8
-  market-cap: "$603,249,158"
-  circulating-supply: 6,608,053 DCR
-  volume-24h: "$1,304,410"
-  cmgr: 22.47% / 23
-  inflation: 3.04%
-
-- name: Dragonchain
-  price: "$2.39"
-  p24h: -11
-  market-cap: "$569,828,436"
-  circulating-supply: 238,421,936 DRGN
-  volume-24h: "$3,490,920"
-  cmgr: 926.29% / 1
-  inflation: 0.14%
-
-- name: Dentacoin
-  price: "$0.001735"
-  p24h: -5
-  market-cap: "$564,205,023"
-  circulating-supply: 325,190,221,824 DCN
-  volume-24h: "$1,082,850"
-  cmgr: 43.44% / 5
-  inflation: 0.05%
-
-- name: Loopring
-  price: "$0.965091"
-  p24h: -9
-  market-cap: "$541,577,621"
-  circulating-supply: 561,167,424 LRC
-  volume-24h: "$11,179,900"
-  cmgr: 55.67% / 5
-  inflation: 95.51%
-
-- name: Ark
-  price: "$5.36"
-  p24h: -11
-  market-cap: "$525,179,682"
-  circulating-supply: 97,981,280 ARK
-  volume-24h: "$7,183,610"
-  cmgr: 68.16% / 10
-  inflation: "-0.07%"
-
-- name: SALT
-  price: "$7.23"
-  p24h: -11
-  market-cap: "$514,095,078"
-  circulating-supply: 71,105,824 SALT
-  volume-24h: "$12,135,100"
-  cmgr: 4.35% / 4
-  inflation: 38.07%
-
-- name: QASH
-  price: "$1.46"
-  p24h: -9
-  market-cap: "$511,000,000"
-  circulating-supply: 350,000,000 QASH
-  volume-24h: "$19,206,800"
-  cmgr: 85.16% / 2
-  inflation: "-0.17%"
-
-- name: DigiByte
-  price: "$0.050116"
-  p24h: -11
-  market-cap: "$487,853,928"
-  circulating-supply: 9,734,494,208 DGB
-  volume-24h: "$11,389,900"
-  cmgr: 8.02% / 47
-  inflation: 1.48%
-
-- name: Basic Attention Token
-  price: "$0.487348"
-  p24h: -12
-  market-cap: "$487,348,000"
-  circulating-supply: 1,000,000,000 BAT
-  volume-24h: "$14,891,300"
-  cmgr: 19.38% / 7
-  inflation: 0.00%
-
-- name: PIVX
-  price: "$8.68"
-  p24h: 4
-  market-cap: "$480,968,834"
-  circulating-supply: 55,411,156 PIVX
-  volume-24h: "$11,144,700"
-  cmgr: 47.24% / 23
-  inflation: 0.42%
-
-- name: Golem
-  price: "$0.571295"
-  p24h: -9
-  market-cap: "$476,609,709"
-  circulating-supply: 834,262,016 GNT
-  volume-24h: "$10,420,800"
-  cmgr: 30.48% / 14
-  inflation: 0.10%
-
-- name: Hshare
-  price: "$10.82"
-  p24h: -9
-  market-cap: "$460,173,193"
-  circulating-supply: 42,529,872 HSR
-  volume-24h: "$100,098,000"
-  cmgr: "-9.81% / 5"
-  inflation: 0.30%
-
-- name: Byteball Bytes
-  price: "$700.65"
-  p24h: -1
-  market-cap: "$452,074,794"
-  circulating-supply: 645,222 GBYTE
-  volume-24h: "$1,461,460"
-  cmgr: 32.04% / 13
-  inflation: 0.00%
-
-- name: Kyber Network
-  price: "$3.32"
-  p24h: -9
-  market-cap: "$445,320,554"
-  circulating-supply: 134,132,696 KNC
-  volume-24h: "$39,139,800"
-  cmgr: 18.46% / 4
-  inflation: 0.08%
-
-- name: WAX
-  price: "$0.903366"
-  p24h: -8
-  market-cap: "$445,318,368"
-  circulating-supply: 492,954,528 WAX
-  volume-24h: "$8,945,930"
-  cmgr: "-77.44% / 1"
-  inflation: "-"
-
-- name: Ethos
-  price: "$5.84"
-  p24h: -8
-  market-cap: "$440,377,399"
-  circulating-supply: 75,407,088 ETHOS
-  volume-24h: "$3,608,200"
-  cmgr: 84.05% / 2
-  inflation: 0.31%
-
-- name: Gas
-  price: "$44.44"
-  p24h: -12
-  market-cap: "$425,068,288"
-  circulating-supply: 9,564,993 GAS
-  volume-24h: "$19,148,900"
-  cmgr: 74.36% / 6
-  inflation: 4.55%
-
-- name: RChain
-  price: "$1.71"
-  p24h: -6
-  market-cap: "$417,309,706"
-  circulating-supply: 244,040,768 RHOC
-  volume-24h: "$773,418"
-  cmgr: 117.91% / 3
-  inflation: 33.41%
-
-- name: FunFair
-  price: "$0.092324"
-  p24h: -8
-  market-cap: "$407,987,657"
-  circulating-supply: 4,419,085,824 FUN
-  volume-24h: "$12,285,800"
-  cmgr: 37.92% / 6
-  inflation: 3.98%
-
-- name: Cindicator
-  price: "$0.272886"
-  p24h: 32
-  market-cap: "$394,586,767"
-  circulating-supply: 1,445,976,576 CND
-  volume-24h: "$262,465,000"
-  cmgr: 120.78% / 3
-  inflation: 0.00%
-
-- name: SmartCash
-  price: "$0.634479"
-  p24h: -14
-  market-cap: "$393,086,475"
-  circulating-supply: 619,542,144 SMART
-  volume-24h: "$943,553"
-  cmgr: 88.55% / 6
-  inflation: 24.97%
-
-- name: Factom
-  price: "$44.59"
-  p24h: -6
-  market-cap: "$389,944,098"
-  circulating-supply: 8,745,102 FCT
-  volume-24h: "$10,792,400"
-  cmgr: 22.26% / 27
-  inflation: 0.00%
-
-- name: Nxt
-  price: "$0.381823"
-  p24h: 29
-  market-cap: "$381,441,154"
-  circulating-supply: 998,999,936 NXT
-  volume-24h: "$122,842,000"
-  cmgr: 6.32% / 49
-  inflation: "-0.20%"
-
-- name: Kin
-  price: "$0.000492"
-  p24h: 0
-  market-cap: "$372,000,000"
-  circulating-supply: 756,097,548,288 KIN
-  volume-24h: "$1,325,070"
-  cmgr: 49.42% / 4
-  inflation: 0.11%
-
-- name: Aion
-  price: "$4.75"
-  p24h: -13
-  market-cap: "$370,278,764"
-  circulating-supply: 77,953,424 AION
-  volume-24h: "$8,336,950"
-  cmgr: 108.52% / 3
-  inflation: 30.32%
-
-- name: Dent
-  price: "$0.033938"
-  p24h: -12
-  market-cap: "$360,243,757"
-  circulating-supply: 10,614,761,472 DENT
-  volume-24h: "$10,021,500"
-  cmgr: 129.26% / 5
-  inflation: 0.00%
-
-- name: MonaCoin
-  price: "$6.24"
-  p24h: -8
-  market-cap: "$355,053,036"
-  circulating-supply: 56,899,524 MONA
-  volume-24h: "$5,033,730"
-  cmgr: 10.28% / 46
-  inflation: 1.17%
-
-- name: DigixDAO
-  price: "$176.77"
-  p24h: -6
-  market-cap: "$353,540,000"
-  circulating-supply: 2,000,000 DGD
-  volume-24h: "$6,663,630"
-  cmgr: 12.74% / 8
-  inflation: 0.00%
-
-- name: Power Ledger
-  price: "$0.949943"
-  p24h: -9
-  market-cap: "$345,599,442"
-  circulating-supply: 363,810,720 POWR
-  volume-24h: "$27,744,500"
-  cmgr: 337.83% / 2
-  inflation: 1.12%
-
-- name: Aeternity
-  price: "$1.48"
-  p24h: -2
-  market-cap: "$344,870,298"
-  circulating-supply: 233,020,480 AE
-  volume-24h: "$2,399,090"
-  cmgr: 11.87% / 7
-  inflation: "-0.13%"
-
-- name: aelf
-  price: "$1.37"
-  p24h: -10
-  market-cap: "$342,500,000"
-  circulating-supply: 250,000,000 ELF
-  volume-24h: "$91,334,500"
-  cmgr: 43.85% / 1
-  inflation: "-"
-
-- name: Bytom
-  price: "$0.340729"
-  p24h: -4
-  market-cap: "$336,299,523"
-  circulating-supply: 987,000,000 BTM
-  volume-24h: "$20,267,400"
-  cmgr: 26.63% / 5
-  inflation: 0.00%
-
-- name: ZClassic
-  price: "$106.69"
-  p24h: -19
-  market-cap: "$336,029,543"
-  circulating-supply: 3,149,588 ZCL
-  volume-24h: "$29,954,800"
-  cmgr: 25.48% / 14
-  inflation: 73.30%
-
-- name: Nebulas
-  price: "$9.32"
-  p24h: -7
-  market-cap: "$330,860,000"
-  circulating-supply: 35,500,000 NAS
-  volume-24h: "$22,865,400"
-  cmgr: 17.66% / 5
-  inflation: "-"
-
-- name: MaidSafeCoin
-  price: "$0.730459"
-  p24h: 8
-  market-cap: "$330,570,982"
-  circulating-supply: 452,552,416 MAID
-  volume-24h: "$11,475,700"
-  cmgr: 8.94% / 44
-  inflation: 0.00%
-
-- name: Syscoin
-  price: "$0.613294"
-  p24h: -3
-  market-cap: "$325,307,399"
-  circulating-supply: 530,426,528 SYS
-  volume-24h: "$29,120,200"
-  cmgr: 15.10% / 41
-  inflation: 0.13%
-
-- name: ReddCoin
-  price: "$0.010511"
-  p24h: -11
-  market-cap: "$302,001,007"
-  circulating-supply: 28,731,899,904 RDD
-  volume-24h: "$5,219,450"
-  cmgr: 13.19% / 47
-  inflation: 0.09%
-
-- name: Nexus
-  price: "$5.47"
-  p24h: -6
-  market-cap: "$301,758,337"
-  circulating-supply: 55,166,056 NXS
-  volume-24h: "$2,823,430"
-  cmgr: 22.15% / 36
-  inflation: 1.13%
-
-- name: SIRIN LABS Token
-  price: "$3.02"
-  p24h: 23
-  market-cap: "$298,797,166"
-  circulating-supply: 98,939,456 SRN
-  volume-24h: "$15,880,000"
-  cmgr: 229.99% / 1
-  inflation: "-"
-
-- name: GXShares
-  price: "$4.92"
-  p24h: 0
-  market-cap: "$295,200,000"
-  circulating-supply: 60,000,000 GXS
-  volume-24h: "$9,631,300"
-  cmgr: "-2.54% / 7"
-  inflation: 48.19%
-
-- name: Enigma
-  price: "$3.91"
-  p24h: -11
-  market-cap: "$292,609,428"
-  circulating-supply: 74,836,168 ENG
-  volume-24h: "$7,421,050"
-  cmgr: 92.34% / 3
-  inflation: 0.41%
-
-- name: Request Network
-  price: "$0.455615"
-  p24h: -8
-  market-cap: "$292,069,688"
-  circulating-supply: 641,044,928 REQ
-  volume-24h: "$13,739,700"
-  cmgr: 104.63% / 3
-  inflation: 0.05%
-
-- name: Cryptonex
-  price: "$6.26"
-  p24h: 7
-  market-cap: "$282,187,766"
-  circulating-supply: 45,077,920 CNX
-  volume-24h: "$293,944"
-  cmgr: 30.18% / 3
-  inflation: 0.11%
-
-- name: Emercoin
-  price: "$6.72"
-  p24h: -10
-  market-cap: "$276,999,596"
-  circulating-supply: 41,220,176 EMC
-  volume-24h: "$1,951,950"
-  cmgr: 23.20% / 41
-  inflation: 0.14%
-
-- name: ChainLink
-  price: "$0.790746"
-  p24h: -10
-  market-cap: "$276,761,100"
-  circulating-supply: 350,000,000 LINK
-  volume-24h: "$11,327,700"
-  cmgr: 54.30% / 4
-  inflation: "-0.36%"
-
-- name: Neblio
-  price: "$21.57"
-  p24h: -13
-  market-cap: "$274,933,398"
-  circulating-supply: 12,746,101 NEBL
-  volume-24h: "$7,116,500"
-  cmgr: 153.01% / 4
-  inflation: 0.66%
-
-- name: Bancor
-  price: "$6.59"
-  p24h: -7
-  market-cap: "$268,693,219"
-  circulating-supply: 40,772,872 BNT
-  volume-24h: "$8,478,540"
-  cmgr: 6.69% / 7
-  inflation: "-0.01%"
-
-- name: ZCoin
-  price: "$67.90"
-  p24h: -12
-  market-cap: "$267,385,718"
-  circulating-supply: 3,937,934 XZC
-  volume-24h: "$3,653,910"
-  cmgr: 42.92% / 15
-  inflation: 5.28%
-
-- name: Substratum
-  price: "$1.17"
-  p24h: -16
-  market-cap: "$264,526,995"
-  circulating-supply: 226,091,456 SUB
-  volume-24h: "$12,041,500"
-  cmgr: 131.18% / 4
-  inflation: 0.14%
-
-- name: Experience Points
-  price: "$0.00127"
-  p24h: -11
-  market-cap: "$268,849,841"
-  circulating-supply: 211,692,781,568 XP
-  volume-24h: "$1,528,840"
-  cmgr: 160.93% / 1
-  inflation: 9.61%
-
-- name: MediBloc
-  price: "$0.088088"
-  p24h: -13
-  market-cap: "$261,302,842"
-  circulating-supply: 2,966,384,128 MED
-  volume-24h: "$6,968,920"
-  cmgr: 390.11% / 1
-  inflation: "-"
-
-- name: Quantstamp
-  price: "$0.412894"
-  p24h: -6
-  market-cap: "$254,885,317"
-  circulating-supply: 617,314,176 QSP
-  volume-24h: "$15,626,100"
-  cmgr: 159.68% / 2
-  inflation: 0.00%
-
-- name: Bitcore
-  price: "$22.43"
-  p24h: -17
-  market-cap: "$244,287,081"
-  circulating-supply: 10,891,087 BTX
-  volume-24h: "$3,291,470"
-  cmgr: 16.18% / 9
-  inflation: 444.11%
-
-- name: TenX
-  price: "$2.23"
-  p24h: -6
-  market-cap: "$233,394,721"
-  circulating-supply: 104,661,312 PAY
-  volume-24h: "$11,627,300"
-  cmgr: 17.68% / 6
-  inflation: 0.05%
-
-- name: XPlay
-  price: "$0.231756"
-  p24h: 0
-  market-cap: "$231,756,000"
-  circulating-supply: 1,000,000,000 XPA
-  volume-24h: "$143,905"
-  cmgr: 106.90% / 4
-  inflation: 0.00%
-
-- name: Iconomi
-  price: "$2.26"
-  p24h: -11
-  market-cap: "$225,521,589"
-  circulating-supply: 99,788,312 ICN
-  volume-24h: "$3,993,010"
-  cmgr: "-3.30% / 7"
-  inflation: "-0.19%"

+ 265 - 0
src/pages/_data/docs.json

@@ -0,0 +1,265 @@
+{
+  "index": {
+    "title": "Introduction",
+    "url": "docs/",
+    "hide-in-index": true
+  },
+  "base": {
+    "title": "Getting started",
+    "children": {
+      "getting-started": {
+        "title": "Getting Started",
+        "url": "docs/getting-started.html"
+      },
+      "download": {
+        "title": "Download",
+        "url": "docs/download.html"
+      },
+      "browser-support": {
+        "title": "Browser Support",
+        "url": "docs/browser-support.html"
+      }
+    }
+  },
+  "content": {
+    "title": "Content",
+    "children": {
+      "colors": {
+        "title": "Colors",
+        "url": "docs/colors.html"
+      },
+      "typography": {
+        "title": "Typography",
+        "url": "docs/typography.html"
+      },
+      "icons": {
+        "title": "Icons",
+        "url": "docs/icons.html"
+      },
+      "customize": {
+        "title": "Customize Tabler",
+        "url": "docs/customize.html"
+      }
+    }
+  },
+  "layout": {
+    "title": "Layout",
+    "children": {
+      "headers": {
+        "title": "Page headers",
+        "url": "docs/page-headers.html"
+      }
+    }
+  },
+  "forms": {
+    "title": "Form components",
+    "children": {
+      "form-elements": {
+        "title": "Form elements",
+        "url": "docs/form-elements.html"
+      },
+      "form-helpers": {
+        "title": "Form helpers",
+        "url": "docs/form-helpers.html"
+      },
+      "validation-states": {
+        "title": "Validation states",
+        "url": "docs/form-validation.html"
+      },
+      "image-check": {
+        "title": "Image check",
+        "url": "docs/form-image-check.html"
+      },
+      "color-check": {
+        "title": "Color check",
+        "url": "docs/form-color-check.html"
+      },
+      "selectboxes": {
+        "title": "Form selectboxes",
+        "url": "docs/form-selectboxes.html"
+      },
+      "fieldset": {
+        "title": "Form fieldset",
+        "url": "docs/form-fieldset.html"
+      }
+    }
+  },
+  "components": {
+    "title": "Components",
+    "columns": 2,
+    "children": {
+      "alerts": {
+        "title": "Alerts",
+        "url": "docs/alerts.html"
+      },
+      "avatars": {
+        "title": "Avatars",
+        "url": "docs/avatars.html"
+      },
+      "badges": {
+        "title": "Badges",
+        "url": "docs/badges.html"
+      },
+      "breadcrumb": {
+        "title": "Breadcrumb",
+        "url": "docs/breadcrumb.html"
+      },
+      "buttons": {
+        "title": "Buttons",
+        "url": "docs/buttons.html"
+      },
+      "cards": {
+        "title": "Cards",
+        "url": "docs/cards.html"
+      },
+      "carousel": {
+        "title": "Carousel",
+        "url": "docs/carousel.html"
+      },
+      "datagrid": {
+        "title": "Data grid",
+        "url": "docs/datagrid.html"
+      },
+      "dropdowns": {
+        "title": "Dropdowns",
+        "url": "docs/dropdowns.html"
+      },
+      "divider": {
+        "title": "Divider",
+        "url": "docs/divider.html"
+      },
+      "empty": {
+        "title": "Empty states",
+        "url": "docs/empty.html"
+      },
+      "modals": {
+        "title": "Modals",
+        "url": "docs/modals.html"
+      },
+      "page-headers": {
+        "title": "Page headers",
+        "url": "docs/page-headers.html"
+      },
+      "progress": {
+        "title": "Progress",
+        "url": "docs/progress.html"
+      },
+      "range-slider": {
+        "title": "Range slider",
+        "url": "docs/range-slider.html"
+      },
+      "ribbons": {
+        "title": "Ribbons",
+        "url": "docs/ribbons.html"
+      },
+      "placeholder": {
+        "title": "Placeholder",
+        "url": "docs/placeholder.html"
+      },
+      "spinners": {
+        "title": "Spinners",
+        "url": "docs/spinners.html"
+      },
+      "statuses": {
+        "title": "Statuses",
+        "url": "docs/statuses.html"
+      },
+      "steps": {
+        "title": "Steps",
+        "url": "docs/steps.html"
+      },
+      "switch-icon": {
+        "title": "Switch icon",
+        "url": "docs/switch-icon.html"
+      },
+      "tables": {
+        "title": "Tables",
+        "url": "docs/tables.html"
+      },
+      "tabs": {
+        "title": "Tabs",
+        "url": "docs/tabs.html"
+      },
+      "timelines": {
+        "title": "Timelines",
+        "url": "docs/timelines.html"
+      },
+      "toasts": {
+        "title": "Toasts",
+        "url": "docs/toasts.html"
+      },
+      "tracking": {
+        "title": "Tracking",
+        "url": "docs/tracking.html"
+      },
+      "tooltips": {
+        "title": "Tooltips",
+        "url": "docs/tooltips.html"
+      },
+      "popover": {
+        "title": "Popover",
+        "url": "docs/popover.html"
+      }
+    }
+  },
+  "utils": {
+    "title": "Utilities",
+    "children": {
+      "borders": {
+        "title": "Borders",
+        "url": "docs/borders.html"
+      },
+      "cursors": {
+        "title": "Cursors",
+        "url": "docs/cursors.html"
+      },
+      "interactions": {
+        "title": "Interactions",
+        "url": "docs/interactions.html"
+      }
+    }
+  },
+  "plugins": {
+    "title": "Plugins",
+    "children": {
+      "autosize": {
+        "title": "Autosize",
+        "url": "docs/autosize.html"
+      },
+      "input-mask": {
+        "title": "Form input mask",
+        "url": "docs/input-mask.html"
+      },
+      "flags": {
+        "title": "Flags",
+        "url": "docs/flags.html"
+      },
+      "payments": {
+        "title": "Payments",
+        "url": "docs/payments.html"
+      },
+      "charts": {
+        "title": "Charts",
+        "url": "docs/charts.html"
+      },
+      "dropzone": {
+        "title": "Dropzone",
+        "url": "docs/dropzone.html"
+      },
+      "plyr": {
+        "title": "Inline player",
+        "url": "docs/inline-player.html"
+      },
+      "tinymce": {
+        "title": "TinyMCE",
+        "url": "docs/tinymce.html"
+      }
+    }
+  },
+  "changelog": {
+    "title": "Changelog",
+    "show-version": true,
+    "hide-in-index": true,
+    "url": "changelog.html"
+  }
+}

+ 0 - 208
src/pages/_data/docs.yml

@@ -1,208 +0,0 @@
-index:
-  title: Introduction
-  url: docs/
-  hide-in-index: true
-
-base:
-  title: Getting started
-#  icon: brand-tabler
-  children:
-    getting-started:
-      title: Getting Started
-      url: docs/getting-started.html
-    download:
-      title: Download
-      url: docs/download.html
-    browser-support:
-      title: Browser Support
-      url: docs/browser-support.html
-
-content:
-  title: Content
-  children:
-    colors:
-      title: Colors
-      url: docs/colors.html
-    typography:
-      title: Typography
-      url: docs/typography.html
-    icons:
-      title: Icons
-      url: docs/icons.html
-    customize:
-      title: Customize Tabler
-      url: docs/customize.html
-
-layout:
-  title: Layout
-  children:
-    headers:
-      title: Page headers
-      url: docs/page-headers.html
-
-forms:
-  title: Form components
-#  icon: forms
-  children:
-    form-elements:
-      title: Form elements
-      url: docs/form-elements.html
-    form-helpers:
-      title: Form helpers
-      url: docs/form-helpers.html
-    validation-states:
-      title: Validation states
-      url: docs/form-validation.html
-    image-check:
-      title: Image check
-      url: docs/form-image-check.html
-    color-check:
-      title: Color check
-      url: docs/form-color-check.html
-    selectboxes:
-      title: Form selectboxes
-      url: docs/form-selectboxes.html
-    fieldset:
-      title: Form fieldset
-      url: docs/form-fieldset.html
-
-
-components:
-  title: Components
-  columns: 2
-#  icon: puzzle
-  children:
-    alerts:
-      title: Alerts
-      url: docs/alerts.html
-    avatars:
-      title: Avatars
-      url: docs/avatars.html
-    badges:
-      title: Badges
-      url: docs/badges.html
-    breadcrumb:
-      title: Breadcrumb
-      url: docs/breadcrumb.html
-    buttons:
-      title: Buttons
-      url: docs/buttons.html
-    cards:
-      title: Cards
-      url: docs/cards.html
-    carousel:
-      title: Carousel
-      url: docs/carousel.html
-    datagrid:
-      title: Data grid
-      url: docs/datagrid.html
-    dropdowns:
-      title: Dropdowns
-      url: docs/dropdowns.html
-    divider:
-      title: Divider
-      url: docs/divider.html
-    empty:
-      title: Empty states
-      url: docs/empty.html
-    modals:
-      title: Modals
-      url: docs/modals.html
-    page-headers:
-      title: Page headers
-      url: docs/page-headers.html
-    progress:
-      title: Progress
-      url: docs/progress.html
-    range-slider:
-      title: Range slider
-      url: docs/range-slider.html
-    ribbons:
-      title: Ribbons
-      url: docs/ribbons.html
-    placeholder:
-      title: Placeholder
-      url: docs/placeholder.html
-    spinners:
-      title: Spinners
-      url: docs/spinners.html
-    statuses:
-      title: Statuses
-      url: docs/statuses.html
-    steps:
-      title: Steps
-      url: docs/steps.html
-    switch-icon:
-      title: Switch icon
-      url: docs/switch-icon.html
-    tables:
-      title: Tables
-      url: docs/tables.html
-    tabs:
-      title: Tabs
-      url: docs/tabs.html
-    timelines:
-      title: Timelines
-      url: docs/timelines.html
-    toasts:
-      title: Toasts
-      url: docs/toasts.html
-    tracking:
-      title: Tracking
-      url: docs/tracking.html
-    tooltips:
-      title: Tooltips
-      url: docs/tooltips.html
-    popover:
-      title: Popover
-      url: docs/popover.html
-
-utils:
-  title: Utilities
-#  icon: flame
-  children:
-    borders:
-      title: Borders
-      url: docs/borders.html
-    cursors:
-      title: Cursors
-      url: docs/cursors.html
-    interactions:
-      title: Interactions
-      url: docs/interactions.html
-
-plugins:
-  title: Plugins
-#  icon: apps
-  children:
-    autosize:
-      title: Autosize
-      url: docs/autosize.html
-    input-mask:
-      title: Form input mask
-      url: docs/input-mask.html
-    flags:
-      title: Flags
-      url: docs/flags.html
-    payments:
-      title: Payments
-      url: docs/payments.html
-    charts:
-      title: Charts
-      url: docs/charts.html
-    dropzone:
-      title: Dropzone
-      url: docs/dropzone.html
-    plyr:
-      title: Inline player
-      url: docs/inline-player.html
-    tinymce:
-      title: TinyMCE
-      url: docs/tinymce.html
-
-changelog:
-  title: Changelog
-  show-version: true
-  hide-in-index: true
-#  icon: git-branch
-  url: changelog.html

+ 32 - 0
src/pages/_data/errors.json

@@ -0,0 +1,32 @@
+{
+  "400": {
+    "title": 400,
+    "description": "We are sorry but your request contains bad syntax and cannot be fulfilled"
+  },
+  "401": {
+    "title": 401,
+    "description": "We are sorry but you are not authorized to access this page"
+  },
+  "403": {
+    "title": 403,
+    "description": "We are sorry but you do not have permission to access this page"
+  },
+  "404": {
+    "illustration": "not-found.svg",
+    "title": 404,
+    "description": "We are sorry but the page you are looking for was not found"
+  },
+  "500": {
+    "title": 500,
+    "description": "We are sorry but our server encountered an internal error"
+  },
+  "503": {
+    "title": 503,
+    "description": "We are sorry but our service is currently not available"
+  },
+  "maintenance": {
+    "illustration": "computer-fix.svg",
+    "header": "Temporarily down for maintenance",
+    "description": "Sorry for the inconvenience but we’re performing some maintenance at the moment. We’ll be back online shortly!"
+  }
+}

+ 0 - 24
src/pages/_data/errors.yml

@@ -1,24 +0,0 @@
-400:
-  title: 400
-  description: We are sorry but your request contains bad syntax and cannot be fulfilled
-401:
-  title: 401
-  description: We are sorry but you are not authorized to access this page
-403:
-  title: 403
-  description: We are sorry but you do not have permission to access this page
-404:
-  illustration: not-found.svg
-  title: 404
-  description: We are sorry but the page you are looking for was not found
-500:
-  title: 500
-  description: We are sorry but our server encountered an internal error
-503:
-  title: 503
-  description: We are sorry but our service is currently not available
-maintenance:
-  illustration: computer-fix.svg
-  header: Temporarily down for maintenance
-  description: Sorry for the inconvenience but we’re performing some maintenance at the moment. We’ll be back online shortly!
-

+ 47 - 0
src/pages/_data/faq.json

@@ -0,0 +1,47 @@
+[
+  {
+    "name": "Introduction",
+    "questions": [
+      {
+        "question": "Welcome to our service!"
+      },
+      {
+        "question": "Who are we?"
+      },
+      {
+        "question": "What are our values?"
+      }
+    ]
+  },
+  {
+    "name": "Functionality",
+    "questions": [
+      {
+        "question": "What are the key features?"
+      },
+      {
+        "question": "Does your App support mobile devices?"
+      },
+      {
+        "question": "Why should I choose your service?"
+      },
+      {
+        "question": "Is my data secure?"
+      }
+    ]
+  },
+  {
+    "name": "Payments",
+    "questions": [
+      {
+        "question": "Is there any free plan?"
+      },
+      {
+        "question": "What are the available payment options?"
+      },
+      {
+        "question": "Can I get a refund?"
+      }
+    ]
+  }
+]

+ 0 - 16
src/pages/_data/faq.yml

@@ -1,16 +0,0 @@
-- name: Introduction
-  questions:
-    - question: Welcome to our service!
-    - question: Who are we?
-    - question: What are our values?
-- name: Functionality
-  questions:
-    - question: What are the key features?
-    - question: Does your App support mobile devices?
-    - question: Why should I choose your service?
-    - question: Is my data secure?
-- name: Payments
-  questions:
-    - question: Is there any free plan?
-    - question: What are the available payment options?
-    - question: Can I get a refund?

+ 104 - 0
src/pages/_data/files.json

@@ -0,0 +1,104 @@
+[
+  {
+    "name": "dist",
+    "type": "directory",
+    "comment": "Fix issue with missing 'tabler.svg' logo on 'Login', 'Register' and '…",
+    "date": "4 months ago"
+  },
+  {
+    "name": "src",
+    "type": "directory",
+    "comment": "Merge pull request #176 from codecalm/dev",
+    "date": "4 days ago"
+  },
+  {
+    "name": ".editorconfig",
+    "type": "file",
+    "comment": ".editorconfig file",
+    "date": "6 months ago"
+  },
+  {
+    "name": ".gitignore",
+    "type": "file",
+    "comment": "page-main -> flex-fill",
+    "date": "a month ago"
+  },
+  {
+    "name": "CODE_OF_CONDUCT.md",
+    "type": "file",
+    "comment": "Create CODE_OF_CONDUCT.md",
+    "date": "5 months ago"
+  },
+  {
+    "name": "CONTRIBUTING.md",
+    "type": "file",
+    "comment": "CONTRIBUTING.md",
+    "date": "6 months ago"
+  },
+  {
+    "name": "Gemfile",
+    "type": "file",
+    "comment": "upgrade bootstrap",
+    "date": "a month ago"
+  },
+  {
+    "name": "Gemfile.lock",
+    "type": "file",
+    "comment": "upgrade bootstrap",
+    "date": "a month ago"
+  },
+  {
+    "name": "LICENSE",
+    "type": "file",
+    "comment": "readme file",
+    "date": "7 months ago"
+  },
+  {
+    "name": "README.md",
+    "type": "file",
+    "comment": "Added backers and sponsors on the README",
+    "date": "2 months ago"
+  },
+  {
+    "name": "_config.yml",
+    "type": "file",
+    "comment": "added datatables",
+    "date": "4 months ago"
+  },
+  {
+    "name": "composer.json",
+    "type": "file",
+    "comment": "Support composer",
+    "date": "5 months ago"
+  },
+  {
+    "name": "dist-new-version.sh",
+    "type": "file",
+    "comment": "version 0.0.32",
+    "date": "5 months ago"
+  },
+  {
+    "name": "gh-pages.sh",
+    "type": "file",
+    "comment": "gh pages fix",
+    "date": "5 months ago"
+  },
+  {
+    "name": "gulpfile.js",
+    "type": "file",
+    "comment": "rtl mode",
+    "date": "5 months ago"
+  },
+  {
+    "name": "package.json",
+    "type": "file",
+    "comment": "page-main -> flex-fill",
+    "date": "a month ago"
+  },
+  {
+    "name": "regenerate-images.sh",
+    "type": "file",
+    "comment": "init v0.0.1",
+    "date": "7 months ago"
+  }
+]

+ 0 - 68
src/pages/_data/files.yml

@@ -1,68 +0,0 @@
-- name: dist
-  type: directory
-  comment: Fix issue with missing 'tabler.svg' logo on 'Login', 'Register' and '…
-  date: 4 months ago
-- name: src
-  type: directory
-  comment: "Merge pull request #176 from codecalm/dev"
-  date: 4 days ago
-- name: .editorconfig
-  type: file
-  comment: .editorconfig file
-  date: 6 months ago
-- name: .gitignore
-  type: file
-  comment: page-main -> flex-fill
-  date: a month ago
-- name: CODE_OF_CONDUCT.md
-  type: file
-  comment: Create CODE_OF_CONDUCT.md
-  date: 5 months ago
-- name: CONTRIBUTING.md
-  type: file
-  comment: CONTRIBUTING.md
-  date: 6 months ago
-- name: Gemfile
-  type: file
-  comment: upgrade bootstrap
-  date: a month ago
-- name: Gemfile.lock
-  type: file
-  comment: upgrade bootstrap
-  date: a month ago
-- name: LICENSE
-  type: file
-  comment: readme file
-  date: 7 months ago
-- name: README.md
-  type: file
-  comment: Added backers and sponsors on the README
-  date: 2 months ago
-- name: _config.yml
-  type: file
-  comment: added datatables
-  date: 4 months ago
-- name: composer.json
-  type: file
-  comment: Support composer
-  date: 5 months ago
-- name: dist-new-version.sh
-  type: file
-  comment: version 0.0.32
-  date: 5 months ago
-- name: gh-pages.sh
-  type: file
-  comment: gh pages fix
-  date: 5 months ago
-- name: gulpfile.js
-  type: file
-  comment: rtl mode
-  date: 5 months ago
-- name: package.json
-  type: file
-  comment: page-main -> flex-fill
-  date: a month ago
-- name: regenerate-images.sh
-  type: file
-  comment: init v0.0.1
-  date: 7 months ago

+ 14 - 0
src/pages/_data/inline-players.json

@@ -0,0 +1,14 @@
+[
+  {
+    "title": "Youtube Player",
+    "type": "youtube",
+    "id": "youtube",
+    "embed-id": "bTqVqk7FSmY"
+  },
+  {
+    "title": "Vimeo Player",
+    "type": "vimeo",
+    "id": "charlotte",
+    "embed-id": 707012696
+  }
+]

+ 0 - 9
src/pages/_data/inline-players.yml

@@ -1,9 +0,0 @@
-- title: Youtube Player
-  type: youtube
-  id: youtube
-  embed-id: bTqVqk7FSmY
-
-- title: Vimeo Player
-  type: vimeo
-  id: charlotte
-  embed-id: 707012696

+ 178 - 0
src/pages/_data/invoices.json

@@ -0,0 +1,178 @@
+[
+  {
+    "invoice": "00450",
+    "name": "Design Works",
+    "client": "Carlson Limited",
+    "vat-no": 87956621,
+    "date": "15 Dec 2017",
+    "status": "success",
+    "status-name": "Paid",
+    "price": "$887",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "UX Wireframes",
+    "client": "Adobe",
+    "vat-no": 87956421,
+    "date": "12 Apr 2017",
+    "status": "warning",
+    "status-name": "Pending",
+    "price": "$1200",
+    "country": "gb"
+  },
+  {
+    "invoice": "00452",
+    "name": "New Dashboard",
+    "client": "Bluewolf",
+    "vat-no": 87952621,
+    "date": "23 Oct 2017",
+    "status": "warning",
+    "status-name": "Pending",
+    "price": "$534",
+    "country": "de"
+  },
+  {
+    "invoice": "00450",
+    "name": "Landing Page",
+    "client": "Salesforce",
+    "vat-no": 87953421,
+    "date": "2 Sep 2017",
+    "status": "secondary",
+    "status-name": "Due in 2 Weeks",
+    "price": "$1500",
+    "country": "br"
+  },
+  {
+    "invoice": "00450",
+    "name": "Marketing Templates",
+    "client": "Printic",
+    "vat-no": 87956621,
+    "date": "29 Jan 2018",
+    "status": "danger",
+    "status-name": "Paid Today",
+    "price": "$648",
+    "country": "pl"
+  },
+  {
+    "invoice": "00450",
+    "name": "Sales Presentation",
+    "client": "Tabdaq",
+    "vat-no": 87956621,
+    "date": "4 Feb 2018",
+    "status": "secondary",
+    "status-name": "Due in 3 Weeks",
+    "price": "$300",
+    "country": "br"
+  },
+  {
+    "invoice": "00450",
+    "name": "Logo & Print",
+    "client": "Apple",
+    "vat-no": 87956621,
+    "date": "22 Mar 2018",
+    "status": "success",
+    "status-name": "Paid Today",
+    "price": "$2500",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "Icons",
+    "client": "Tookapic",
+    "vat-no": 87956621,
+    "date": "13 May 2018",
+    "status": "success",
+    "status-name": "Paid Today",
+    "price": "$940",
+    "country": "pl"
+  },
+  {
+    "invoice": "00450",
+    "name": "Design Works",
+    "client": "Carlson Limited",
+    "vat-no": 87956621,
+    "date": "15 Dec 2017",
+    "status": "success",
+    "status-name": "Paid",
+    "price": "$887",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "UX Wireframes",
+    "client": "Adobe",
+    "vat-no": 87956421,
+    "date": "12 Apr 2017",
+    "status": "warning",
+    "status-name": "Pending",
+    "price": "$1200",
+    "country": "us"
+  },
+  {
+    "invoice": "00452",
+    "name": "New Dashboard",
+    "client": "Bluewolf",
+    "vat-no": 87952621,
+    "date": "23 Oct 2017",
+    "status": "warning",
+    "status-name": "Pending",
+    "price": "$534",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "Landing Page",
+    "client": "Salesforce",
+    "vat-no": 87953421,
+    "date": "2 Sep 2017",
+    "status": "secondary",
+    "status-name": "Due in 2 Weeks",
+    "price": "$1500",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "Marketing Templates",
+    "client": "Printic",
+    "vat-no": 87956621,
+    "date": "29 Jan 2018",
+    "status": "danger",
+    "status-name": "Paid Today",
+    "price": "$648",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "Sales Presentation",
+    "client": "Tabdaq",
+    "vat-no": 87956621,
+    "date": "4 Feb 2018",
+    "status": "secondary",
+    "status-name": "Due in 3 Weeks",
+    "price": "$300",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "Logo & Print",
+    "client": "Apple",
+    "vat-no": 87956621,
+    "date": "22 Mar 2018",
+    "status": "success",
+    "status-name": "Paid Today",
+    "price": "$2500",
+    "country": "us"
+  },
+  {
+    "invoice": "00450",
+    "name": "Icons",
+    "client": "Tookapic",
+    "vat-no": 87956621,
+    "date": "13 May 2018",
+    "status": "success",
+    "status-name": "Paid Today",
+    "price": "$940",
+    "country": "us"
+  }
+]

+ 0 - 175
src/pages/_data/invoices.yml

@@ -1,175 +0,0 @@
--
-  invoice: "00450"
-  name: Design Works
-  client: Carlson Limited
-  vat-no: 87956621
-  date: 15 Dec 2017
-  status: success
-  status-name: Paid
-  price: $887
-  country: us
-
--
-  invoice: "00450"
-  name: UX Wireframes
-  client: Adobe
-  vat-no: 87956421
-  date: 12 Apr 2017
-  status: warning
-  status-name: Pending
-  price: $1200
-  country: gb
-
--
-  invoice: "00452"
-  name: New Dashboard
-  client: Bluewolf
-  vat-no: 87952621
-  date: 23 Oct 2017
-  status: warning
-  status-name: Pending
-  price: $534
-  country: de
-
--
-  invoice: "00450"
-  name: Landing Page
-  client: Salesforce
-  vat-no: 87953421
-  date: 2 Sep 2017
-  status: secondary
-  status-name: Due in 2 Weeks
-  price: $1500
-  country: br
-
--
-  invoice: "00450"
-  name: Marketing Templates
-  client: Printic
-  vat-no: 87956621
-  date: 29 Jan 2018
-  status: danger
-  status-name: Paid Today
-  price: $648
-  country: pl
-
--
-  invoice: "00450"
-  name: Sales Presentation
-  client: Tabdaq
-  vat-no: 87956621
-  date: 4 Feb 2018
-  status: secondary
-  status-name: Due in 3 Weeks
-  price: $300
-  country: br
-
--
-  invoice: "00450"
-  name: Logo & Print
-  client: Apple
-  vat-no: 87956621
-  date: 22 Mar 2018
-  status: success
-  status-name: Paid Today
-  price: $2500
-  country: us
-
--
-  invoice: "00450"
-  name: Icons
-  client: Tookapic
-  vat-no: 87956621
-  date: 13 May 2018
-  status: success
-  status-name: Paid Today
-  price: $940
-  country: pl
-
--
-  invoice: "00450"
-  name: Design Works
-  client: Carlson Limited
-  vat-no: 87956621
-  date: 15 Dec 2017
-  status: success
-  status-name: Paid
-  price: $887
-  country: us
-
--
-  invoice: "00450"
-  name: UX Wireframes
-  client: Adobe
-  vat-no: 87956421
-  date: 12 Apr 2017
-  status: warning
-  status-name: Pending
-  price: $1200
-  country: us
-
--
-  invoice: "00452"
-  name: New Dashboard
-  client: Bluewolf
-  vat-no: 87952621
-  date: 23 Oct 2017
-  status: warning
-  status-name: Pending
-  price: $534
-  country: us
-
--
-  invoice: "00450"
-  name: Landing Page
-  client: Salesforce
-  vat-no: 87953421
-  date: 2 Sep 2017
-  status: secondary
-  status-name: Due in 2 Weeks
-  price: $1500
-  country: us
-
--
-  invoice: "00450"
-  name: Marketing Templates
-  client: Printic
-  vat-no: 87956621
-  date: 29 Jan 2018
-  status: danger
-  status-name: Paid Today
-  price: $648
-  country: us
-
--
-  invoice: "00450"
-  name: Sales Presentation
-  client: Tabdaq
-  vat-no: 87956621
-  date: 4 Feb 2018
-  status: secondary
-  status-name: Due in 3 Weeks
-  price: $300
-  country: us
-
--
-  invoice: "00450"
-  name: Logo & Print
-  client: Apple
-  vat-no: 87956621
-  date: 22 Mar 2018
-  status: success
-  status-name: Paid Today
-  price: $2500
-  country: us
-
--
-  invoice: "00450"
-  name: Icons
-  client: Tookapic
-  vat-no: 87956621
-  date: 13 May 2018
-  status: success
-  status-name: Paid Today
-  price: $940
-  country: us

+ 127 - 0
src/pages/_data/jobs.json

@@ -0,0 +1,127 @@
+[
+  {
+    "company": "CMS Max",
+    "location": "Remote / USA",
+    "title": "Lead Tailwind Developer",
+    "type": "Full-time",
+    "posted": "4w",
+    "image": "job-1.jpg",
+    "tags": [
+      "PHP",
+      "Laravel",
+      "CSS",
+      "Vue"
+    ]
+  },
+  {
+    "company": "Center Pixel, Inc",
+    "location": "Remote / Palo Alto, CA",
+    "title": "Frontend Web Engineer",
+    "type": "Full-time or Contract",
+    "salary": "$140,000 - $180,000",
+    "posted": "4d",
+    "image": "job-2.png",
+    "tags": [
+      "HTML",
+      "CSS",
+      "React",
+      "+3"
+    ]
+  },
+  {
+    "company": "Chicago Botanic Garden",
+    "location": "Hybrid / Chicago Botanic Garden",
+    "title": "Principal Web Application Developer",
+    "type": "Full-time",
+    "posted": "5d",
+    "image": "job-3.png",
+    "tags": [
+      "HTML",
+      "PHP",
+      "Laravel"
+    ]
+  },
+  {
+    "company": "Simple Focus",
+    "location": "Remote / USA",
+    "title": "Front-End Developer",
+    "type": "Full-time",
+    "posted": "1w",
+    "image": "job-4.png",
+    "tags": [
+      "HTML",
+      "PHP",
+      "CSS",
+      "+2"
+    ]
+  },
+  {
+    "company": "Infinia ML",
+    "location": "Durham, NC",
+    "title": "Senior Front-End Engineer",
+    "type": "Full-time",
+    "posted": "1w",
+    "image": "job-5.png",
+    "tags": [
+      "HTML",
+      "PHP",
+      "CSS",
+      "+4"
+    ]
+  },
+  {
+    "company": "Crowd Favorite",
+    "location": "Remote / USA",
+    "title": "Senior Web Developer, Open Source",
+    "type": "Full-time",
+    "posted": "1w",
+    "image": "job-6.png",
+    "tags": [
+      "HTML",
+      "JavaScript",
+      "CSS",
+      "+8"
+    ]
+  },
+  {
+    "company": "Spear AI",
+    "location": "Washington D.C.",
+    "title": "Frontend Engineer",
+    "type": "Full-time",
+    "salary": "$95,000 – $145,000 USD",
+    "posted": "2w",
+    "image": "job-7.png",
+    "tags": [
+      "HTML",
+      "JavaScript",
+      "CSS",
+      "+3"
+    ]
+  },
+  {
+    "company": "Third Time Games",
+    "location": "Remote / North America",
+    "title": "Web Developer",
+    "type": "Full-time",
+    "posted": "3w",
+    "image": "job-8.png",
+    "tags": [
+      "PHP",
+      "Laravel",
+      "React",
+      "+8"
+    ]
+  },
+  {
+    "company": "Mindsize",
+    "location": "Remote / USA",
+    "title": "Laravel Developer",
+    "type": "Full-time",
+    "posted": "3w",
+    "image": "job-9.jpg",
+    "tags": [
+      "PHP",
+      "Laravel"
+    ]
+  }
+]

+ 0 - 106
src/pages/_data/jobs.yml

@@ -1,106 +0,0 @@
-- company: CMS Max
-  location: Remote / USA
-  title: Lead Tailwind Developer
-  type: Full-time
-  posted: 4w
-  image: job-1.jpg
-  tags:
-    - PHP
-    - Laravel
-    - CSS
-    - Vue
-
-- company: Center Pixel, Inc
-  location: Remote / Palo Alto, CA
-  title: Frontend Web Engineer
-  type: Full-time or Contract
-  salary: $140,000 - $180,000
-  posted: 4d
-  image: job-2.png
-  tags:
-    - HTML
-    - CSS
-    - React
-    - "+3"
-
-- company: Chicago Botanic Garden
-  location: Hybrid / Chicago Botanic Garden
-  title: Principal Web Application Developer
-  type: Full-time
-  posted: 5d
-  image: job-3.png
-  tags:
-    - HTML
-    - PHP
-    - Laravel
-
-- company: Simple Focus
-  location: Remote / USA
-  title: Front-End Developer
-  type: Full-time
-  posted: 1w
-  image: job-4.png
-  tags:
-    - HTML
-    - PHP
-    - CSS
-    - "+2"
-
-- company: Infinia ML
-  location: Durham, NC
-  title: Senior Front-End Engineer
-  type: Full-time
-  posted: 1w
-  image: job-5.png
-  tags:
-    - HTML
-    - PHP
-    - CSS
-    - "+4"
-
-- company: Crowd Favorite
-  location: Remote / USA
-  title: Senior Web Developer, Open Source
-  type: Full-time
-  posted: 1w
-  image: job-6.png
-  tags:
-    - HTML
-    - JavaScript
-    - CSS
-    - "+8"
-
-- company: Spear AI
-  location: Washington D.C.
-  title: Frontend Engineer
-  type: Full-time
-  salary: $95,000 – $145,000 USD
-  posted: 2w
-  image: job-7.png
-  tags:
-    - HTML
-    - JavaScript
-    - CSS
-    - "+3"
-
-- company: Third Time Games
-  location: Remote / North America
-  title: Web Developer
-  type: Full-time
-  posted: 3w
-  image: job-8.png
-  tags:
-    - PHP
-    - Laravel
-    - React
-    - "+8"
-
-- company: Mindsize
-  location: Remote / USA
-  title: Laravel Developer
-  type: Full-time
-  posted: 3w
-  image: job-9.jpg
-  tags:
-    - PHP
-    - Laravel

+ 94 - 0
src/pages/_data/languages.json

@@ -0,0 +1,94 @@
+[
+  {
+    "name": "العربية",
+    "flag": "ar"
+  },
+  {
+    "name": "Čeština",
+    "flag": "cz"
+  },
+  {
+    "name": "Deutsch",
+    "flag": "de"
+  },
+  {
+    "name": "Ελληνικά",
+    "flag": "gr"
+  },
+  {
+    "name": "English",
+    "flag": "gb"
+  },
+  {
+    "name": "Español",
+    "flag": "es"
+  },
+  {
+    "name": "Français",
+    "flag": "fr"
+  },
+  {
+    "name": "हिंदी",
+    "flag": "in"
+  },
+  {
+    "name": "Magyar",
+    "flag": "hu"
+  },
+  {
+    "name": "Bahasa Indonesia",
+    "flag": "in"
+  },
+  {
+    "name": "Italiano",
+    "flag": "it"
+  },
+  {
+    "name": "日本語",
+    "flag": "jp"
+  },
+  {
+    "name": "한국어",
+    "flag": "kr"
+  },
+  {
+    "name": "Nederlands (Nederland)",
+    "flag": "ne"
+  },
+  {
+    "name": "Polski",
+    "flag": "pl"
+  },
+  {
+    "name": "Português",
+    "flag": "pt"
+  },
+  {
+    "name": "Română",
+    "flag": "ro"
+  },
+  {
+    "name": "Русский",
+    "flag": "ru"
+  },
+  {
+    "name": "ภาษาไทย",
+    "flag": "th"
+  },
+  {
+    "name": "Türkçe",
+    "flag": "tr"
+  },
+  {
+    "name": "Українською",
+    "flag": "ua"
+  },
+  {
+    "name": "Tiếng Việt",
+    "flag": "vn"
+  },
+  {
+    "name": "中文",
+    "flag": "cn"
+  }
+]

+ 0 - 46
src/pages/_data/languages.yml

@@ -1,46 +0,0 @@
-- name: العربية
-  flag: ar
-- name: Čeština
-  flag: cz
-- name: Deutsch
-  flag: de
-- name: Ελληνικά
-  flag: gr
-- name: English
-  flag: gb
-- name: Español
-  flag: es
-- name: Français
-  flag: fr
-- name: हिंदी
-  flag: in
-- name: Magyar
-  flag: hu
-- name: Bahasa Indonesia
-  flag: in
-- name: Italiano
-  flag: it
-- name: 日本語
-  flag: jp
-- name: 한국어
-  flag: kr
-- name: Nederlands (Nederland)
-  flag: ne
-- name: Polski
-  flag: pl
-- name: Português
-  flag: pt
-- name: Română
-  flag: ro
-- name: Русский
-  flag: ru
-- name: ภาษาไทย
-  flag: th
-- name: Türkçe
-  flag: tr
-- name: Українською
-  flag: ua
-- name: Tiếng Việt
-  flag: vn
-- name: 中文
-  flag: cn

+ 78 - 0
src/pages/_data/layouts.json

@@ -0,0 +1,78 @@
+[
+  {
+    "title": "Default tabler layout",
+    "page": "layouts.html",
+    "config": {
+      "topmenu": true
+    }
+  },
+  {
+    "title": "Dark navigation",
+    "page": "layout-dark-navigation.html",
+    "config": {
+      "topmenu": true,
+      "topmenu-dark": true
+    }
+  },
+  {
+    "title": "Dark topnav",
+    "page": "layout-dark-topnav.html",
+    "config": {
+      "topmenu": true,
+      "topnav-dark": true
+    }
+  },
+  {
+    "title": "Sidebar",
+    "page": "layout-sidebar.html",
+    "new": true,
+    "config": {
+      "sidebar": true
+    }
+  },
+  {
+    "title": "Dark sidebar",
+    "page": "layout-sidebar-dark.html",
+    "new": true,
+    "config": {
+      "sidebar": true,
+      "sidebar-dark": true
+    }
+  },
+  {
+    "title": "Narrow sidebar",
+    "page": "layout-sidebar-narrow.html",
+    "new": true,
+    "config": {
+      "sidebar": true,
+      "sidebar-narrow": true,
+      "sidebar-dark": true
+    }
+  },
+  {
+    "title": "Right sidebar",
+    "page": "layout-sidebar-right.html",
+    "new": true,
+    "config": {
+      "sidebar-right": true
+    }
+  },
+  {
+    "title": "Sidebar only",
+    "page": "layout-sidebar-only.html",
+    "new": true,
+    "config": {
+      "sidebar": true,
+      "hide-topnav": true
+    }
+  },
+  {
+    "title": "Dark mode",
+    "page": "layout-dark.html",
+    "soon": true,
+    "config": {
+      "sidebar": true,
+      "sidebar-dark": true
+    }
+  }
+]

+ 0 - 57
src/pages/_data/layouts.yml

@@ -1,57 +0,0 @@
-- title: Default tabler layout
-  page: layouts.html
-  config:
-    topmenu: true
-
-- title: Dark navigation
-  page: layout-dark-navigation.html
-  config:
-    topmenu: true
-    topmenu-dark: true
-
-- title: Dark topnav
-  page: layout-dark-topnav.html
-  config:
-    topmenu: true
-    topnav-dark: true
-
-- title: Sidebar
-  page: layout-sidebar.html
-  new: true
-  config:
-    sidebar: true
-
-- title: Dark sidebar
-  page: layout-sidebar-dark.html
-  new: true
-  config:
-    sidebar: true
-    sidebar-dark: true
-
-- title: Narrow sidebar
-  page: layout-sidebar-narrow.html
-  new: true
-  config:
-    sidebar: true
-    sidebar-narrow: true
-    sidebar-dark: true
-
-- title: Right sidebar
-  page: layout-sidebar-right.html
-  new: true
-  config:
-    sidebar-right: true
-
-- title: Sidebar only
-  page: layout-sidebar-only.html
-  new: true
-  config:
-    sidebar: true
-    hide-topnav: true
-
-- title: Dark mode
-  page: layout-dark.html
-  soon: true
-  config:
-    sidebar: true
-    sidebar-dark: true

File diff suppressed because it is too large
+ 5 - 0
src/pages/_data/maps-vector.json


+ 0 - 76
src/pages/_data/maps-vector.yml

@@ -1,76 +0,0 @@
-world:
-  title: World map
-  map: world
-  color: primary
-  values: '{ "AF": 16, "AL": 11, "DZ": 158, "AO": 85, "AG": 1, "AR": 351, "AM": 8, "AU": 1219, "AT": 366, "AZ": 52, "BS": 7, "BH": 21, "BD": 105, "BB": 3, "BY": 52, "BE": 461, "BZ": 1, "BJ": 6, "BT": 1, "BO": 19, "BA": 16, "BW": 12, "BR": 2023, "BN": 11, "BG": 44, "BF": 8, "BI": 1, "KH": 11, "CM": 21, "CA": 1563, "CV": 1, "CF": 2, "TD": 7, "CL": 199, "CN": 5745, "CO": 283, "KM": 0, "CD": 12, "CG": 11, "CR": 35, "CI": 22, "HR": 59, "CY": 22, "CZ": 195, "DK": 304, "DJ": 1, "DM": 0, "DO": 50, "EC": 61, "EG": 216, "SV": 21, "GQ": 14, "ER": 2, "EE": 19, "ET": 30, "FJ": 3, "FI": 231, "FR": 2555, "GA": 12, "GM": 1, "GE": 11, "DE": 3305, "GH": 18, "GR": 305, "GD": 0, "GT": 40, "GN": 4, "GW": 0, "GY": 2, "HT": 6, "HN": 15, "HK": 226, "HU": 132, "IS": 12, "IN": 1430, "ID": 695, "IR": 337, "IQ": 84, "IE": 204, "IL": 201, "IT": 2036, "JM": 13, "JP": 5390, "JO": 27, "KZ": 129, "KE": 32, "KI": 0, "KR": 986, "KW": 117, "KG": 4, "LA": 6, "LV": 23, "LB": 39, "LS": 1, "LR": 0, "LY": 77, "LT": 35, "LU": 52, "MK": 9, "MG": 8, "MW": 5, "MY": 218, "MV": 1, "ML": 9, "MT": 7, "MR": 3, "MU": 9, "MX": 1004, "MD": 5, "MN": 5, "ME": 3, "MA": 91, "MZ": 10, "MM": 35, "NA": 11, "NP": 15, "NL": 770, "NZ": 138, "NI": 6, "NE": 5, "NG": 206, "NO": 413, "OM": 53, "PK": 174, "PA": 27, "PG": 8, "PY": 17, "PE": 153, "PH": 189, "PL": 438, "PT": 223, "QA": 126, "RO": 158, "RU": 1476, "RW": 5, "WS": 0, "ST": 0, "SA": 434, "SN": 12, "RS": 38, "SC": 0, "SL": 1, "SG": 217, "SK": 86, "SI": 46, "SB": 0, "ZA": 354, "ES": 1374, "LK": 48, "KN": 0, "LC": 1, "VC": 0, "SD": 65, "SR": 3, "SZ": 3, "SE": 444, "CH": 522, "SY": 59, "TW": 426, "TJ": 5, "TZ": 22, "TH": 312, "TL": 0, "TG": 3, "TO": 0, "TT": 21, "TN": 43, "TR": 729, "TM": 0, "UG": 17, "UA": 136, "AE": 239, "GB": 2258, "US": 4624, "UY": 40, "UZ": 37, "VU": 0, "VE": 285, "VN": 101, "YE": 30, "ZM": 15, "ZW": 5 }'
-
-world-merc:
-  title: World map
-  map: world_merc
-  color: primary
-  values: '{ "AF": 16, "AL": 11, "DZ": 158, "AO": 85, "AG": 1, "AR": 351, "AM": 8, "AU": 1219, "AT": 366, "AZ": 52, "BS": 7, "BH": 21, "BD": 105, "BB": 3, "BY": 52, "BE": 461, "BZ": 1, "BJ": 6, "BT": 1, "BO": 19, "BA": 16, "BW": 12, "BR": 2023, "BN": 11, "BG": 44, "BF": 8, "BI": 1, "KH": 11, "CM": 21, "CA": 1563, "CV": 1, "CF": 2, "TD": 7, "CL": 199, "CN": 5745, "CO": 283, "KM": 0, "CD": 12, "CG": 11, "CR": 35, "CI": 22, "HR": 59, "CY": 22, "CZ": 195, "DK": 304, "DJ": 1, "DM": 0, "DO": 50, "EC": 61, "EG": 216, "SV": 21, "GQ": 14, "ER": 2, "EE": 19, "ET": 30, "FJ": 3, "FI": 231, "FR": 2555, "GA": 12, "GM": 1, "GE": 11, "DE": 3305, "GH": 18, "GR": 305, "GD": 0, "GT": 40, "GN": 4, "GW": 0, "GY": 2, "HT": 6, "HN": 15, "HK": 226, "HU": 132, "IS": 12, "IN": 1430, "ID": 695, "IR": 337, "IQ": 84, "IE": 204, "IL": 201, "IT": 2036, "JM": 13, "JP": 5390, "JO": 27, "KZ": 129, "KE": 32, "KI": 0, "KR": 986, "KW": 117, "KG": 4, "LA": 6, "LV": 23, "LB": 39, "LS": 1, "LR": 0, "LY": 77, "LT": 35, "LU": 52, "MK": 9, "MG": 8, "MW": 5, "MY": 218, "MV": 1, "ML": 9, "MT": 7, "MR": 3, "MU": 9, "MX": 1004, "MD": 5, "MN": 5, "ME": 3, "MA": 91, "MZ": 10, "MM": 35, "NA": 11, "NP": 15, "NL": 770, "NZ": 138, "NI": 6, "NE": 5, "NG": 206, "NO": 413, "OM": 53, "PK": 174, "PA": 27, "PG": 8, "PY": 17, "PE": 153, "PH": 189, "PL": 438, "PT": 223, "QA": 126, "RO": 158, "RU": 1476, "RW": 5, "WS": 0, "ST": 0, "SA": 434, "SN": 12, "RS": 38, "SC": 0, "SL": 1, "SG": 217, "SK": 86, "SI": 46, "SB": 0, "ZA": 354, "ES": 1374, "LK": 48, "KN": 0, "LC": 1, "VC": 0, "SD": 65, "SR": 3, "SZ": 3, "SE": 444, "CH": 522, "SY": 59, "TW": 426, "TJ": 5, "TZ": 22, "TH": 312, "TL": 0, "TG": 3, "TO": 0, "TT": 21, "TN": 43, "TR": 729, "TM": 0, "UG": 17, "UA": 136, "AE": 239, "GB": 2258, "US": 4624, "UY": 40, "UZ": 37, "VU": 0, "VE": 285, "VN": 101, "YE": 30, "ZM": 15, "ZW": 5 }'
-
-
-world-markers:
-  title: Map with markers
-  map: world_merc
-  color: red
-  markers:
-    - name: Russia
-      coords: 61.524, 105.3188
-    - name: Canada
-      coords: 56.1304, -106.3468
-    - name: Greenland
-      coords: 71.7069, -42.6043
-    - name: Egypt
-      coords: 26.8206, 30.8025
-    - name: Brazil
-      coords: -14.235, -51.9253
-    - name: China
-      coords: 35.8617, 104.1954
-    - name: United States
-      coords: 37.0902, -95.7129
-    - name: Norway
-      coords: 60.472024, 8.468946
-    - name: Ukraine
-      coords: 48.379433, 31.16558
-
-
-world-lines:
-  title: Map with markers
-  map: world_merc
-  color: primary
-  lines:
-    - from: Russia
-      to: Greenland
-    - from: Russia
-      to: United States
-    - from: Russia
-      to: Canada
-    - from: Brazil
-      to: Norway
-    - from: Brazil
-      to: Ukraine
-    - from: Brazil
-      to: Egypt
-    - from: Brazil
-      to: China
-  markers:
-    - name: Russia
-      coords: 61.524, 105.3188
-    - name: Canada
-      coords: 56.1304, -106.3468
-    - name: Greenland
-      coords: 71.7069, -42.6043
-    - name: Egypt
-      coords: 26.8206, 30.8025
-    - name: Brazil
-      coords: -14.235, -51.9253
-    - name: China
-      coords: 35.8617, 104.1954
-    - name: United States
-      coords: 37.0902, -95.7129
-    - name: Norway
-      coords: 60.472024, 8.468946
-    - name: Ukraine
-      coords: 48.379433, 31.16558

+ 78 - 0
src/pages/_data/maps.json

@@ -0,0 +1,78 @@
+{
+  "simple": {
+    "title": "Simple map"
+  },
+  "light": {
+    "title": "Light map style",
+    "center": [
+      51.5285582,
+      -0.2416782
+    ],
+    "zoom": 11,
+    "style": "light-v10"
+  },
+  "markers": {
+    "title": "Light map style",
+    "center": [
+      0,
+      0
+    ],
+    "zoom": 1,
+    "style": "light-v10",
+    "card": true,
+    "markers": [
+      {
+        "name": "Buenos Aires",
+        "center": [
+          -34.58333333,
+          -58.666667
+        ]
+      },
+      {
+        "name": "Vienna",
+        "center": [
+          48.2,
+          16.366667
+        ]
+      },
+      {
+        "name": "Beijing",
+        "center": [
+          39.91666667,
+          116.383333
+        ]
+      },
+      {
+        "name": "Canberra",
+        "center": [
+          -35.26666667,
+          149.133333
+        ]
+      },
+      {
+        "name": "Muscat",
+        "center": [
+          23.61666667,
+          58.583333
+        ]
+      },
+      {
+        "name": "Washington",
+        "center": [
+          38.883333,
+          -77
+        ]
+      }
+    ]
+  },
+  "card": {
+    "title": "Full-card map",
+    "center": [
+      0,
+      0
+    ],
+    "zoom": 1,
+    "style": "satellite-v9",
+    "card": true
+  }
+}

+ 0 - 36
src/pages/_data/maps.yml

@@ -1,36 +0,0 @@
-simple:
-  title: Simple map
-
-light:
-  title: Light map style
-  center: [51.5285582, -0.2416782]
-  zoom: 11
-  style: light-v10
-
-markers:
-  title: Light map style
-  center: [0, 0]
-  zoom: 1
-  style: light-v10
-  card: true
-  markers:
-    - name: Buenos Aires
-      center: [-34.58333333, -58.666667]
-    - name: Vienna
-      center: [48.2, 16.366667]
-    - name: Beijing
-      center: [39.91666667, 116.383333]
-    - name: Canberra
-      center: [-35.26666667, 149.133333]
-    - name: Muscat
-      center: [23.61666667, 58.583333]
-    - name: Washington
-      center: [38.883333, -77]
-
-card:
-  title: Full-card map
-  center: [0, 0]
-  zoom: 1
-  style: satellite-v9
-  card: true
-

+ 39 - 0
src/pages/_data/menu-sample.json

@@ -0,0 +1,39 @@
+{
+  "first": {
+    "url": "#",
+    "icon": "star",
+    "title": "First",
+    "active": true
+  },
+  "second": {
+    "url": "#",
+    "icon": "star",
+    "badge": 2,
+    "title": "Second"
+  },
+  "third": {
+    "url": "#",
+    "icon": "star",
+    "title": "Third",
+    "children": {
+      "first": {
+        "url": "#",
+        "title": "First"
+      },
+      "second": {
+        "url": "#",
+        "title": "Second"
+      },
+      "third": {
+        "url": "#",
+        "title": "Third"
+      }
+    }
+  },
+  "disabled": {
+    "url": "#",
+    "icon": "star",
+    "disabled": true,
+    "title": "Disabled"
+  }
+}

+ 0 - 32
src/pages/_data/menu-sample.yml

@@ -1,32 +0,0 @@
-first:
-  url: '#'
-  icon: star
-  title: First
-  active: true
-
-second:
-  url: '#'
-  icon: star
-  badge: 2
-  title: Second
-
-third:
-  url: '#'
-  icon: star
-  title: Third
-  children:
-    first:
-      url: '#'
-      title: First
-    second:
-      url: '#'
-      title: Second
-    third:
-      url: '#'
-      title: Third
-
-disabled:
-  url: '#'
-  icon: star
-  disabled: true
-  title: Disabled

+ 473 - 0
src/pages/_data/menu.json

@@ -0,0 +1,473 @@
+{
+  "home": {
+    "url": "",
+    "title": "Home",
+    "icon": "home"
+  },
+  "base": {
+    "title": "Interface",
+    "icon": "package",
+    "columns": 2,
+    "children": {
+      "accordion": {
+        "title": "Accordion",
+        "url": "accordion.html"
+      },
+      "alerts": {
+        "title": "Alerts",
+        "url": "alerts.html"
+      },
+      "authentication": {
+        "title": "Authentication",
+        "children": {
+          "sign-in": {
+            "title": "Sign in",
+            "url": "sign-in.html"
+          },
+          "sign-in-link": {
+            "title": "Sign in link",
+            "url": "sign-in-link.html"
+          },
+          "sign-in-illustration": {
+            "title": "Sign in with illustration",
+            "url": "sign-in-illustration.html"
+          },
+          "sign-in-cover": {
+            "title": "Sign in with cover",
+            "url": "sign-in-cover.html"
+          },
+          "sign-up": {
+            "title": "Sign up",
+            "url": "sign-up.html"
+          },
+          "forgot-password": {
+            "title": "Forgot password",
+            "url": "forgot-password.html"
+          },
+          "terms-of-service": {
+            "title": "Terms of service",
+            "url": "terms-of-service.html"
+          },
+          "auth-lock": {
+            "title": "Lock screen",
+            "url": "auth-lock.html"
+          },
+          "2-step-verification": {
+            "title": "2 step verification",
+            "url": "2-step-verification.html"
+          },
+          "2-step-verification-code": {
+            "title": "2 step verification code",
+            "url": "2-step-verification-code.html"
+          }
+        }
+      },
+      "badges": {
+        "url": "badges.html",
+        "title": "Badges",
+        "badge": "New"
+      },
+      "blank": {
+        "title": "Blank page",
+        "url": "blank.html"
+      },
+      "buttons": {
+        "url": "buttons.html",
+        "title": "Buttons"
+      },
+      "cards": {
+        "title": "Cards",
+        "badge": "New",
+        "children": {
+          "base": {
+            "url": "cards.html",
+            "title": "Sample cards"
+          },
+          "actions": {
+            "url": "card-actions.html",
+            "title": "Card actions",
+            "badge": "New"
+          },
+          "masonry": {
+            "url": "cards-masonry.html",
+            "title": "Cards Masonry"
+          }
+        }
+      },
+      "carousel": {
+        "title": "Carousel",
+        "url": "carousel.html",
+        "badge": "New"
+      },
+      "charts": {
+        "url": "charts.html",
+        "title": "Charts"
+      },
+      "colorpicker": {
+        "url": "colorpicker.html",
+        "title": "Color picker",
+        "badge": "New"
+      },
+      "colors": {
+        "url": "colors.html",
+        "title": "Colors"
+      },
+      "datagrid": {
+        "url": "datagrid.html",
+        "title": "Data grid",
+        "badge": "New"
+      },
+      "datatables": {
+        "url": "datatables.html",
+        "title": "Datatables",
+        "badge": "New"
+      },
+      "dropdowns": {
+        "url": "dropdowns.html",
+        "title": "Dropdowns"
+      },
+      "dropzone": {
+        "title": "Dropzone",
+        "url": "dropzone.html",
+        "badge": "New"
+      },
+      "error": {
+        "title": "Error pages",
+        "children": {
+          "404": {
+            "url": "error-404.html",
+            "title": "404 page"
+          },
+          "500": {
+            "url": "error-500.html",
+            "title": "500 page"
+          },
+          "maintenance": {
+            "url": "error-maintenance.html",
+            "title": "Maintenance page"
+          }
+        }
+      },
+      "flags": {
+        "title": "Flags",
+        "url": "flags.html",
+        "badge": "New"
+      },
+      "plyr": {
+        "title": "Inline player",
+        "badge": "New",
+        "url": "inline-player.html"
+      },
+      "lightbox": {
+        "title": "Lightbox",
+        "url": "lightbox.html",
+        "badge": "New"
+      },
+      "lists": {
+        "title": "Lists",
+        "url": "lists.html"
+      },
+      "modals": {
+        "url": "modals.html",
+        "title": "Modal"
+      },
+      "maps": {
+        "url": "maps.html",
+        "title": "Map"
+      },
+      "map-fullsize": {
+        "url": "map-fullsize.html",
+        "title": "Map fullsize"
+      },
+      "maps-vector": {
+        "url": "maps-vector.html",
+        "title": "Map vector",
+        "badge": "New"
+      },
+      "markdown": {
+        "title": "Markdown",
+        "url": "markdown.html"
+      },
+      "navigation": {
+        "url": "navigation.html",
+        "title": "Navigation"
+      },
+      "offcanvas": {
+        "title": "Offcanvas",
+        "url": "offcanvas.html"
+      },
+      "pagination": {
+        "url": "pagination.html",
+        "title": "Pagination"
+      },
+      "placeholder": {
+        "url": "placeholder.html",
+        "title": "Placeholder"
+      },
+      "social": {
+        "title": "Social icons",
+        "url": "social-icons.html",
+        "badge": "New"
+      },
+      "stars-rating": {
+        "title": "Stars rating",
+        "url": "stars-rating.html",
+        "badge": "New"
+      },
+      "steps": {
+        "url": "steps.html",
+        "title": "Steps",
+        "badge": "New"
+      },
+      "tables": {
+        "url": "tables.html",
+        "title": "Tables"
+      },
+      "tabs": {
+        "url": "tabs.html",
+        "title": "Tabs"
+      },
+      "tags": {
+        "url": "tags.html",
+        "title": "Tags"
+      },
+      "tinymce": {
+        "title": "TinyMCE",
+        "url": "tinymce.html",
+        "badge": "New"
+      },
+      "toasts": {
+        "title": "Toasts",
+        "url": "toasts.html"
+      },
+      "typography": {
+        "title": "Typography",
+        "url": "typography.html"
+      }
+    }
+  },
+  "forms": {
+    "url": "form-elements.html",
+    "title": "Forms",
+    "title-long": "Form elements",
+    "icon": "checkbox"
+  },
+  "extra": {
+    "title": "Extra",
+    "icon": "star",
+    "columns": 2,
+    "children": {
+      "activity": {
+        "title": "Activity",
+        "url": "activity.html"
+      },
+      "chat": {
+        "title": "Chat",
+        "url": "chat.html",
+        "badge": "New"
+      },
+      "cookie-banner": {
+        "title": "Cookie banner",
+        "url": "cookie-banner.html",
+        "badge": "New"
+      },
+      "empty": {
+        "title": "Empty page",
+        "url": "empty.html"
+      },
+      "faq": {
+        "url": "faq.html",
+        "title": "FAQ",
+        "badge": "New"
+      },
+      "gallery": {
+        "title": "Gallery",
+        "url": "gallery.html"
+      },
+      "invoice": {
+        "title": "Invoice",
+        "url": "invoice.html"
+      },
+      "job-listing": {
+        "title": "Job listing",
+        "url": "job-listing.html",
+        "badge": "New"
+      },
+      "license": {
+        "title": "License",
+        "url": "license.html"
+      },
+      "logs": {
+        "title": "Logs",
+        "url": "logs.html",
+        "badge": "New"
+      },
+      "marketing": {
+        "title": "Marketing",
+        "url": "marketing.html",
+        "badge": "New"
+      },
+      "music": {
+        "title": "Music",
+        "url": "music.html"
+      },
+      "page-loader": {
+        "title": "Page loader",
+        "url": "page-loader.html",
+        "badge": "New"
+      },
+      "payment-providers": {
+        "title": "Payment providers",
+        "url": "payment-providers.html",
+        "badge": "New"
+      },
+      "photogrid": {
+        "title": "Photogrid",
+        "url": "photogrid.html",
+        "badge": "New"
+      },
+      "pricing": {
+        "url": "pricing.html",
+        "title": "Pricing cards"
+      },
+      "pricing-table": {
+        "url": "pricing-table.html",
+        "title": "Pricing table"
+      },
+      "search-results": {
+        "title": "Search results",
+        "url": "search-results.html"
+      },
+      "settings": {
+        "title": "Settings",
+        "url": "settings.html",
+        "badge": "New"
+      },
+      "tasks": {
+        "title": "Tasks",
+        "url": "tasks.html",
+        "badge": "New"
+      },
+      "trial-ended": {
+        "title": "Trial ended",
+        "url": "trial-ended.html",
+        "badge": "New"
+      },
+      "uptime": {
+        "title": "Uptime monitor",
+        "url": "uptime.html"
+      },
+      "users": {
+        "title": "Users",
+        "url": "users.html"
+      },
+      "widgets": {
+        "title": "Widgets",
+        "url": "widgets.html"
+      },
+      "wizard": {
+        "title": "Wizard",
+        "url": "wizard.html"
+      }
+    }
+  },
+  "layout": {
+    "icon": "layout-2",
+    "title": "Layout",
+    "columns": 2,
+    "children": {
+      "boxed": {
+        "url": "layout-boxed.html",
+        "title": "Boxed",
+        "badge": "New"
+      },
+      "combo": {
+        "url": "layout-combo.html",
+        "title": "Combined"
+      },
+      "condensed": {
+        "url": "layout-condensed.html",
+        "title": "Condensed"
+      },
+      "fluid": {
+        "url": "layout-fluid.html",
+        "title": "Fluid"
+      },
+      "fluid-vertical": {
+        "url": "layout-fluid-vertical.html",
+        "title": "Fluid vertical"
+      },
+      "horizontal": {
+        "url": "layout-horizontal.html",
+        "title": "Horizontal"
+      },
+      "navbar-dark": {
+        "url": "layout-navbar-dark.html",
+        "title": "Navbar dark"
+      },
+      "navbar-overlap": {
+        "url": "layout-navbar-overlap.html",
+        "title": "Navbar overlap"
+      },
+      "navbar-sticky": {
+        "url": "layout-navbar-sticky.html",
+        "title": "Navbar sticky"
+      },
+      "vertical-right": {
+        "url": "layout-vertical-right.html",
+        "title": "Right vertical"
+      },
+      "rtl-mode": {
+        "url": "layout-rtl.html",
+        "title": "RTL mode"
+      },
+      "vertical": {
+        "url": "layout-vertical.html",
+        "title": "Vertical"
+      },
+      "vertical-transparent": {
+        "url": "layout-vertical-transparent.html",
+        "title": "Vertical transparent"
+      }
+    }
+  },
+  "icons": {
+    "title": "%ICONS_COUNT% icons",
+    "icon": "ghost",
+    "url": "icons.html"
+  },
+  "emails": {
+    "title": "Emails",
+    "icon": "mail-opened",
+    "url": "emails.html"
+  },
+  "illustrations": {
+    "title": "Illustrations",
+    "icon": "brand-figma",
+    "url": "illustrations.html"
+  },
+  "help": {
+    "title": "Help",
+    "icon": "lifebuoy",
+    "children": {
+      "docs": {
+        "title": "Documentation",
+        "url": "https://tabler.io/docs"
+      },
+      "changelog": {
+        "url": "changelog.html",
+        "title": "Changelog"
+      },
+      "source-code": {
+        "url": "https://github.com/tabler/tabler",
+        "title": "Source code"
+      },
+      "sponsor": {
+        "color": "pink",
+        "icon": "heart",
+        "url": "https://github.com/sponsors/codecalm",
+        "title": "Sponsor project!"
+      }
+    }
+  }
+}

+ 0 - 367
src/pages/_data/menu.yml

@@ -1,367 +0,0 @@
-home:
-  url: ""
-  title: Home
-  icon: home
-
-base:
-  title: Interface
-  icon: package
-  columns: 2
-  children:
-    accordion:
-      title: Accordion
-      url: accordion.html
-    alerts:
-      title: Alerts
-      url: alerts.html
-    authentication:
-      title: Authentication
-      children:
-        sign-in:
-          title: Sign in
-          url: sign-in.html
-        sign-in-link:
-          title: Sign in link
-          url: sign-in-link.html
-        sign-in-illustration:
-          title: Sign in with illustration
-          url: sign-in-illustration.html
-        sign-in-cover:
-          title: Sign in with cover
-          url: sign-in-cover.html
-        sign-up:
-          title: Sign up
-          url: sign-up.html
-        forgot-password:
-          title: Forgot password
-          url: forgot-password.html
-        terms-of-service:
-          title: Terms of service
-          url: terms-of-service.html
-        auth-lock:
-          title: Lock screen
-          url: auth-lock.html
-        2-step-verification:
-          title: 2 step verification
-          url: 2-step-verification.html
-        2-step-verification-code:
-          title: 2 step verification code
-          url: 2-step-verification-code.html
-    badges:
-      url: badges.html
-      title: Badges
-      badge: New
-    blank:
-      title: Blank page
-      url: blank.html
-    buttons:
-      url: buttons.html
-      title: Buttons
-    cards:
-      title: Cards
-      badge: New
-      children:
-        base:
-          url: cards.html
-          title: Sample cards
-        actions:
-          url: card-actions.html
-          title: Card actions
-          badge: New
-        masonry:
-          url: cards-masonry.html
-          title: Cards Masonry
-    carousel:
-      title: Carousel
-      url: carousel.html
-      badge: New
-    charts:
-      url: charts.html
-      title: Charts
-    colorpicker:
-      url: colorpicker.html
-      title: Color picker
-      badge: New
-    colors:
-      url: colors.html
-      title: Colors
-    datagrid:
-      url: datagrid.html
-      title: Data grid
-      badge: New
-    datatables:
-      url: datatables.html
-      title: Datatables
-      badge: New
-    dropdowns:
-      url: dropdowns.html
-      title: Dropdowns
-    dropzone:
-      title: Dropzone
-      url: dropzone.html
-      badge: New
-    error:
-      title: Error pages
-      children:
-        404:
-          url: error-404.html
-          title: 404 page
-        500:
-          url: error-500.html
-          title: 500 page
-        maintenance:
-          url: error-maintenance.html
-          title: Maintenance page
-    flags:
-      title: Flags
-      url: flags.html
-      badge: New
-    plyr:
-      title: Inline player
-      badge: New
-      url: inline-player.html
-    lightbox:
-      title: Lightbox
-      url: lightbox.html
-      badge: New
-    lists:
-      title: Lists
-      url: lists.html
-    modals:
-      url: modals.html
-      title: Modal
-    maps:
-      url: maps.html
-      title: Map
-    map-fullsize:
-      url: map-fullsize.html
-      title: Map fullsize
-    maps-vector:
-      url: maps-vector.html
-      title: Map vector
-      badge: New
-    markdown:
-      title: Markdown
-      url: markdown.html
-    navigation:
-      url: navigation.html
-      title: Navigation
-    offcanvas:
-      title: Offcanvas
-      url: offcanvas.html
-    pagination:
-      url: pagination.html
-      title: Pagination
-    placeholder:
-      url: placeholder.html
-      title: Placeholder
-    social:
-      title: Social icons
-      url: social-icons.html
-      badge: New
-    stars-rating:
-      title: Stars rating
-      url: stars-rating.html
-      badge: New
-    steps:
-      url: steps.html
-      title: Steps
-      badge: New
-    tables:
-      url: tables.html
-      title: Tables
-    tabs:
-      url: tabs.html
-      title: Tabs
-    tags:
-      url: tags.html
-      title: Tags
-    tinymce:
-      title: TinyMCE
-      url: tinymce.html
-      badge: New
-    toasts:
-      title: Toasts
-      url: toasts.html
-    typography:
-      title: Typography
-      url: typography.html
-
-forms:
-  url: form-elements.html
-  title: Forms
-  title-long: Form elements
-  icon: checkbox
-
-extra:
-  title: Extra
-  icon: star
-  columns: 2
-  children:
-    activity:
-      title: Activity
-      url: activity.html
-    chat:
-      title: Chat
-      url: chat.html
-      badge: New
-    cookie-banner:
-      title: Cookie banner
-      url: cookie-banner.html
-      badge: New
-    empty:
-      title: Empty page
-      url: empty.html
-    faq:
-      url: faq.html
-      title: FAQ
-      badge: New
-    gallery:
-      title: Gallery
-      url: gallery.html
-    invoice:
-      title: Invoice
-      url: invoice.html
-    job-listing:
-      title: Job listing
-      url: job-listing.html
-      badge: New
-    license:
-      title: License
-      url: license.html
-    logs:
-      title: Logs
-      url: logs.html
-      badge: New
-    marketing:
-      title: Marketing
-      url: marketing.html
-      badge: New
-    music:
-      title: Music
-      url: music.html
-    page-loader:
-      title: Page loader
-      url: page-loader.html
-      badge: New
-    payment-providers:
-      title: Payment providers
-      url: payment-providers.html
-      badge: New
-    photogrid:
-      title: Photogrid
-      url: photogrid.html
-      badge: New
-    pricing:
-      url: pricing.html
-      title: Pricing cards
-    pricing-table:
-      url: pricing-table.html
-      title: Pricing table
-    search-results:
-      title: Search results
-      url: search-results.html
-    settings:
-      title: Settings
-      url: settings.html
-      badge: New
-    tasks:
-      title: Tasks
-      url: tasks.html
-      badge: New
-    trial-ended:
-      title: Trial ended
-      url: trial-ended.html
-      badge: New
-    uptime:
-      title: Uptime monitor
-      url: uptime.html
-    users:
-      title: Users
-      url: users.html
-    widgets:
-      title: Widgets
-      url: widgets.html
-    wizard:
-      title: Wizard
-      url: wizard.html
-
-layout:
-  icon: layout-2
-  title: Layout
-  columns: 2
-  children:
-    boxed:
-      url: layout-boxed.html
-      title: Boxed
-      badge: New
-    combo:
-      url: layout-combo.html
-      title: Combined
-    condensed:
-      url: layout-condensed.html
-      title: Condensed
-    fluid:
-      url: layout-fluid.html
-      title: Fluid
-    fluid-vertical:
-      url: layout-fluid-vertical.html
-      title: Fluid vertical
-    horizontal:
-      url: layout-horizontal.html
-      title: Horizontal
-    navbar-dark:
-      url: layout-navbar-dark.html
-      title: Navbar dark
-    navbar-overlap:
-      url: layout-navbar-overlap.html
-      title: Navbar overlap
-    navbar-sticky:
-      url: layout-navbar-sticky.html
-      title: Navbar sticky
-    vertical-right:
-      url: layout-vertical-right.html
-      title: Right vertical
-    rtl-mode:
-      url: layout-rtl.html
-      title: RTL mode
-    vertical:
-      url: layout-vertical.html
-      title: Vertical
-    vertical-transparent:
-      url: layout-vertical-transparent.html
-      title: Vertical transparent
-
-icons:
-  title: "%ICONS_COUNT% icons"
-  icon: ghost
-  url: icons.html
-
-emails:
-  title: "Emails"
-  icon: mail-opened
-  url: emails.html
-
-illustrations:
-  title: "Illustrations"
-  icon: brand-figma
-  url: illustrations.html
-
-help:
-  title: Help
-  icon: lifebuoy
-  children:
-    docs:
-      title: Documentation
-      url: https://tabler.io/docs
-    changelog:
-      url: changelog.html
-      title: Changelog
-    source-code:
-      url: https://github.com/tabler/tabler
-      title: Source code
-    sponsor:
-      color: pink
-      icon: heart
-      url: https://github.com/sponsors/codecalm
-      title: Sponsor project!

+ 27 - 0
src/pages/_data/orders.json

@@ -0,0 +1,27 @@
+[
+  {
+    "title": "Wordpress Plugins",
+    "subtitle": "HTML, CSS, PHP",
+    "color": "blue"
+  },
+  {
+    "title": "HTML Templates",
+    "subtitle": "HTML, CSS, Javascript",
+    "color": "red"
+  },
+  {
+    "title": "Mobile Apps",
+    "subtitle": "React Native",
+    "color": "green"
+  },
+  {
+    "title": "Back-end Plugins",
+    "subtitle": "Ruby, PHP",
+    "color": "yellow"
+  },
+  {
+    "title": "Other",
+    "subtitle": "C#, ASP.NET",
+    "color": "dark"
+  }
+]

+ 0 - 15
src/pages/_data/orders.yml

@@ -1,15 +0,0 @@
-- title: Wordpress Plugins
-  subtitle: HTML, CSS, PHP
-  color: blue
-- title: HTML Templates
-  subtitle: HTML, CSS, Javascript
-  color: red
-- title: Mobile Apps
-  subtitle: React Native
-  color: green
-- title: Back-end Plugins
-  subtitle: Ruby, PHP
-  color: yellow
-- title: Other
-  subtitle: C#, ASP.NET
-  color: dark

+ 58 - 0
src/pages/_data/pages.json

@@ -0,0 +1,58 @@
+[
+  {
+    "uri": "/",
+    "visitors": 4896,
+    "unique": 3654,
+    "bounce": "82.54%",
+    "data": "17, 24, 20, 10, 5, 1, 4, 18, 13"
+  },
+  {
+    "uri": "/form-elements.html",
+    "visitors": 3652,
+    "unique": 3215,
+    "bounce": "76.29%",
+    "data": "13, 11, 19, 22, 12, 7, 14, 3, 21"
+  },
+  {
+    "uri": "/index.html",
+    "visitors": 3256,
+    "unique": 2865,
+    "bounce": "72.65%",
+    "data": "10, 13, 10, 4, 17, 3, 23, 22, 19"
+  },
+  {
+    "uri": "/icons.html",
+    "visitors": 986,
+    "unique": 865,
+    "bounce": "44.89%",
+    "data": "6, 15, 13, 13, 5, 7, 17, 20, 19"
+  },
+  {
+    "uri": "/docs/",
+    "visitors": 912,
+    "unique": 822,
+    "bounce": "41.12%",
+    "data": "2, 11, 15, 14, 21, 20, 8, 23, 18, 14"
+  },
+  {
+    "uri": "/accordion.html",
+    "visitors": 855,
+    "unique": 798,
+    "bounce": "32.65%",
+    "data": "22, 12, 7, 14, 3, 21, 8, 23, 18, 14"
+  },
+  {
+    "uri": "/datagrid.html",
+    "visitors": 764,
+    "unique": 650,
+    "bounce": "16.22%",
+    "data": "10, 13, 10, 4, 17, 3, 23, 22, 19"
+  },
+  {
+    "uri": "/datatables.html",
+    "visitors": 686,
+    "unique": 450,
+    "bounce": "8.69%",
+    "data": "6, 15, 13, 13, 5, 7, 17, 20, 19"
+  }
+]

+ 0 - 47
src/pages/_data/pages.yml

@@ -1,47 +0,0 @@
-- uri: /
-  visitors: 4896
-  unique: 3654
-  bounce: 82.54%
-  data: 17, 24, 20, 10, 5, 1, 4, 18, 13
-
-- uri: /form-elements.html
-  visitors: 3652
-  unique: 3215
-  bounce: 76.29%
-  data: 13, 11, 19, 22, 12, 7, 14, 3, 21
-
-- uri: /index.html
-  visitors: 3256
-  unique: 2865
-  bounce: 72.65%
-  data: 10, 13, 10, 4, 17, 3, 23, 22, 19
-
-- uri: /icons.html
-  visitors: 986
-  unique: 865
-  bounce: 44.89%
-  data: 6, 15, 13, 13, 5, 7, 17, 20, 19
-
-- uri: /docs/
-  visitors: 912
-  unique: 822
-  bounce: 41.12%
-  data: 2, 11, 15, 14, 21, 20, 8, 23, 18, 14
-
-- uri: /accordion.html
-  visitors: 855
-  unique: 798
-  bounce: 32.65%
-  data: 22, 12, 7, 14, 3, 21, 8, 23, 18, 14
-
-- uri: /datagrid.html
-  visitors: 764
-  unique: 650
-  bounce: 16.22%
-  data: 10, 13, 10, 4, 17, 3, 23, 22, 19
-
-- uri: /datatables.html
-  visitors: 686
-  unique: 450
-  bounce: 8.69%
-  data: 6, 15, 13, 13, 5, 7, 17, 20, 19

+ 871 - 0
src/pages/_data/photos.json

@@ -0,0 +1,871 @@
+[
+  {
+    "src": "https://kaboompics.com/photo/4016/people-taking-notes",
+    "path": "https://kaboompics.com/download/920f3d86e22f6a241b99828c8d61fac5/medium",
+    "title": "Group of people brainstorming and taking notes",
+    "tags": "work, business, design, brainstorming, teamwork, presentation, notes, group, team, meeting, conference, discussion",
+    "author": "Karolina Grabowska",
+    "width": 3648,
+    "height": 5472,
+    "file": "group-of-people-brainstorming-and-taking-notes.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/4357/beautiful-blonde-girl-on-the-beach",
+    "path": "https://kaboompics.com/download/f21281df386f391de35cad3a6cc11170/medium",
+    "title": "Beautiful blonde woman relaxing with a can of coke on a tree stump by the beach",
+    "tags": "beach, female, girl, sand, woman, drink, tree, beautiful, pretty, coke, coca-cola, can, stump",
+    "author": "Karolina Grabowska",
+    "width": 3718,
+    "height": 2479,
+    "file": "beautiful-blonde-woman-relaxing-with-a-can-of-coke-on-a-tree-stump-by-the-beach.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/2156/brainstorming-session-with-creative-designers",
+    "path": "https://kaboompics.com/download/15aaee824dbc26b89f6ad379eb4c86ef/medium",
+    "title": "Brainstorming session with creative designers",
+    "tags": "people, work, hands, business, design, brainstorming, session, creative, ideas, teamwork, concept, plan, project",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "brainstorming-session-with-creative-designers.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/19633/the-woman-holds-a-cryptocurrency-bitcoin",
+    "path": "https://kaboompics.com/download/d8a1b053f93ff3492c0f7bb8c7c2dddb/medium",
+    "title": "Finances - US Dollars and Bitcoins - Currency - Money",
+    "tags": "money, finances, dollars, bitcoin, currency, Cryptocurrency",
+    "author": "Karolina Grabowska",
+    "width": 6391,
+    "height": 4261,
+    "file": "finances-us-dollars-and-bitcoins-currency-money.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/2417/contemporary-black-and-white-home-decor",
+    "path": "https://kaboompics.com/download/ebb5a26ae5a247d02633087399a6a07e/medium",
+    "title": "Contemporary black-and-white home decor",
+    "tags": "interior, sofa, magazines, modern, table, contemporary, cat, pillows, home decor, bookcase, stylish",
+    "author": "Karolina Grabowska",
+    "width": 3565,
+    "height": 5347,
+    "file": "contemporary-black-and-white-home-decor.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/4014/woman-holding-a-smartphone",
+    "path": "https://kaboompics.com/download/82daef4c37d5160140951d751569ce0d/medium",
+    "title": "Group of people brainstorming and taking notes",
+    "tags": "work, business, design, brainstorming, teamwork, presentation, notes, group, team, meeting, conference, discussion",
+    "author": "Karolina Grabowska",
+    "width": 5182,
+    "height": 3455,
+    "file": "group-of-people-brainstorming-and-taking-notes-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4180/blue-sofa-with-pillows-in-a-designer-living-room-interior",
+    "path": "https://kaboompics.com/download/ec4616f94240f962bc01de80c250b09e/medium",
+    "title": "Blue sofa with pillows in a designer living room interior",
+    "tags": "interior, sofa, pillows, home decor, couch, rug, design, settee",
+    "author": "Karolina Grabowska",
+    "width": 5135,
+    "height": 3423,
+    "file": "blue-sofa-with-pillows-in-a-designer-living-room-interior.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5520/home-office-desk-with-macbook-iphone-calendar-watch-organizer",
+    "path": "https://kaboompics.com/download/a78dbe21b476a579d11e7df55dc27782/medium",
+    "title": "Home office desk with Macbook, iPhone, calendar, watch & organizer",
+    "tags": "office, workspace, workplace, macbook, iphone, phone, mobile, work, desk, notebook, laptop, working, watch, organizer, calendar, study, home office, silver watch",
+    "author": "Karolina Grabowska",
+    "width": 5041,
+    "height": 3361,
+    "file": "home-office-desk-with-macbook-iphone-calendar-watch-and-organizer.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/3619/woman-writing-in-her-notebook",
+    "path": "https://kaboompics.com/download/88fe208aec7f740d83240ef86a06d395/medium",
+    "title": "Young woman working in a cafe",
+    "tags": "caucasian, female, woman, office, workspace, workplace, computer, macbook, technology, coffee, laptop, working, young, cafe, restaurant, glasses, indoors, businesswoman",
+    "author": "Karolina Grabowska",
+    "width": 4104,
+    "height": 2736,
+    "file": "young-woman-working-in-a-cafe.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/7016/everything-you-need-to-work-from-your-bed",
+    "path": "https://kaboompics.com/download/31b2d14bf15e1eb16b14754cae53cf6b/medium",
+    "title": "Everything you need to work from your bed",
+    "tags": "workspace, computer, macbook, iphone, book, phone, mobile, work, laptop, reading, above, bed, cell phone, bedding, bedroom, blogging, flatlay",
+    "author": "Karolina Grabowska",
+    "width": 5217,
+    "height": 3568,
+    "file": "everything-you-need-to-work-from-your-bed.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4852/young-smiling-man-using-mobile-phone",
+    "path": "https://kaboompics.com/download/1bf0e8b463b401e0e9fede2afae198e5/medium",
+    "title": "Young Entrepreneur Working from a Modern Cafe",
+    "tags": "interior, workspace, workplace, computer, macbook, laptop, typing, man, working, young, cafe, male, business, restaurant, indoor, casual, designer, busy, handsome, architect, macbook pro, businessman, alone",
+    "author": "Karolina Grabowska",
+    "width": 5221,
+    "height": 3481,
+    "file": "young-entrepreneur-working-from-a-modern-cafe.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/19660/the-woman-uses-mobile-phone-writes-a-message",
+    "path": "https://kaboompics.com/download/4770f0a30bec8a09566fef818e8ce070/medium",
+    "title": "Finances - US Dollars and Bitcoins - Currency - Money",
+    "tags": "money, finances, dollars, bitcoin, currency, Cryptocurrency",
+    "author": "Karolina Grabowska",
+    "width": 6720,
+    "height": 4480,
+    "file": "finances-us-dollars-and-bitcoins-currency-money-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4695/group-of-people-examining-a-map",
+    "path": "https://kaboompics.com/download/a491502dbf1ed2c793f997d7269234b5/medium",
+    "title": "Group of people sightseeing in the city",
+    "tags": "people, sunny, town, city, street, travel, trip, sightseeing, group, tour, hike, crowd",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "group-of-people-sightseeing-in-the-city.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/7898/color-palette-guide-sample-colors-catalog",
+    "path": "https://kaboompics.com/download/8e433dbe3ebb96628bffc471b605a416/medium",
+    "title": "Color Palette Guide. Sample Colors Catalog.",
+    "tags": "painting, paint, colorful, colors, painter, palette, pantone, multicolor, rgb, cmyk, graphic designer, rainbow, print, swatch",
+    "author": "Karolina Grabowska",
+    "width": 4316,
+    "height": 2877,
+    "file": "color-palette-guide-sample-colors-catalog-.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/8956/elegant-home-office-with-golden-accessories",
+    "path": "https://kaboompics.com/download/43268f5181d1c32794cd366aac911d3f/medium",
+    "title": "Elegant home office with golden accessories",
+    "tags": "laptop, workspace, home office, office, work, black desk, macbook, computer, macbook air, screen, mockup, elegant, elegance, black, gold, art, picture, interior, indoor, painting, frame, gold frame, iphone, mobile, phone, tech, technology",
+    "author": "Karolina Grabowska",
+    "width": 3571,
+    "height": 5356,
+    "file": "elegant-home-office-with-golden-accessories.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/3283/businesswoman-entrepreneur-working-on-laptop-from-home-office-space",
+    "path": "https://kaboompics.com/download/f99ffdfd4cba04abd23694ab1cca906a/medium",
+    "title": "Stylish workplace with computer at home",
+    "tags": "woman, interior, interior design, sofa, furniture, office, modern, chair, workspace, workplace, lamp, computer, contemporary, macbook, pet, animal, desk, laptop, cat, living room, young, decor, decorations, pillows, couch, macbook air, home office, lounge, desk lamp",
+    "author": "Karolina Grabowska",
+    "width": 3749,
+    "height": 2499,
+    "file": "stylish-workplace-with-computer-at-home.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/19644/the-woman-holds-a-cryptocurrency-bitcoin-us-dollars",
+    "path": "https://kaboompics.com/download/9ed5fc25f062fa80719329eb479de71b/medium",
+    "title": "Finances - US Dollars and Bitcoins - Currency - Money",
+    "tags": "money, finances, dollars, bitcoin, currency, Cryptocurrency",
+    "author": "Karolina Grabowska",
+    "width": 4480,
+    "height": 6720,
+    "file": "finances-us-dollars-and-bitcoins-currency-money-3.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/4538/woman-writing-on-notebook",
+    "path": "https://kaboompics.com/download/8bff466fb9d7b3f66a718cae09c28dbf/medium",
+    "title": "Pink desk in the home office",
+    "tags": "female, home, office, workspace, workplace, desk, indoor, femine, stylish, home office, wroking",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "pink-desk-in-the-home-office.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4920/young-woman-sitting-on-the-sofa-and-working-on-her-laptop",
+    "path": "https://kaboompics.com/download/d0af473bf330f4f008fda5814adbf31a/medium",
+    "title": "Young woman sitting on the sofa and working on her laptop",
+    "tags": "caucasian, girl, person, woman, minimal, sofa, minimalism, room, home, coffee table, white, computer, table, apple macbook, macbook, technology, laptop, typing, living room, working, young, scandi, scandinavian, couch, indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table, white marble, at home, wooden floor, white floor",
+    "author": "Karolina Grabowska",
+    "width": 5396,
+    "height": 3597,
+    "file": "young-woman-sitting-on-the-sofa-and-working-on-her-laptop.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/1916/morning-coffee",
+    "path": "https://kaboompics.com/download/0dbd1b546d3f4b498c6b94027d67d4a3/medium",
+    "title": "Coffee on a table with other items",
+    "tags": "table, coffee, morning, pot, tablet",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "coffee-on-a-table-with-other-items.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4843/man-laptop-mobile-phone",
+    "path": "https://kaboompics.com/download/fc36f69442e7acfda1cbb67f89f33311/medium",
+    "title": "Young Entrepreneur Working from a Modern Cafe",
+    "tags": "interior, workspace, workplace, computer, macbook, laptop, typing, man, working, young, cafe, male, business, restaurant, indoor, casual, designer, busy, handsome, architect, macbook pro, businessman, alone",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "young-entrepreneur-working-from-a-modern-cafe-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4515/soft-photo-of-woman-on-the-bed-with-the-book-and-cup-of-tea-in-hands",
+    "path": "https://kaboompics.com/download/2a481324d8aa41a7190c094ec2505375/medium",
+    "title": "Soft photo of woman on the bed with the book and cup of coffee in hands",
+    "tags": "woman, white, relax, free time, blanket, indoor, bed, cosy, comfortable, cozy, comfy, hygge, soft",
+    "author": "Karolina Grabowska",
+    "width": 4893,
+    "height": 3262,
+    "file": "soft-photo-of-woman-on-the-bed-with-the-book-and-cup-of-coffee-in-hands.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5199/fairy-lights-at-the-beach-in-bulgaria",
+    "path": "https://kaboompics.com/download/37956f431c10a9295314c8e75b460bb2/medium",
+    "title": "Fairy lights at the beach in Bulgaria",
+    "tags": "ocean, sea, shore, summer, evening, man, male, Europe, seaside, night, lights, fairy lights, bokeh, blurred, blur, bulgaria, black sea, sunny beach, christmas lights",
+    "author": "Karolina Grabowska",
+    "width": 5359,
+    "height": 3573,
+    "file": "fairy-lights-at-the-beach-in-bulgaria.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4085/woman-working-on-laptop-at-home-office",
+    "path": "https://kaboompics.com/download/911b8d07d5b91b97d7d55886c697aa06/medium",
+    "title": "Woman working on laptop at home office",
+    "tags": "woman, office, workspace, workplace, computer, macbook, coffee, work, desk, laptop, cup, businesswoman, home office, busy",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "woman-working-on-laptop-at-home-office.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5793/modern-home-office",
+    "path": "https://kaboompics.com/download/0379987e2884a5ce5c226f3e70e6fdb0/medium",
+    "title": "Modern Home Office",
+    "tags": "interior, interior design, office, chair, workspace, workplace, Apple, tech, computer, table, macbook, technology, wooden desk, notebook, laptop, golden, working, decorations, home decor, calendar, home office, wooden chair, green desk, dark desk, office space, gold accessories, gold decorations, golden accessories, agenda",
+    "author": "Karolina Grabowska",
+    "width": 4813,
+    "height": 3209,
+    "file": "modern-home-office.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5046/woman-using-mobile-phone",
+    "path": "https://kaboompics.com/download/95b133364639c0d4dece57a4d34bbb31/medium",
+    "title": "Blond using her laptop at her bedroom",
+    "tags": "caucasian, girl, woman, home, technology, work, working, young, bed, cosy, cozy, comfy, bedroom, blonde, at home, blond, influencer, ombre hair",
+    "author": "Karolina Grabowska",
+    "width": 5331,
+    "height": 3554,
+    "file": "blond-using-her-laptop-at-her-bedroom.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/8271/tropical-palm-leaves-floral-pattern-background",
+    "path": "https://kaboompics.com/download/e8879f5be8f5322adfcc042e9559c762/medium",
+    "title": "Tropical palm leaves, floral pattern background",
+    "tags": "summer, background, green, nature, leaf, leaves, pattern, tropical, exotic, palm, botanical, wallpaper, paradise, jungle",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "tropical-palm-leaves-floral-pattern-background.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/8890/woman-read-book-and-drink-coffee",
+    "path": "https://kaboompics.com/download/89cc83e7fb8feb124e6e723e6349fe02/medium",
+    "title": "Woman read book and drink coffee",
+    "tags": "coffee, book, hands, relaxing, reading, free time, opened book, top view, cappucino, late, flat lay",
+    "author": "Karolina Grabowska",
+    "width": 5260,
+    "height": 3507,
+    "file": "woman-read-book-and-drink-coffee.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/2223/book-on-the-grass",
+    "path": "https://kaboompics.com/download/b9427ffe5357d30908bba72a9c9c701f/medium",
+    "title": "Book on the grass",
+    "tags": "book, reading, grass, leaf, literature",
+    "author": "Karolina Grabowska",
+    "width": 5325,
+    "height": 3550,
+    "file": "book-on-the-grass.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5005/sago-palm",
+    "path": "https://kaboompics.com/download/d18f6ddaa80a7e9ef787aa2565a9a65d/medium",
+    "title": "Colorful Exotic Flowers and Greenery",
+    "tags": "flowers, flora, leaf, leaves, colorful, tropical, greenery, exotic, multicolor",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "colorful-exotic-flowers-and-greenery.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5811/woman-laptop-mobile-phone-notebooks",
+    "path": "https://kaboompics.com/download/f7f2ca1d6101c28a959bb0b34d9381f8/medium",
+    "title": "Workplace with laptop on table at home",
+    "tags": "interior, minimal, minimalist, minimalism, room, home, white, office, workspace, workplace, tech, computer, table, technology, work, laptop, scandi, scandinavian, indoors, white laptop, home office",
+    "author": "Karolina Grabowska",
+    "width": 3466,
+    "height": 2311,
+    "file": "workplace-with-laptop-on-table-at-home.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5188/blurred-city-lights-reflected-in-the-water-at-night",
+    "path": "https://kaboompics.com/download/ec33b0094b56d51699edb1d3945040c5/medium",
+    "title": "City lights reflected in the water at night",
+    "tags": "coast, ocean, sea, water, city, reflection, Europe, waterscape, urban, night, lights, bulgaria, black sea, Nessebar, dusk",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "city-lights-reflected-in-the-water-at-night.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/19462/cryptocurrency-bitcoin-coins",
+    "path": "https://kaboompics.com/download/2b755541f04622f2853fb8a8436c517f/medium",
+    "title": "Cryptocurrency Bitcoin coins",
+    "tags": "bitcoin, Cryptocurrency, blockchain, btc, crypto, money, finances, economy, virtual, currency, financial",
+    "author": "Karolina Grabowska",
+    "width": 6638,
+    "height": 4425,
+    "file": "cryptocurrency-bitcoin-coins.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/8887/woman-read-book-and-drink-coffee",
+    "path": "https://kaboompics.com/download/9ec53d895e21a920458091ae8009fb5d/medium",
+    "title": "Woman read book and drink coffee",
+    "tags": "coffee, book, hands, relaxing, reading, free time, opened book, top view, cappucino, late, flat lay",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "woman-read-book-and-drink-coffee-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/3760/people-holding-glasses-of-white-wine-making-a-toast",
+    "path": "https://kaboompics.com/download/0ae200fd8ad9c44e2a06424886932370/medium",
+    "title": "Friends at a restaurant drinking wine",
+    "tags": "evening, fun, happy, friends, women, dinner, restaurant, glass, party, wineglass, celebration, clinking, cheers",
+    "author": "Karolina Grabowska",
+    "width": 5209,
+    "height": 3473,
+    "file": "friends-at-a-restaurant-drinking-wine.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4383/beautiful-blonde-woman-on-a-wooden-pier-by-the-lake",
+    "path": "https://kaboompics.com/download/78c3777d558f8ec1c5422992e278091f/medium",
+    "title": "Beautiful blonde woman on a wooden pier by the lake",
+    "tags": "female, girl, water, woman, lake, pier, young, wooden, wood, beautiful, pretty, blonde, jetty, attractive",
+    "author": "Karolina Grabowska",
+    "width": 3859,
+    "height": 2573,
+    "file": "beautiful-blonde-woman-on-a-wooden-pier-by-the-lake.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/19647/finances-us-dollars-and-bitcoins-currency-money",
+    "path": "https://kaboompics.com/download/c628e8ebf46a952ab0480f7a02ea94d0/medium",
+    "title": "Finances - US Dollars and Bitcoins - Currency - Money",
+    "tags": "money, finances, dollars, bitcoin, currency, Cryptocurrency",
+    "author": "Karolina Grabowska",
+    "width": 4480,
+    "height": 6720,
+    "file": "finances-us-dollars-and-bitcoins-currency-money-4.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/1516/white-apple-imac-computer-with-elephant-mousepad",
+    "path": "https://kaboompics.com/download/d672c1eeef13a922f2e9283272ccb0c5/medium",
+    "title": "White Apple iMac computer with elephant mousepad",
+    "tags": "white, iMac, Apple, keyboard, mouse, mac, mousepad, elephant, monitor, Hella Jongerius, Eames Elephant, Vitra",
+    "author": "Karolina Grabowska",
+    "width": 4029,
+    "height": 2686,
+    "file": "white-apple-imac-computer-with-elephant-mousepad.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/13265/macbook-laptop-orange-dianthus-carnation-or-clove-pink-flowers-on-desk-kiwano-fruit",
+    "path": "https://kaboompics.com/download/aa71b43ce8d4fd96b8d7c047abcd7c99/medium",
+    "title": "A woman works on a laptop at home",
+    "tags": "woman, work, laptop, home, office, workspace, workplace, working, business, caucasian, blogger, indoors, busy, at work, notebook, technology, macbook, desk",
+    "author": "Karolina Grabowska",
+    "width": 4480,
+    "height": 6720,
+    "file": "a-woman-works-on-a-laptop-at-home.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/5823/iphone-laptop-coffee-in-chemex",
+    "path": "https://kaboompics.com/download/ae2d7640268a1a4ba0d601aec047e88b/medium",
+    "title": "Workplace with laptop on table at home",
+    "tags": "interior, minimal, minimalist, minimalism, room, home, white, office, workspace, workplace, tech, computer, table, technology, work, laptop, scandi, scandinavian, indoors, white laptop, home office",
+    "author": "Karolina Grabowska",
+    "width": 3851,
+    "height": 2567,
+    "file": "workplace-with-laptop-on-table-at-home-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5482/macbook-iphone-notebook-cheese-cake-and-cup-of-coffee",
+    "path": "https://kaboompics.com/download/934d49e018d8ce5e0c648a002aeffcff/medium",
+    "title": "Working in a restaurant: Macbook, Cheese Cake and Cup of Coffee",
+    "tags": "workspace, workplace, tech, computer, macbook, technology, coffee, mobile, work, desk, wooden desk, laptop, fruits, cup, cake, working, cafe, business, indoor, wooden table, cheese cake, onterior",
+    "author": "Karolina Grabowska",
+    "width": 4104,
+    "height": 2736,
+    "file": "working-in-a-restaurant-macbook-cheese-cake-and-cup-of-coffee.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4908/young-woman-sitting-on-the-sofa-and-working-on-her-laptop",
+    "path": "https://kaboompics.com/download/57d47e394029c31c944ead8fe1aa152e/medium",
+    "title": "Young woman sitting on the sofa and working on her laptop",
+    "tags": "caucasian, girl, person, woman, minimal, sofa, minimalism, room, home, coffee table, white, computer, table, apple macbook, macbook, technology, laptop, typing, living room, working, young, scandi, scandinavian, couch, indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table, white marble, at home, wooden floor, white floor",
+    "author": "Karolina Grabowska",
+    "width": 4003,
+    "height": 2669,
+    "file": "young-woman-sitting-on-the-sofa-and-working-on-her-laptop-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/2148/brainstorming-session-with-creative-designers",
+    "path": "https://kaboompics.com/download/063921382ab30ea474bb999104ff486f/medium",
+    "title": "Brainstorming session with creative designers",
+    "tags": "people, work, hands, business, design, brainstorming, session, creative, ideas, teamwork, concept, plan, project",
+    "author": "Karolina Grabowska",
+    "width": 5011,
+    "height": 3341,
+    "file": "brainstorming-session-with-creative-designers-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4464/woman-drinking-hot-tea-in-her-home-office",
+    "path": "https://kaboompics.com/download/11740715ba428deb16eed24a9315215d/medium",
+    "title": "Woman drinking hot tea in her home office",
+    "tags": "caucasian, woman, computer, macbook, laptop, tea, hot, drink, young, warm, autumn, fall, winter, mug, comfortable, cozy, home office, hygge, sweater, wool",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "woman-drinking-hot-tea-in-her-home-office.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4906/stylish-workspace-with-macbook-pro",
+    "path": "https://kaboompics.com/download/5664af9b19cba7fd7b0f7f8265318631/medium",
+    "title": "Stylish workspace with Macbook Pro",
+    "tags": "interior, white, office, workspace, workplace, computer, apple macbook, macbook, technology, desk, laptop, scandi, scandinavian, indoors, home office",
+    "author": "Karolina Grabowska",
+    "width": 5378,
+    "height": 3585,
+    "file": "stylish-workspace-with-macbook-pro.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4282/people-by-a-banquet-table-full-with-food",
+    "path": "https://kaboompics.com/download/0faef0f22b2106fcfc26f32c639d6e12/medium",
+    "title": "People by a banquet table full with food",
+    "tags": "people, table, food, picnic, eating, meal, dinner, rich, feast, banquet",
+    "author": "Karolina Grabowska",
+    "width": 5176,
+    "height": 3451,
+    "file": "people-by-a-banquet-table-full-with-food.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/19428/golden-bitcoin-coin-on-us-dollars",
+    "path": "https://kaboompics.com/download/0dc0a92485fba088ebee7176474a7cce/medium",
+    "title": "Cryptocurrency Bitcoin coins",
+    "tags": "bitcoin, Cryptocurrency, blockchain, btc, crypto, money, finances, economy, virtual, currency, financial",
+    "author": "Karolina Grabowska",
+    "width": 4179,
+    "height": 6268,
+    "file": "cryptocurrency-bitcoin-coins-2.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/4320/woman-working-on-a-laptop-while-enjoying-a-breakfast-coffee-and-chocolate-in-bed",
+    "path": "https://kaboompics.com/download/18787b5f6eb44da0eeafd9d5670e58f2/medium",
+    "title": "Woman working on a laptop while enjoying a breakfast coffee and chocolate in bed",
+    "tags": "white, Apple, macbook, coffee, work, notebook, laptop, business, bed, chocolate, mac, sheets, notes, hotel",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "woman-working-on-a-laptop-while-enjoying-a-breakfast-coffee-and-chocolate-in-bed.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4015/group-of-people-brainstorming-and-taking-notes",
+    "path": "https://kaboompics.com/download/e7b39ed848cceddc9cdaad5fe520bffe/medium",
+    "title": "Group of people brainstorming and taking notes",
+    "tags": "work, business, design, brainstorming, teamwork, presentation, notes, group, team, meeting, conference, discussion",
+    "author": "Karolina Grabowska",
+    "width": 3476,
+    "height": 5214,
+    "file": "group-of-people-brainstorming-and-taking-notes-3.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/4898/businesswoman-working-at-her-laptop",
+    "path": "https://kaboompics.com/download/704499021ab16e440318c551eb902b0c/medium",
+    "title": "Businesswoman Working at Her Laptop",
+    "tags": "caucasian, person, office, workspace, workplace, computer, table, macbook, work, desk, laptop, typing, working, orange juice, scandi, scandinavian, indoors, businesswoman, home office, busy",
+    "author": "Karolina Grabowska",
+    "width": 5094,
+    "height": 3396,
+    "file": "businesswoman-working-at-her-laptop.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/13248/woman-macbook-laptop-blueberries",
+    "path": "https://kaboompics.com/download/9ead4a6d2d0e928217a6b6c8a3070857/medium",
+    "title": "A woman works on a laptop at home",
+    "tags": "woman, work, laptop, home, office, workspace, workplace, working, business, caucasian, blogger, indoors, busy, at work, notebook, technology, macbook, desk",
+    "author": "Karolina Grabowska",
+    "width": 4480,
+    "height": 6720,
+    "file": "a-woman-works-on-a-laptop-at-home-2.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/19648/finances-us-dollars-and-bitcoins-currency-money",
+    "path": "https://kaboompics.com/download/d1ba418689a3b2932d4a796f9e9684e7/medium",
+    "title": "Finances - US Dollars and Bitcoins - Currency - Money",
+    "tags": "money, finances, dollars, bitcoin, currency, Cryptocurrency",
+    "author": "Karolina Grabowska",
+    "width": 6720,
+    "height": 4480,
+    "file": "finances-us-dollars-and-bitcoins-currency-money-5.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/6653/cup-of-coffee-on-table-in-cafe-iphone-mobile-phone",
+    "path": "https://kaboompics.com/download/dfd5cffdcf411354f111067433ab0ee0/medium",
+    "title": "Cup of coffee on table in cafe",
+    "tags": "interior, tech, technology, coffee, work, working, cafe, cappucino, restaurant, late, indoors",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "cup-of-coffee-on-table-in-cafe.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4909/young-woman-sitting-on-the-sofa-and-working-on-her-laptop",
+    "path": "https://kaboompics.com/download/402544bd7362f175ba76a14421e7b7dc/medium",
+    "title": "Young woman sitting on the sofa and working on her laptop",
+    "tags": "caucasian, girl, person, woman, minimal, sofa, minimalism, room, home, coffee table, white, computer, table, apple macbook, macbook, technology, laptop, typing, living room, working, young, scandi, scandinavian, couch, indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table, white marble, at home, wooden floor, white floor",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "young-woman-sitting-on-the-sofa-and-working-on-her-laptop-3.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5269/man-looking-out-to-sea",
+    "path": "https://kaboompics.com/download/89e0745b1635281582558cd18b71d6d6/medium",
+    "title": "Man looking out to sea",
+    "tags": "adult, caucasian, ocean, person, sea, summer, man, young, lifestyle, male, seaside, vacation, advertising, trip, outdoors, lonely, alone, bulgaria, sunny beach, coastline, Nessebar, backpack, cost, one person, back view, freedom, looking",
+    "author": "Karolina Grabowska",
+    "width": 5445,
+    "height": 3630,
+    "file": "man-looking-out-to-sea.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/13263/a-woman-eats-blueberries-and-works-on-a-laptop",
+    "path": "https://kaboompics.com/download/10108b860530df7feb8b5ecace4f87ec/medium",
+    "title": "A woman works on a laptop at home",
+    "tags": "woman, work, laptop, home, office, workspace, workplace, working, business, caucasian, blogger, indoors, busy, at work, notebook, technology, macbook, desk",
+    "author": "Karolina Grabowska",
+    "width": 4480,
+    "height": 6720,
+    "file": "a-woman-works-on-a-laptop-at-home-3.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/6667/cup-of-coffee-macbook-laptop-glasses-on-table-in-cafe",
+    "path": "https://kaboompics.com/download/ca4c79a985e811921e69dd7c1fb9db42/medium",
+    "title": "Cup of coffee on table in cafe",
+    "tags": "interior, tech, technology, coffee, work, working, cafe, cappucino, restaurant, late, indoors",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "cup-of-coffee-on-table-in-cafe-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5810/woman-notebook-coffee",
+    "path": "https://kaboompics.com/download/81d837ada6fa47820c49f60a93fc6419/medium",
+    "title": "Workplace with laptop on table at home",
+    "tags": "interior, minimal, minimalist, minimalism, room, home, white, office, workspace, workplace, tech, computer, table, technology, work, laptop, scandi, scandinavian, indoors, white laptop, home office",
+    "author": "Karolina Grabowska",
+    "width": 3990,
+    "height": 2660,
+    "file": "workplace-with-laptop-on-table-at-home-3.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4896/businesswoman-working-at-her-laptop",
+    "path": "https://kaboompics.com/download/bfb4401642f2708dd1555c933e29bc2c/medium",
+    "title": "Businesswoman Working at Her Laptop",
+    "tags": "caucasian, person, office, workspace, workplace, computer, table, macbook, work, desk, laptop, typing, working, orange juice, scandi, scandinavian, indoors, businesswoman, home office, busy",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "businesswoman-working-at-her-laptop-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5575/cup-of-coffee-and-an-open-book",
+    "path": "https://kaboompics.com/download/8fcb8094d6b0ec9a308ce8d630dfcd6b/medium",
+    "title": "Cup of Coffee and an Open Book",
+    "tags": "white, nobody, table, coffee, book, cup, relaxing, free time, opened book, cafe, marble, marble table, black coffee",
+    "author": "Karolina Grabowska",
+    "width": 4473,
+    "height": 2982,
+    "file": "cup-of-coffee-and-an-open-book.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4017/woman-taking-notes",
+    "path": "https://kaboompics.com/download/368a641fae11807d27f82900363e53f9/medium",
+    "title": "Group of people brainstorming and taking notes",
+    "tags": "work, business, design, brainstorming, teamwork, presentation, notes, group, team, meeting, conference, discussion",
+    "author": "Karolina Grabowska",
+    "width": 5079,
+    "height": 3386,
+    "file": "group-of-people-brainstorming-and-taking-notes-4.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4916/woman-with-legs-on-the-coffee-table-wearing-converse-sneakers-and-working-on-her-laptop",
+    "path": "https://kaboompics.com/download/f293c0e8fa73dd95bc6266e839a9ccce/medium",
+    "title": "Young woman sitting on the sofa and working on her laptop",
+    "tags": "caucasian, girl, person, woman, minimal, sofa, minimalism, room, home, coffee table, white, computer, table, apple macbook, macbook, technology, laptop, typing, living room, working, young, scandi, scandinavian, couch, indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table, white marble, at home, wooden floor, white floor",
+    "author": "Karolina Grabowska",
+    "width": 5303,
+    "height": 3535,
+    "file": "young-woman-sitting-on-the-sofa-and-working-on-her-laptop-4.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4832/book-fairy-lights",
+    "path": "https://kaboompics.com/download/ebdd80a5f2c99155ec9899026e7c337c/medium",
+    "title": "Making Magic with Fairy Lights",
+    "tags": "free time, decoration, lights, fairy lights, magic, bokeh",
+    "author": "Karolina Grabowska",
+    "width": 5100,
+    "height": 3400,
+    "file": "making-magic-with-fairy-lights.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4317/macbook-an-iphone-a-coffee-a-chocolate-and-a-notebook-in-a-bed",
+    "path": "https://kaboompics.com/download/3fe507ad76fa9e741db3ebfc480ff343/medium",
+    "title": "Woman working on a laptop while enjoying a breakfast coffee and chocolate in bed",
+    "tags": "white, Apple, macbook, coffee, work, notebook, laptop, business, bed, chocolate, mac, sheets, notes, hotel",
+    "author": "Karolina Grabowska",
+    "width": 5407,
+    "height": 3605,
+    "file": "woman-working-on-a-laptop-while-enjoying-a-breakfast-coffee-and-chocolate-in-bed-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4473/woman-drinking-tea-and-reading-book",
+    "path": "https://kaboompics.com/download/47bba18813217d848bac33de5509345d/medium",
+    "title": "Woman drinking tea and reading book",
+    "tags": "female, woman, home, book, tea, reading, free time, pillows, comfortable, cozy, hygge, fruit tea, fairy lights",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "woman-drinking-tea-and-reading-book.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/15897/portrait-of-a-teen-girl",
+    "path": "https://kaboompics.com/download/db7a18cbaa3ebb07081d5524b9ca3c80/medium",
+    "title": "Portrait of a Teen Girl",
+    "tags": "portrait, girl, pretty, caucasian, blonde, blue, eyes, yellow, female, youth, teen, teenager, white",
+    "author": "Karolina Grabowska",
+    "width": 4480,
+    "height": 6720,
+    "file": "portrait-of-a-teen-girl.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/9296/a-woman-works-at-a-desk-with-a-laptop-and-a-cup-of-coffee",
+    "path": "https://kaboompics.com/download/4b12adac0079d3af586b926da156289c/medium",
+    "title": "A woman works at a desk with a laptop and a cup of coffee",
+    "tags": "laptop, macbook, computer, work, study, home office, office, desk, technology, coffee, cappucino, late, workspace, workplace",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "a-woman-works-at-a-desk-with-a-laptop-and-a-cup-of-coffee.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/13646/black-marble-stone-texture-high-resolution-background",
+    "path": "https://kaboompics.com/download/2f7f250f7dfc162f478ea31b9a0b3023/medium",
+    "title": "Stone texture - high resolution background",
+    "tags": "stone, marble, granite, texture, background, flat, wallpaper",
+    "author": "Karolina Grabowska",
+    "width": 4480,
+    "height": 6720,
+    "file": "stone-texture-high-resolution-background.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/7012/everything-you-need-to-work-from-your-bed",
+    "path": "https://kaboompics.com/download/78a5a488c370410bba3705f26d42aa0e/medium",
+    "title": "Everything you need to work from your bed",
+    "tags": "workspace, computer, macbook, iphone, book, phone, mobile, work, laptop, reading, above, bed, cell phone, bedding, bedroom, blogging, flatlay",
+    "author": "Karolina Grabowska",
+    "width": 5350,
+    "height": 3567,
+    "file": "everything-you-need-to-work-from-your-bed-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5809/woman-notebook-coffee",
+    "path": "https://kaboompics.com/download/d6b4130591a3a61dac919f01845544da/medium",
+    "title": "Workplace with laptop on table at home",
+    "tags": "interior, minimal, minimalist, minimalism, room, home, white, office, workspace, workplace, tech, computer, table, technology, work, laptop, scandi, scandinavian, indoors, white laptop, home office",
+    "author": "Karolina Grabowska",
+    "width": 3990,
+    "height": 2660,
+    "file": "workplace-with-laptop-on-table-at-home-4.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/7609/geometric-decoration-on-yellow-background",
+    "path": "https://kaboompics.com/download/ca8ed81222a16495158179598187288a/medium",
+    "title": "Geometric decoration on yellow background",
+    "tags": "yellow, background, texture, geometric",
+    "author": "Karolina Grabowska",
+    "width": 3053,
+    "height": 4580,
+    "file": "geometric-decoration-on-yellow-background.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/4903/stylish-workspace-with-macbook-pro",
+    "path": "https://kaboompics.com/download/ccd2b737116266fe67838d1f015b11c2/medium",
+    "title": "Stylish workspace with Macbook Pro",
+    "tags": "interior, white, office, workspace, workplace, computer, apple macbook, macbook, technology, desk, laptop, scandi, scandinavian, indoors, home office",
+    "author": "Karolina Grabowska",
+    "width": 5287,
+    "height": 3525,
+    "file": "stylish-workspace-with-macbook-pro-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/5927/cocaine-on-a-smartphone-iphone",
+    "path": "https://kaboompics.com/download/86222fc1606dfa8803534267c468b595/medium",
+    "title": "Netflix Drug Lords From Narcos",
+    "tags": "powder, coke, drugs, cocaine, drug, addiction, addict, crime, criminal, narcos, pablo escobar, escobar, netflix, heroin, drug abuse, junkie",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "netflix-drug-lords-from-narcos.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/13647/black-marble-stone-texture-high-resolution-background",
+    "path": "https://kaboompics.com/download/a4411ca899019a5c8a94cf47539356a5/medium",
+    "title": "Stone texture - high resolution background",
+    "tags": "stone, marble, granite, texture, background, flat, wallpaper",
+    "author": "Karolina Grabowska",
+    "width": 6720,
+    "height": 4480,
+    "file": "stone-texture-high-resolution-background-2.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/3925/how-to-use-graphic-design-to-sell-things-explain-things",
+    "path": "https://kaboompics.com/download/6e7cccccb0d17ada16b4b1199b8961ba/medium",
+    "title": "A visit to the bookstore",
+    "tags": "books, bookstore, bookshop, knowledge",
+    "author": "Karolina Grabowska",
+    "width": 5472,
+    "height": 3648,
+    "file": "a-visit-to-the-bookstore.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/3357/books-purple-flowers-and-a-white-cup-on-a-wooden-stool-by-the-bed",
+    "path": "https://kaboompics.com/download/3f610c32315ba4e3ae99f7f2a3dcaa79/medium",
+    "title": "Books and purple flowers on a wooden stool by the bed",
+    "tags": "flower, flora, home, reading, books, bed, plant, design, literature, purple, violet",
+    "author": "Karolina Grabowska",
+    "width": 5382,
+    "height": 3588,
+    "file": "books-and-purple-flowers-on-a-wooden-stool-by-the-bed.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/2171/people-watching-a-presentation-in-a-room",
+    "path": "https://kaboompics.com/download/ed13934d90b03a82e2ede7d8568e57a1/medium",
+    "title": "People watching a presentation in a room",
+    "tags": "people, display, presentation, watching, chairs, study, demonstration, learning, powerpoint",
+    "author": "Karolina Grabowska",
+    "width": 5238,
+    "height": 3492,
+    "file": "people-watching-a-presentation-in-a-room.jpg",
+    "horizontal": true
+  },
+  {
+    "src": "https://kaboompics.com/photo/4780/sweet-buns-with-cream-cheese-inside",
+    "path": "https://kaboompics.com/download/b5cbd63e03df9ab13431051159c1f704/medium",
+    "title": "Sweet buns with cream cheese inside",
+    "tags": "cake, food, delicious, pastry, dessert, cream, baked, cream cheese",
+    "author": "Karolina Grabowska",
+    "width": 2421,
+    "height": 3631,
+    "file": "sweet-buns-with-cream-cheese-inside.jpg",
+    "horizontal": false
+  },
+  {
+    "src": "https://kaboompics.com/photo/18210/laptop-white-flowers-on-marble-table",
+    "path": "https://kaboompics.com/download/1af5e76a739d6a6c51a8a8da16de81bb/medium",
+    "title": "Home Office - Laptop - organizer & cup of coffee",
+    "tags": "homeoffice, telecommuting, workspace, workplace, desk, work, interior, equipment, accessories",
+    "author": "Karolina Grabowska",
+    "width": 6168,
+    "height": 4112,
+    "file": "home-office-laptop-organizer-and-cup-of-coffee.jpg",
+    "horizontal": true
+  }
+]

+ 0 - 817
src/pages/_data/photos.yml

@@ -1,817 +0,0 @@
-- src: https://kaboompics.com/photo/4016/people-taking-notes
-  path: https://kaboompics.com/download/920f3d86e22f6a241b99828c8d61fac5/medium
-  title: Group of people brainstorming and taking notes
-  tags: work, business, design, brainstorming, teamwork, presentation, notes,
-    group, team, meeting, conference, discussion
-  author: Karolina Grabowska
-  width: 3648
-  height: 5472
-  file: group-of-people-brainstorming-and-taking-notes.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/4357/beautiful-blonde-girl-on-the-beach
-  path: https://kaboompics.com/download/f21281df386f391de35cad3a6cc11170/medium
-  title: Beautiful blonde woman relaxing with a can of coke on a tree stump by the
-    beach
-  tags: beach, female, girl, sand, woman, drink, tree, beautiful, pretty, coke,
-    coca-cola, can, stump
-  author: Karolina Grabowska
-  width: 3718
-  height: 2479
-  file: beautiful-blonde-woman-relaxing-with-a-can-of-coke-on-a-tree-stump-by-the-beach.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/2156/brainstorming-session-with-creative-designers
-  path: https://kaboompics.com/download/15aaee824dbc26b89f6ad379eb4c86ef/medium
-  title: Brainstorming session with creative designers
-  tags: people, work, hands, business, design, brainstorming, session, creative,
-    ideas, teamwork, concept, plan, project
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: brainstorming-session-with-creative-designers.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/19633/the-woman-holds-a-cryptocurrency-bitcoin
-  path: https://kaboompics.com/download/d8a1b053f93ff3492c0f7bb8c7c2dddb/medium
-  title: Finances - US Dollars and Bitcoins - Currency - Money
-  tags: money, finances, dollars, bitcoin, currency, Cryptocurrency
-  author: Karolina Grabowska
-  width: 6391
-  height: 4261
-  file: finances-us-dollars-and-bitcoins-currency-money.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/2417/contemporary-black-and-white-home-decor
-  path: https://kaboompics.com/download/ebb5a26ae5a247d02633087399a6a07e/medium
-  title: Contemporary black-and-white home decor
-  tags: interior, sofa, magazines, modern, table, contemporary, cat, pillows, home
-    decor, bookcase, stylish
-  author: Karolina Grabowska
-  width: 3565
-  height: 5347
-  file: contemporary-black-and-white-home-decor.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/4014/woman-holding-a-smartphone
-  path: https://kaboompics.com/download/82daef4c37d5160140951d751569ce0d/medium
-  title: Group of people brainstorming and taking notes
-  tags: work, business, design, brainstorming, teamwork, presentation, notes,
-    group, team, meeting, conference, discussion
-  author: Karolina Grabowska
-  width: 5182
-  height: 3455
-  file: group-of-people-brainstorming-and-taking-notes-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4180/blue-sofa-with-pillows-in-a-designer-living-room-interior
-  path: https://kaboompics.com/download/ec4616f94240f962bc01de80c250b09e/medium
-  title: Blue sofa with pillows in a designer living room interior
-  tags: interior, sofa, pillows, home decor, couch, rug, design, settee
-  author: Karolina Grabowska
-  width: 5135
-  height: 3423
-  file: blue-sofa-with-pillows-in-a-designer-living-room-interior.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5520/home-office-desk-with-macbook-iphone-calendar-watch-organizer
-  path: https://kaboompics.com/download/a78dbe21b476a579d11e7df55dc27782/medium
-  title: Home office desk with Macbook, iPhone, calendar, watch & organizer
-  tags: office, workspace, workplace, macbook, iphone, phone, mobile, work, desk,
-    notebook, laptop, working, watch, organizer, calendar, study, home office,
-    silver watch
-  author: Karolina Grabowska
-  width: 5041
-  height: 3361
-  file: home-office-desk-with-macbook-iphone-calendar-watch-and-organizer.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/3619/woman-writing-in-her-notebook
-  path: https://kaboompics.com/download/88fe208aec7f740d83240ef86a06d395/medium
-  title: Young woman working in a cafe
-  tags: caucasian, female, woman, office, workspace, workplace, computer, macbook,
-    technology, coffee, laptop, working, young, cafe, restaurant, glasses,
-    indoors, businesswoman
-  author: Karolina Grabowska
-  width: 4104
-  height: 2736
-  file: young-woman-working-in-a-cafe.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/7016/everything-you-need-to-work-from-your-bed
-  path: https://kaboompics.com/download/31b2d14bf15e1eb16b14754cae53cf6b/medium
-  title: Everything you need to work from your bed
-  tags: workspace, computer, macbook, iphone, book, phone, mobile, work, laptop,
-    reading, above, bed, cell phone, bedding, bedroom, blogging, flatlay
-  author: Karolina Grabowska
-  width: 5217
-  height: 3568
-  file: everything-you-need-to-work-from-your-bed.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4852/young-smiling-man-using-mobile-phone
-  path: https://kaboompics.com/download/1bf0e8b463b401e0e9fede2afae198e5/medium
-  title: Young Entrepreneur Working from a Modern Cafe
-  tags: interior, workspace, workplace, computer, macbook, laptop, typing, man,
-    working, young, cafe, male, business, restaurant, indoor, casual, designer,
-    busy, handsome, architect, macbook pro, businessman, alone
-  author: Karolina Grabowska
-  width: 5221
-  height: 3481
-  file: young-entrepreneur-working-from-a-modern-cafe.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/19660/the-woman-uses-mobile-phone-writes-a-message
-  path: https://kaboompics.com/download/4770f0a30bec8a09566fef818e8ce070/medium
-  title: Finances - US Dollars and Bitcoins - Currency - Money
-  tags: money, finances, dollars, bitcoin, currency, Cryptocurrency
-  author: Karolina Grabowska
-  width: 6720
-  height: 4480
-  file: finances-us-dollars-and-bitcoins-currency-money-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4695/group-of-people-examining-a-map
-  path: https://kaboompics.com/download/a491502dbf1ed2c793f997d7269234b5/medium
-  title: Group of people sightseeing in the city
-  tags: people, sunny, town, city, street, travel, trip, sightseeing, group, tour,
-    hike, crowd
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: group-of-people-sightseeing-in-the-city.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/7898/color-palette-guide-sample-colors-catalog
-  path: https://kaboompics.com/download/8e433dbe3ebb96628bffc471b605a416/medium
-  title: Color Palette Guide. Sample Colors Catalog.
-  tags: painting, paint, colorful, colors, painter, palette, pantone, multicolor,
-    rgb, cmyk, graphic designer, rainbow, print, swatch
-  author: Karolina Grabowska
-  width: 4316
-  height: 2877
-  file: color-palette-guide-sample-colors-catalog-.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/8956/elegant-home-office-with-golden-accessories
-  path: https://kaboompics.com/download/43268f5181d1c32794cd366aac911d3f/medium
-  title: Elegant home office with golden accessories
-  tags: laptop, workspace, home office, office, work, black desk, macbook,
-    computer, macbook air, screen, mockup, elegant, elegance, black, gold, art,
-    picture, interior, indoor, painting, frame, gold frame, iphone, mobile,
-    phone, tech, technology
-  author: Karolina Grabowska
-  width: 3571
-  height: 5356
-  file: elegant-home-office-with-golden-accessories.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/3283/businesswoman-entrepreneur-working-on-laptop-from-home-office-space
-  path: https://kaboompics.com/download/f99ffdfd4cba04abd23694ab1cca906a/medium
-  title: Stylish workplace with computer at home
-  tags: woman, interior, interior design, sofa, furniture, office, modern, chair,
-    workspace, workplace, lamp, computer, contemporary, macbook, pet, animal,
-    desk, laptop, cat, living room, young, decor, decorations, pillows, couch,
-    macbook air, home office, lounge, desk lamp
-  author: Karolina Grabowska
-  width: 3749
-  height: 2499
-  file: stylish-workplace-with-computer-at-home.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/19644/the-woman-holds-a-cryptocurrency-bitcoin-us-dollars
-  path: https://kaboompics.com/download/9ed5fc25f062fa80719329eb479de71b/medium
-  title: Finances - US Dollars and Bitcoins - Currency - Money
-  tags: money, finances, dollars, bitcoin, currency, Cryptocurrency
-  author: Karolina Grabowska
-  width: 4480
-  height: 6720
-  file: finances-us-dollars-and-bitcoins-currency-money-3.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/4538/woman-writing-on-notebook
-  path: https://kaboompics.com/download/8bff466fb9d7b3f66a718cae09c28dbf/medium
-  title: Pink desk in the home office
-  tags: female, home, office, workspace, workplace, desk, indoor, femine, stylish,
-    home office, wroking
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: pink-desk-in-the-home-office.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4920/young-woman-sitting-on-the-sofa-and-working-on-her-laptop
-  path: https://kaboompics.com/download/d0af473bf330f4f008fda5814adbf31a/medium
-  title: Young woman sitting on the sofa and working on her laptop
-  tags: caucasian, girl, person, woman, minimal, sofa, minimalism, room, home,
-    coffee table, white, computer, table, apple macbook, macbook, technology,
-    laptop, typing, living room, working, young, scandi, scandinavian, couch,
-    indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table,
-    white marble, at home, wooden floor, white floor
-  author: Karolina Grabowska
-  width: 5396
-  height: 3597
-  file: young-woman-sitting-on-the-sofa-and-working-on-her-laptop.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/1916/morning-coffee
-  path: https://kaboompics.com/download/0dbd1b546d3f4b498c6b94027d67d4a3/medium
-  title: Coffee on a table with other items
-  tags: table, coffee, morning, pot, tablet
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: coffee-on-a-table-with-other-items.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4843/man-laptop-mobile-phone
-  path: https://kaboompics.com/download/fc36f69442e7acfda1cbb67f89f33311/medium
-  title: Young Entrepreneur Working from a Modern Cafe
-  tags: interior, workspace, workplace, computer, macbook, laptop, typing, man,
-    working, young, cafe, male, business, restaurant, indoor, casual, designer,
-    busy, handsome, architect, macbook pro, businessman, alone
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: young-entrepreneur-working-from-a-modern-cafe-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4515/soft-photo-of-woman-on-the-bed-with-the-book-and-cup-of-tea-in-hands
-  path: https://kaboompics.com/download/2a481324d8aa41a7190c094ec2505375/medium
-  title: Soft photo of woman on the bed with the book and cup of coffee in hands
-  tags: woman, white, relax, free time, blanket, indoor, bed, cosy, comfortable,
-    cozy, comfy, hygge, soft
-  author: Karolina Grabowska
-  width: 4893
-  height: 3262
-  file: soft-photo-of-woman-on-the-bed-with-the-book-and-cup-of-coffee-in-hands.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5199/fairy-lights-at-the-beach-in-bulgaria
-  path: https://kaboompics.com/download/37956f431c10a9295314c8e75b460bb2/medium
-  title: Fairy lights at the beach in Bulgaria
-  tags: ocean, sea, shore, summer, evening, man, male, Europe, seaside, night,
-    lights, fairy lights, bokeh, blurred, blur, bulgaria, black sea, sunny
-    beach, christmas lights
-  author: Karolina Grabowska
-  width: 5359
-  height: 3573
-  file: fairy-lights-at-the-beach-in-bulgaria.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4085/woman-working-on-laptop-at-home-office
-  path: https://kaboompics.com/download/911b8d07d5b91b97d7d55886c697aa06/medium
-  title: Woman working on laptop at home office
-  tags: woman, office, workspace, workplace, computer, macbook, coffee, work,
-    desk, laptop, cup, businesswoman, home office, busy
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: woman-working-on-laptop-at-home-office.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5793/modern-home-office
-  path: https://kaboompics.com/download/0379987e2884a5ce5c226f3e70e6fdb0/medium
-  title: Modern Home Office
-  tags: interior, interior design, office, chair, workspace, workplace, Apple,
-    tech, computer, table, macbook, technology, wooden desk, notebook, laptop,
-    golden, working, decorations, home decor, calendar, home office, wooden
-    chair, green desk, dark desk, office space, gold accessories, gold
-    decorations, golden accessories, agenda
-  author: Karolina Grabowska
-  width: 4813
-  height: 3209
-  file: modern-home-office.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5046/woman-using-mobile-phone
-  path: https://kaboompics.com/download/95b133364639c0d4dece57a4d34bbb31/medium
-  title: Blond using her laptop at her bedroom
-  tags: caucasian, girl, woman, home, technology, work, working, young, bed, cosy,
-    cozy, comfy, bedroom, blonde, at home, blond, influencer, ombre hair
-  author: Karolina Grabowska
-  width: 5331
-  height: 3554
-  file: blond-using-her-laptop-at-her-bedroom.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/8271/tropical-palm-leaves-floral-pattern-background
-  path: https://kaboompics.com/download/e8879f5be8f5322adfcc042e9559c762/medium
-  title: Tropical palm leaves, floral pattern background
-  tags: summer, background, green, nature, leaf, leaves, pattern, tropical,
-    exotic, palm, botanical, wallpaper, paradise, jungle
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: tropical-palm-leaves-floral-pattern-background.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/8890/woman-read-book-and-drink-coffee
-  path: https://kaboompics.com/download/89cc83e7fb8feb124e6e723e6349fe02/medium
-  title: Woman read book and drink coffee
-  tags: coffee, book, hands, relaxing, reading, free time, opened book, top view,
-    cappucino, late, flat lay
-  author: Karolina Grabowska
-  width: 5260
-  height: 3507
-  file: woman-read-book-and-drink-coffee.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/2223/book-on-the-grass
-  path: https://kaboompics.com/download/b9427ffe5357d30908bba72a9c9c701f/medium
-  title: Book on the grass
-  tags: book, reading, grass, leaf, literature
-  author: Karolina Grabowska
-  width: 5325
-  height: 3550
-  file: book-on-the-grass.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5005/sago-palm
-  path: https://kaboompics.com/download/d18f6ddaa80a7e9ef787aa2565a9a65d/medium
-  title: Colorful Exotic Flowers and Greenery
-  tags: flowers, flora, leaf, leaves, colorful, tropical, greenery, exotic,
-    multicolor
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: colorful-exotic-flowers-and-greenery.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5811/woman-laptop-mobile-phone-notebooks
-  path: https://kaboompics.com/download/f7f2ca1d6101c28a959bb0b34d9381f8/medium
-  title: Workplace with laptop on table at home
-  tags: interior, minimal, minimalist, minimalism, room, home, white, office,
-    workspace, workplace, tech, computer, table, technology, work, laptop,
-    scandi, scandinavian, indoors, white laptop, home office
-  author: Karolina Grabowska
-  width: 3466
-  height: 2311
-  file: workplace-with-laptop-on-table-at-home.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5188/blurred-city-lights-reflected-in-the-water-at-night
-  path: https://kaboompics.com/download/ec33b0094b56d51699edb1d3945040c5/medium
-  title: City lights reflected in the water at night
-  tags: coast, ocean, sea, water, city, reflection, Europe, waterscape, urban,
-    night, lights, bulgaria, black sea, Nessebar, dusk
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: city-lights-reflected-in-the-water-at-night.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/19462/cryptocurrency-bitcoin-coins
-  path: https://kaboompics.com/download/2b755541f04622f2853fb8a8436c517f/medium
-  title: Cryptocurrency Bitcoin coins
-  tags: bitcoin, Cryptocurrency, blockchain, btc, crypto, money, finances,
-    economy, virtual, currency, financial
-  author: Karolina Grabowska
-  width: 6638
-  height: 4425
-  file: cryptocurrency-bitcoin-coins.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/8887/woman-read-book-and-drink-coffee
-  path: https://kaboompics.com/download/9ec53d895e21a920458091ae8009fb5d/medium
-  title: Woman read book and drink coffee
-  tags: coffee, book, hands, relaxing, reading, free time, opened book, top view,
-    cappucino, late, flat lay
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: woman-read-book-and-drink-coffee-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/3760/people-holding-glasses-of-white-wine-making-a-toast
-  path: https://kaboompics.com/download/0ae200fd8ad9c44e2a06424886932370/medium
-  title: Friends at a restaurant drinking wine
-  tags: evening, fun, happy, friends, women, dinner, restaurant, glass, party,
-    wineglass, celebration, clinking, cheers
-  author: Karolina Grabowska
-  width: 5209
-  height: 3473
-  file: friends-at-a-restaurant-drinking-wine.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4383/beautiful-blonde-woman-on-a-wooden-pier-by-the-lake
-  path: https://kaboompics.com/download/78c3777d558f8ec1c5422992e278091f/medium
-  title: Beautiful blonde woman on a wooden pier by the lake
-  tags: female, girl, water, woman, lake, pier, young, wooden, wood, beautiful,
-    pretty, blonde, jetty, attractive
-  author: Karolina Grabowska
-  width: 3859
-  height: 2573
-  file: beautiful-blonde-woman-on-a-wooden-pier-by-the-lake.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/19647/finances-us-dollars-and-bitcoins-currency-money
-  path: https://kaboompics.com/download/c628e8ebf46a952ab0480f7a02ea94d0/medium
-  title: Finances - US Dollars and Bitcoins - Currency - Money
-  tags: money, finances, dollars, bitcoin, currency, Cryptocurrency
-  author: Karolina Grabowska
-  width: 4480
-  height: 6720
-  file: finances-us-dollars-and-bitcoins-currency-money-4.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/1516/white-apple-imac-computer-with-elephant-mousepad
-  path: https://kaboompics.com/download/d672c1eeef13a922f2e9283272ccb0c5/medium
-  title: White Apple iMac computer with elephant mousepad
-  tags: white, iMac, Apple, keyboard, mouse, mac, mousepad, elephant, monitor,
-    Hella Jongerius, Eames Elephant, Vitra
-  author: Karolina Grabowska
-  width: 4029
-  height: 2686
-  file: white-apple-imac-computer-with-elephant-mousepad.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/13265/macbook-laptop-orange-dianthus-carnation-or-clove-pink-flowers-on-desk-kiwano-fruit
-  path: https://kaboompics.com/download/aa71b43ce8d4fd96b8d7c047abcd7c99/medium
-  title: A woman works on a laptop at home
-  tags: woman, work, laptop, home, office, workspace, workplace, working,
-    business, caucasian, blogger, indoors, busy, at work, notebook, technology,
-    macbook, desk
-  author: Karolina Grabowska
-  width: 4480
-  height: 6720
-  file: a-woman-works-on-a-laptop-at-home.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/5823/iphone-laptop-coffee-in-chemex
-  path: https://kaboompics.com/download/ae2d7640268a1a4ba0d601aec047e88b/medium
-  title: Workplace with laptop on table at home
-  tags: interior, minimal, minimalist, minimalism, room, home, white, office,
-    workspace, workplace, tech, computer, table, technology, work, laptop,
-    scandi, scandinavian, indoors, white laptop, home office
-  author: Karolina Grabowska
-  width: 3851
-  height: 2567
-  file: workplace-with-laptop-on-table-at-home-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5482/macbook-iphone-notebook-cheese-cake-and-cup-of-coffee
-  path: https://kaboompics.com/download/934d49e018d8ce5e0c648a002aeffcff/medium
-  title: "Working in a restaurant: Macbook, Cheese Cake and Cup of Coffee"
-  tags: workspace, workplace, tech, computer, macbook, technology, coffee, mobile,
-    work, desk, wooden desk, laptop, fruits, cup, cake, working, cafe, business,
-    indoor, wooden table, cheese cake, onterior
-  author: Karolina Grabowska
-  width: 4104
-  height: 2736
-  file: working-in-a-restaurant-macbook-cheese-cake-and-cup-of-coffee.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4908/young-woman-sitting-on-the-sofa-and-working-on-her-laptop
-  path: https://kaboompics.com/download/57d47e394029c31c944ead8fe1aa152e/medium
-  title: Young woman sitting on the sofa and working on her laptop
-  tags: caucasian, girl, person, woman, minimal, sofa, minimalism, room, home,
-    coffee table, white, computer, table, apple macbook, macbook, technology,
-    laptop, typing, living room, working, young, scandi, scandinavian, couch,
-    indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table,
-    white marble, at home, wooden floor, white floor
-  author: Karolina Grabowska
-  width: 4003
-  height: 2669
-  file: young-woman-sitting-on-the-sofa-and-working-on-her-laptop-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/2148/brainstorming-session-with-creative-designers
-  path: https://kaboompics.com/download/063921382ab30ea474bb999104ff486f/medium
-  title: Brainstorming session with creative designers
-  tags: people, work, hands, business, design, brainstorming, session, creative,
-    ideas, teamwork, concept, plan, project
-  author: Karolina Grabowska
-  width: 5011
-  height: 3341
-  file: brainstorming-session-with-creative-designers-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4464/woman-drinking-hot-tea-in-her-home-office
-  path: https://kaboompics.com/download/11740715ba428deb16eed24a9315215d/medium
-  title: Woman drinking hot tea in her home office
-  tags: caucasian, woman, computer, macbook, laptop, tea, hot, drink, young, warm,
-    autumn, fall, winter, mug, comfortable, cozy, home office, hygge, sweater,
-    wool
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: woman-drinking-hot-tea-in-her-home-office.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4906/stylish-workspace-with-macbook-pro
-  path: https://kaboompics.com/download/5664af9b19cba7fd7b0f7f8265318631/medium
-  title: Stylish workspace with Macbook Pro
-  tags: interior, white, office, workspace, workplace, computer, apple macbook,
-    macbook, technology, desk, laptop, scandi, scandinavian, indoors, home
-    office
-  author: Karolina Grabowska
-  width: 5378
-  height: 3585
-  file: stylish-workspace-with-macbook-pro.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4282/people-by-a-banquet-table-full-with-food
-  path: https://kaboompics.com/download/0faef0f22b2106fcfc26f32c639d6e12/medium
-  title: People by a banquet table full with food
-  tags: people, table, food, picnic, eating, meal, dinner, rich, feast, banquet
-  author: Karolina Grabowska
-  width: 5176
-  height: 3451
-  file: people-by-a-banquet-table-full-with-food.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/19428/golden-bitcoin-coin-on-us-dollars
-  path: https://kaboompics.com/download/0dc0a92485fba088ebee7176474a7cce/medium
-  title: Cryptocurrency Bitcoin coins
-  tags: bitcoin, Cryptocurrency, blockchain, btc, crypto, money, finances,
-    economy, virtual, currency, financial
-  author: Karolina Grabowska
-  width: 4179
-  height: 6268
-  file: cryptocurrency-bitcoin-coins-2.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/4320/woman-working-on-a-laptop-while-enjoying-a-breakfast-coffee-and-chocolate-in-bed
-  path: https://kaboompics.com/download/18787b5f6eb44da0eeafd9d5670e58f2/medium
-  title: Woman working on a laptop while enjoying a breakfast coffee and chocolate
-    in bed
-  tags: white, Apple, macbook, coffee, work, notebook, laptop, business, bed,
-    chocolate, mac, sheets, notes, hotel
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: woman-working-on-a-laptop-while-enjoying-a-breakfast-coffee-and-chocolate-in-bed.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4015/group-of-people-brainstorming-and-taking-notes
-  path: https://kaboompics.com/download/e7b39ed848cceddc9cdaad5fe520bffe/medium
-  title: Group of people brainstorming and taking notes
-  tags: work, business, design, brainstorming, teamwork, presentation, notes,
-    group, team, meeting, conference, discussion
-  author: Karolina Grabowska
-  width: 3476
-  height: 5214
-  file: group-of-people-brainstorming-and-taking-notes-3.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/4898/businesswoman-working-at-her-laptop
-  path: https://kaboompics.com/download/704499021ab16e440318c551eb902b0c/medium
-  title: Businesswoman Working at Her Laptop
-  tags: caucasian, person, office, workspace, workplace, computer, table, macbook,
-    work, desk, laptop, typing, working, orange juice, scandi, scandinavian,
-    indoors, businesswoman, home office, busy
-  author: Karolina Grabowska
-  width: 5094
-  height: 3396
-  file: businesswoman-working-at-her-laptop.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/13248/woman-macbook-laptop-blueberries
-  path: https://kaboompics.com/download/9ead4a6d2d0e928217a6b6c8a3070857/medium
-  title: A woman works on a laptop at home
-  tags: woman, work, laptop, home, office, workspace, workplace, working,
-    business, caucasian, blogger, indoors, busy, at work, notebook, technology,
-    macbook, desk
-  author: Karolina Grabowska
-  width: 4480
-  height: 6720
-  file: a-woman-works-on-a-laptop-at-home-2.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/19648/finances-us-dollars-and-bitcoins-currency-money
-  path: https://kaboompics.com/download/d1ba418689a3b2932d4a796f9e9684e7/medium
-  title: Finances - US Dollars and Bitcoins - Currency - Money
-  tags: money, finances, dollars, bitcoin, currency, Cryptocurrency
-  author: Karolina Grabowska
-  width: 6720
-  height: 4480
-  file: finances-us-dollars-and-bitcoins-currency-money-5.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/6653/cup-of-coffee-on-table-in-cafe-iphone-mobile-phone
-  path: https://kaboompics.com/download/dfd5cffdcf411354f111067433ab0ee0/medium
-  title: Cup of coffee on table in cafe
-  tags: interior, tech, technology, coffee, work, working, cafe, cappucino,
-    restaurant, late, indoors
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: cup-of-coffee-on-table-in-cafe.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4909/young-woman-sitting-on-the-sofa-and-working-on-her-laptop
-  path: https://kaboompics.com/download/402544bd7362f175ba76a14421e7b7dc/medium
-  title: Young woman sitting on the sofa and working on her laptop
-  tags: caucasian, girl, person, woman, minimal, sofa, minimalism, room, home,
-    coffee table, white, computer, table, apple macbook, macbook, technology,
-    laptop, typing, living room, working, young, scandi, scandinavian, couch,
-    indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table,
-    white marble, at home, wooden floor, white floor
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: young-woman-sitting-on-the-sofa-and-working-on-her-laptop-3.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5269/man-looking-out-to-sea
-  path: https://kaboompics.com/download/89e0745b1635281582558cd18b71d6d6/medium
-  title: Man looking out to sea
-  tags: adult, caucasian, ocean, person, sea, summer, man, young, lifestyle, male,
-    seaside, vacation, advertising, trip, outdoors, lonely, alone, bulgaria,
-    sunny beach, coastline, Nessebar, backpack, cost, one person, back view,
-    freedom, looking
-  author: Karolina Grabowska
-  width: 5445
-  height: 3630
-  file: man-looking-out-to-sea.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/13263/a-woman-eats-blueberries-and-works-on-a-laptop
-  path: https://kaboompics.com/download/10108b860530df7feb8b5ecace4f87ec/medium
-  title: A woman works on a laptop at home
-  tags: woman, work, laptop, home, office, workspace, workplace, working,
-    business, caucasian, blogger, indoors, busy, at work, notebook, technology,
-    macbook, desk
-  author: Karolina Grabowska
-  width: 4480
-  height: 6720
-  file: a-woman-works-on-a-laptop-at-home-3.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/6667/cup-of-coffee-macbook-laptop-glasses-on-table-in-cafe
-  path: https://kaboompics.com/download/ca4c79a985e811921e69dd7c1fb9db42/medium
-  title: Cup of coffee on table in cafe
-  tags: interior, tech, technology, coffee, work, working, cafe, cappucino,
-    restaurant, late, indoors
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: cup-of-coffee-on-table-in-cafe-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5810/woman-notebook-coffee
-  path: https://kaboompics.com/download/81d837ada6fa47820c49f60a93fc6419/medium
-  title: Workplace with laptop on table at home
-  tags: interior, minimal, minimalist, minimalism, room, home, white, office,
-    workspace, workplace, tech, computer, table, technology, work, laptop,
-    scandi, scandinavian, indoors, white laptop, home office
-  author: Karolina Grabowska
-  width: 3990
-  height: 2660
-  file: workplace-with-laptop-on-table-at-home-3.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4896/businesswoman-working-at-her-laptop
-  path: https://kaboompics.com/download/bfb4401642f2708dd1555c933e29bc2c/medium
-  title: Businesswoman Working at Her Laptop
-  tags: caucasian, person, office, workspace, workplace, computer, table, macbook,
-    work, desk, laptop, typing, working, orange juice, scandi, scandinavian,
-    indoors, businesswoman, home office, busy
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: businesswoman-working-at-her-laptop-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5575/cup-of-coffee-and-an-open-book
-  path: https://kaboompics.com/download/8fcb8094d6b0ec9a308ce8d630dfcd6b/medium
-  title: Cup of Coffee and an Open Book
-  tags: white, nobody, table, coffee, book, cup, relaxing, free time, opened book,
-    cafe, marble, marble table, black coffee
-  author: Karolina Grabowska
-  width: 4473
-  height: 2982
-  file: cup-of-coffee-and-an-open-book.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4017/woman-taking-notes
-  path: https://kaboompics.com/download/368a641fae11807d27f82900363e53f9/medium
-  title: Group of people brainstorming and taking notes
-  tags: work, business, design, brainstorming, teamwork, presentation, notes,
-    group, team, meeting, conference, discussion
-  author: Karolina Grabowska
-  width: 5079
-  height: 3386
-  file: group-of-people-brainstorming-and-taking-notes-4.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4916/woman-with-legs-on-the-coffee-table-wearing-converse-sneakers-and-working-on-her-laptop
-  path: https://kaboompics.com/download/f293c0e8fa73dd95bc6266e839a9ccce/medium
-  title: Young woman sitting on the sofa and working on her laptop
-  tags: caucasian, girl, person, woman, minimal, sofa, minimalism, room, home,
-    coffee table, white, computer, table, apple macbook, macbook, technology,
-    laptop, typing, living room, working, young, scandi, scandinavian, couch,
-    indoors, businesswoman, blonde, macbook pro, marble, blogging, marble table,
-    white marble, at home, wooden floor, white floor
-  author: Karolina Grabowska
-  width: 5303
-  height: 3535
-  file: young-woman-sitting-on-the-sofa-and-working-on-her-laptop-4.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4832/book-fairy-lights
-  path: https://kaboompics.com/download/ebdd80a5f2c99155ec9899026e7c337c/medium
-  title: Making Magic with Fairy Lights
-  tags: free time, decoration, lights, fairy lights, magic, bokeh
-  author: Karolina Grabowska
-  width: 5100
-  height: 3400
-  file: making-magic-with-fairy-lights.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4317/macbook-an-iphone-a-coffee-a-chocolate-and-a-notebook-in-a-bed
-  path: https://kaboompics.com/download/3fe507ad76fa9e741db3ebfc480ff343/medium
-  title: Woman working on a laptop while enjoying a breakfast coffee and chocolate
-    in bed
-  tags: white, Apple, macbook, coffee, work, notebook, laptop, business, bed,
-    chocolate, mac, sheets, notes, hotel
-  author: Karolina Grabowska
-  width: 5407
-  height: 3605
-  file: woman-working-on-a-laptop-while-enjoying-a-breakfast-coffee-and-chocolate-in-bed-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4473/woman-drinking-tea-and-reading-book
-  path: https://kaboompics.com/download/47bba18813217d848bac33de5509345d/medium
-  title: Woman drinking tea and reading book
-  tags: female, woman, home, book, tea, reading, free time, pillows, comfortable,
-    cozy, hygge, fruit tea, fairy lights
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: woman-drinking-tea-and-reading-book.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/15897/portrait-of-a-teen-girl
-  path: https://kaboompics.com/download/db7a18cbaa3ebb07081d5524b9ca3c80/medium
-  title: Portrait of a Teen Girl
-  tags: portrait, girl, pretty, caucasian, blonde, blue, eyes, yellow, female,
-    youth, teen, teenager, white
-  author: Karolina Grabowska
-  width: 4480
-  height: 6720
-  file: portrait-of-a-teen-girl.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/9296/a-woman-works-at-a-desk-with-a-laptop-and-a-cup-of-coffee
-  path: https://kaboompics.com/download/4b12adac0079d3af586b926da156289c/medium
-  title: A woman works at a desk with a laptop and a cup of coffee
-  tags: laptop, macbook, computer, work, study, home office, office, desk,
-    technology, coffee, cappucino, late, workspace, workplace
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: a-woman-works-at-a-desk-with-a-laptop-and-a-cup-of-coffee.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/13646/black-marble-stone-texture-high-resolution-background
-  path: https://kaboompics.com/download/2f7f250f7dfc162f478ea31b9a0b3023/medium
-  title: Stone texture - high resolution background
-  tags: stone, marble, granite, texture, background, flat, wallpaper
-  author: Karolina Grabowska
-  width: 4480
-  height: 6720
-  file: stone-texture-high-resolution-background.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/7012/everything-you-need-to-work-from-your-bed
-  path: https://kaboompics.com/download/78a5a488c370410bba3705f26d42aa0e/medium
-  title: Everything you need to work from your bed
-  tags: workspace, computer, macbook, iphone, book, phone, mobile, work, laptop,
-    reading, above, bed, cell phone, bedding, bedroom, blogging, flatlay
-  author: Karolina Grabowska
-  width: 5350
-  height: 3567
-  file: everything-you-need-to-work-from-your-bed-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5809/woman-notebook-coffee
-  path: https://kaboompics.com/download/d6b4130591a3a61dac919f01845544da/medium
-  title: Workplace with laptop on table at home
-  tags: interior, minimal, minimalist, minimalism, room, home, white, office,
-    workspace, workplace, tech, computer, table, technology, work, laptop,
-    scandi, scandinavian, indoors, white laptop, home office
-  author: Karolina Grabowska
-  width: 3990
-  height: 2660
-  file: workplace-with-laptop-on-table-at-home-4.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/7609/geometric-decoration-on-yellow-background
-  path: https://kaboompics.com/download/ca8ed81222a16495158179598187288a/medium
-  title: Geometric decoration on yellow background
-  tags: yellow, background, texture, geometric
-  author: Karolina Grabowska
-  width: 3053
-  height: 4580
-  file: geometric-decoration-on-yellow-background.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/4903/stylish-workspace-with-macbook-pro
-  path: https://kaboompics.com/download/ccd2b737116266fe67838d1f015b11c2/medium
-  title: Stylish workspace with Macbook Pro
-  tags: interior, white, office, workspace, workplace, computer, apple macbook,
-    macbook, technology, desk, laptop, scandi, scandinavian, indoors, home
-    office
-  author: Karolina Grabowska
-  width: 5287
-  height: 3525
-  file: stylish-workspace-with-macbook-pro-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/5927/cocaine-on-a-smartphone-iphone
-  path: https://kaboompics.com/download/86222fc1606dfa8803534267c468b595/medium
-  title: Netflix Drug Lords From Narcos
-  tags: powder, coke, drugs, cocaine, drug, addiction, addict, crime, criminal,
-    narcos, pablo escobar, escobar, netflix, heroin, drug abuse, junkie
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: netflix-drug-lords-from-narcos.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/13647/black-marble-stone-texture-high-resolution-background
-  path: https://kaboompics.com/download/a4411ca899019a5c8a94cf47539356a5/medium
-  title: Stone texture - high resolution background
-  tags: stone, marble, granite, texture, background, flat, wallpaper
-  author: Karolina Grabowska
-  width: 6720
-  height: 4480
-  file: stone-texture-high-resolution-background-2.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/3925/how-to-use-graphic-design-to-sell-things-explain-things
-  path: https://kaboompics.com/download/6e7cccccb0d17ada16b4b1199b8961ba/medium
-  title: A visit to the bookstore
-  tags: books, bookstore, bookshop, knowledge
-  author: Karolina Grabowska
-  width: 5472
-  height: 3648
-  file: a-visit-to-the-bookstore.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/3357/books-purple-flowers-and-a-white-cup-on-a-wooden-stool-by-the-bed
-  path: https://kaboompics.com/download/3f610c32315ba4e3ae99f7f2a3dcaa79/medium
-  title: Books and purple flowers on a wooden stool by the bed
-  tags: flower, flora, home, reading, books, bed, plant, design, literature,
-    purple, violet
-  author: Karolina Grabowska
-  width: 5382
-  height: 3588
-  file: books-and-purple-flowers-on-a-wooden-stool-by-the-bed.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/2171/people-watching-a-presentation-in-a-room
-  path: https://kaboompics.com/download/ed13934d90b03a82e2ede7d8568e57a1/medium
-  title: People watching a presentation in a room
-  tags: people, display, presentation, watching, chairs, study, demonstration,
-    learning, powerpoint
-  author: Karolina Grabowska
-  width: 5238
-  height: 3492
-  file: people-watching-a-presentation-in-a-room.jpg
-  horizontal: true
-- src: https://kaboompics.com/photo/4780/sweet-buns-with-cream-cheese-inside
-  path: https://kaboompics.com/download/b5cbd63e03df9ab13431051159c1f704/medium
-  title: Sweet buns with cream cheese inside
-  tags: cake, food, delicious, pastry, dessert, cream, baked, cream cheese
-  author: Karolina Grabowska
-  width: 2421
-  height: 3631
-  file: sweet-buns-with-cream-cheese-inside.jpg
-  horizontal: false
-- src: https://kaboompics.com/photo/18210/laptop-white-flowers-on-marble-table
-  path: https://kaboompics.com/download/1af5e76a739d6a6c51a8a8da16de81bb/medium
-  title: Home Office - Laptop - organizer & cup of coffee
-  tags: homeoffice, telecommuting, workspace, workplace, desk, work, interior,
-    equipment, accessories
-  author: Karolina Grabowska
-  width: 6168
-  height: 4112
-  file: home-office-laptop-organizer-and-cup-of-coffee.jpg
-  horizontal: true

+ 54 - 0
src/pages/_data/products.json

@@ -0,0 +1,54 @@
+[
+  {
+    "image": "product-1.jpg",
+    "name": "Container for a Fanta"
+  },
+  {
+    "image": "product-2.jpg",
+    "name": "Strange sunglasses"
+  },
+  {
+    "image": "product-3.jpg",
+    "name": "Pen Pineapple Apple Pen"
+  },
+  {
+    "image": "product-4.jpg",
+    "name": "Binoculars"
+  },
+  {
+    "image": "product-5.jpg",
+    "name": "Magical notebook"
+  },
+  {
+    "image": "product-6.jpg",
+    "name": "Dragonfly eyes"
+  },
+  {
+    "image": "product-7.jpg",
+    "name": "Fireman's pipe"
+  },
+  {
+    "image": "product-8.jpg",
+    "name": "Garden shears"
+  },
+  {
+    "image": "product-9.jpg",
+    "name": "Ironman wallet"
+  },
+  {
+    "image": "product-10.jpg",
+    "name": "Blue notebook"
+  },
+  {
+    "image": "product-11.jpg",
+    "name": "Morning alarm clock"
+  },
+  {
+    "image": "product-12.jpg",
+    "name": "Spy camera"
+  },
+  {
+    "image": "product-13.jpg",
+    "name": "Housefly"
+  }
+]

+ 0 - 38
src/pages/_data/products.yml

@@ -1,38 +0,0 @@
-- image: product-1.jpg
-  name: Container for a Fanta
-
-- image: product-2.jpg
-  name: Strange sunglasses
-
-- image: product-3.jpg
-  name: Pen Pineapple Apple Pen
-
-- image: product-4.jpg
-  name: Binoculars
-
-- image: product-5.jpg
-  name: Magical notebook
-
-- image: product-6.jpg
-  name: Dragonfly eyes
-
-- image: product-7.jpg
-  name: Fireman's pipe
-
-- image: product-8.jpg
-  name: Garden shears
-
-- image: product-9.jpg
-  name: Ironman wallet
-
-- image: product-10.jpg
-  name: Blue notebook
-
-- image: product-11.jpg
-  name: Morning alarm clock
-
-- image: product-12.jpg
-  name: Spy camera
-
-- image: product-13.jpg
-  name: Housefly

+ 58 - 0
src/pages/_data/projects.json

@@ -0,0 +1,58 @@
+[
+  {
+    "url": "https://dribbble.com/shots/14553706-Food-Deliver-UI-dashboards",
+    "title": "Food Deliver UI dashboards",
+    "author-image": "https://cdn.dribbble.com/users/844826/avatars/small/b96e830c35d73d11bf250b05fb60050e.jpg?1442830990",
+    "author": "Spline.One",
+    "image": "https://cdn.dribbble.com/users/844826/screenshots/14553706/media/2be9a4847b939e02702648d058cf2df8.png",
+    "description": "Huge Kit of Blocks, UI Cards and Templates in various categories will help you create your project as quickly as possible. UI Kit has 3 versions in the most popular apps."
+  },
+  {
+    "url": "https://dribbble.com/shots/14554233--Cooking-Recipe-App-Concept",
+    "title": "Cooking Recipe App Concept",
+    "author-image": "https://cdn.dribbble.com/users/427857/avatars/small/3ea3693b4fbe490d221bc201cc03e50f.png?1584370453",
+    "author": "Tran Mau Tri Tam",
+    "image": "https://cdn.dribbble.com/users/427857/screenshots/14554233/media/bfdefda7666d518b87c4cc2cd36b405a.png",
+    "description": "A clean cooking recipe app concept I've made. Hope you guys like it."
+  },
+  {
+    "url": "https://dribbble.com/shots/14547977-Projects-Dashboards",
+    "title": "Projects Dashboards",
+    "author-image": "https://cdn.dribbble.com/users/844826/avatars/small/b96e830c35d73d11bf250b05fb60050e.jpg?1442830990",
+    "author": "Spline.One",
+    "image": "https://cdn.dribbble.com/users/844826/screenshots/14547977/media/e7749bd1b09d9415b8dc265a7dbe81f6.png",
+    "description": "Huge Kit of Blocks, UI Cards and Templates in various categories will help you create your project as quickly as possible. UI Kit has 3 versions in the most popular apps."
+  },
+  {
+    "url": "https://dribbble.com/shots/14527816-Julia-Skin-Care",
+    "title": "Julia - Skin Care",
+    "author-image": "https://cdn.dribbble.com/users/725819/avatars/small/ca47b4633b71eb8a063d8cc15e7ec297.png?1597232180",
+    "author": "Ana Dulhiiér",
+    "image": "https://cdn.dribbble.com/users/725819/screenshots/14527816/media/71d345a350117a84abd8ecce1fe81237.png",
+    "description": "This is an elegant Skin Care Dietary Supplement for women who want to feel confident and fresh without annoying pigmentation. \"Julia\" is all about beauty. Nothing make a woman more beautiful than the belief that she is beautiful."
+  },
+  {
+    "url": "https://dribbble.com/shots/14561684-Commerce-Dashboards",
+    "title": "Commerce Dashboards",
+    "author-image": "https://cdn.dribbble.com/users/844826/avatars/small/b96e830c35d73d11bf250b05fb60050e.jpg?1442830990",
+    "author": "Spline.One",
+    "image": "https://cdn.dribbble.com/users/844826/screenshots/14561684/media/0a7329583fd3af441a9322186694bc9b.png",
+    "description": "Huge Kit of Blocks, UI Cards and Templates in various categories will help you create your project as quickly as possible. UI Kit has 3 versions in the most popular apps."
+  },
+  {
+    "url": "https://dribbble.com/shots/14551190-OVOU-Smart-Business-Card",
+    "title": "OVOU Smart Business Card",
+    "author-image": "https://cdn.dribbble.com/users/303174/avatars/small/968c95983cca46a12b05bba7339a5d4b.jpg?1570021277",
+    "author": "Basov Design",
+    "image": "https://cdn.dribbble.com/users/303174/screenshots/14551190/media/e4b66de9a00d4439ef83cf65f721b875.jpg",
+    "description": "OVOU Smart Business Card is Here. You are more than a phone number on a piece of paper. Instantly connect, be remembered, and let people learn more about you by using OVOU Card."
+  },
+  {
+    "url": "https://dribbble.com/shots/14569482-Recruitment-Agency-Website",
+    "title": "Recruitment Agency Website",
+    "author-image": "https://cdn.dribbble.com/users/693667/avatars/small/dd37d60eba8f0d7ffb3e4c940abdab79.jpg?1498665941",
+    "author": "Rafal Cyrnek",
+    "image": "https://cdn.dribbble.com/users/693667/screenshots/14569482/media/227d5e11fecc261f8bb15ae76ce8a0ae.png",
+    "description": "Following my yesterday's upload, I want to share with you a few more screens of the app I've been working on"
+  }
+]

+ 0 - 50
src/pages/_data/projects.yml

@@ -1,50 +0,0 @@
-- url: https://dribbble.com/shots/14553706-Food-Deliver-UI-dashboards
-  title: Food Deliver UI dashboards
-  author-image: https://cdn.dribbble.com/users/844826/avatars/small/b96e830c35d73d11bf250b05fb60050e.jpg?1442830990
-  author: Spline.One
-  image: https://cdn.dribbble.com/users/844826/screenshots/14553706/media/2be9a4847b939e02702648d058cf2df8.png
-  description: Huge Kit of Blocks, UI Cards and Templates in various categories will help you create your project as quickly as possible. UI Kit has 3 versions in the most popular apps.
-
-- url: https://dribbble.com/shots/14554233--Cooking-Recipe-App-Concept
-  title: Cooking Recipe App Concept
-  author-image: https://cdn.dribbble.com/users/427857/avatars/small/3ea3693b4fbe490d221bc201cc03e50f.png?1584370453
-  author: Tran Mau Tri Tam
-  image: https://cdn.dribbble.com/users/427857/screenshots/14554233/media/bfdefda7666d518b87c4cc2cd36b405a.png
-  description: A clean cooking recipe app concept I've made. Hope you guys like it.
-
-- url: https://dribbble.com/shots/14547977-Projects-Dashboards
-  title: Projects Dashboards
-  author-image: https://cdn.dribbble.com/users/844826/avatars/small/b96e830c35d73d11bf250b05fb60050e.jpg?1442830990
-  author: Spline.One
-  image: https://cdn.dribbble.com/users/844826/screenshots/14547977/media/e7749bd1b09d9415b8dc265a7dbe81f6.png
-  description: Huge Kit of Blocks, UI Cards and Templates in various categories will help you create your project as quickly as possible. UI Kit has 3 versions in the most popular apps.
-
-- url: https://dribbble.com/shots/14527816-Julia-Skin-Care
-  title: Julia - Skin Care
-  author-image: https://cdn.dribbble.com/users/725819/avatars/small/ca47b4633b71eb8a063d8cc15e7ec297.png?1597232180
-  author: Ana Dulhiiér
-  image: https://cdn.dribbble.com/users/725819/screenshots/14527816/media/71d345a350117a84abd8ecce1fe81237.png
-  description: 'This is an elegant Skin Care Dietary Supplement for women who want to feel confident and fresh without annoying pigmentation. "Julia" is all about beauty. Nothing make a woman more beautiful than the belief that she is beautiful.'
-
-- url: https://dribbble.com/shots/14561684-Commerce-Dashboards
-  title: Commerce Dashboards
-  author-image: https://cdn.dribbble.com/users/844826/avatars/small/b96e830c35d73d11bf250b05fb60050e.jpg?1442830990
-  author: Spline.One
-  image: https://cdn.dribbble.com/users/844826/screenshots/14561684/media/0a7329583fd3af441a9322186694bc9b.png
-  description: Huge Kit of Blocks, UI Cards and Templates in various categories will help you create your project as quickly as possible. UI Kit has 3 versions in the most popular apps.
-
-- url: https://dribbble.com/shots/14551190-OVOU-Smart-Business-Card
-  title: OVOU Smart Business Card
-  author-image: https://cdn.dribbble.com/users/303174/avatars/small/968c95983cca46a12b05bba7339a5d4b.jpg?1570021277
-  author: Basov Design
-  image: https://cdn.dribbble.com/users/303174/screenshots/14551190/media/e4b66de9a00d4439ef83cf65f721b875.jpg
-  description: OVOU Smart Business Card is Here. You are more than a phone number on a piece of paper. Instantly connect, be remembered, and let people learn more about you by using OVOU Card.
-
-- url: https://dribbble.com/shots/14569482-Recruitment-Agency-Website
-  title: Recruitment Agency Website
-  author-image: https://cdn.dribbble.com/users/693667/avatars/small/dd37d60eba8f0d7ffb3e4c940abdab79.jpg?1498665941
-  author: Rafal Cyrnek
-  image: https://cdn.dribbble.com/users/693667/screenshots/14569482/media/227d5e11fecc261f8bb15ae76ce8a0ae.png
-  description: Following my yesterday's upload, I want to share with you a few more screens of the app I've been working on
-
-

+ 50 - 0
src/pages/_data/real-estate.json

@@ -0,0 +1,50 @@
+[
+  {
+    "name": "Cozy Cottage",
+    "address": "123 Main Street",
+    "baths": 2,
+    "bedrooms": 3,
+    "image": "photo-1558036117-15d82a90b9b1.jpg",
+    "price": "$250,000"
+  },
+  {
+    "name": "Modern Townhouse",
+    "address": "456 Elm Avenue",
+    "baths": 3,
+    "bedrooms": 4,
+    "image": "photo-1494526585095-c41746248156.jpg",
+    "price": "$450,000"
+  },
+  {
+    "name": "Spacious Villa",
+    "address": "789 Oak Drive",
+    "baths": 5,
+    "bedrooms": 6,
+    "image": "photo-1512917774080-9991f1c4c750.jpg",
+    "price": "$1,200,000"
+  },
+  {
+    "name": "Rustic Farmhouse",
+    "address": "321 Pine Lane",
+    "baths": 2,
+    "bedrooms": 2,
+    "image": "photo-1564013799919-ab600027ffc6.jpg",
+    "price": "$350,000"
+  },
+  {
+    "name": "Beachfront Condo",
+    "address": "567 Sandy Beach Road",
+    "baths": 2,
+    "bedrooms": 1,
+    "image": "photo-1580587771525-78b9dba3b914.jpg",
+    "price": "$500,000"
+  },
+  {
+    "name": "Luxury Penthouse",
+    "address": "890 Highrise Avenue",
+    "baths": 4,
+    "bedrooms": 3,
+    "image": "photo-1592595896551-12b371d546d5.jpg",
+    "price": "$2,000,000"
+  }
+]

+ 0 - 43
src/pages/_data/real-estate.yml

@@ -1,43 +0,0 @@
-
-
-- name: Cozy Cottage
-  address: 123 Main Street
-  baths: 2
-  bedrooms: 3
-  image: photo-1558036117-15d82a90b9b1.jpg
-  price: $250,000
-
-- name: Modern Townhouse
-  address: 456 Elm Avenue
-  baths: 3
-  bedrooms: 4
-  image: photo-1494526585095-c41746248156.jpg
-  price: $450,000
-
-- name: Spacious Villa
-  address: 789 Oak Drive
-  baths: 5
-  bedrooms: 6
-  image: photo-1512917774080-9991f1c4c750.jpg
-  price: $1,200,000
-
-- name: Rustic Farmhouse
-  address: 321 Pine Lane
-  baths: 2
-  bedrooms: 2
-  image: photo-1564013799919-ab600027ffc6.jpg
-  price: $350,000
-
-- name: Beachfront Condo
-  address: 567 Sandy Beach Road
-  baths: 2
-  bedrooms: 1
-  image: photo-1580587771525-78b9dba3b914.jpg
-  price: $500,000
-
-- name: Luxury Penthouse
-  address: 890 Highrise Avenue
-  baths: 4
-  bedrooms: 3
-  image: photo-1592595896551-12b371d546d5.jpg
-  price: $2,000,000

+ 137 - 0
src/pages/_data/rollercoasters.json

@@ -0,0 +1,137 @@
+[
+  {
+    "name": "Steel Vengeance",
+    "diff": 0,
+    "city": "Cedar Point, United States",
+    "type": "RMC Hybrid",
+    "score": "100,0%",
+    "ratings": 25,
+    "tops": 15
+  },
+  {
+    "name": "Fury 325",
+    "diff": 0,
+    "city": "Carowinds, United States",
+    "type": "B&M Giga, Hyper, Steel",
+    "score": "99,3%",
+    "ratings": 21,
+    "tops": 10
+  },
+  {
+    "name": "Wildfire",
+    "diff": 0,
+    "city": "Kolmården  Sweden",
+    "type": "RMC Twister, Wooden, Terrain",
+    "score": "99,3%",
+    "ratings": 32,
+    "tops": 26
+  },
+  {
+    "name": "Lightning Rod",
+    "diff": 3,
+    "city": "Dollywood, United States",
+    "type": "RMC Wooden",
+    "score": "99,1%",
+    "ratings": 21,
+    "tops": 10
+  },
+  {
+    "name": "Maverick",
+    "diff": 3,
+    "city": "Cedar Point, United States",
+    "type": "Intamin Rocket, Steel",
+    "score": "99,1%",
+    "ratings": 46,
+    "tops": 31
+  },
+  {
+    "name": "El Toro",
+    "diff": -1,
+    "city": "Six Flags Great Adventure, United States",
+    "type": "Intamin Twister, Wooden",
+    "score": "99,0%",
+    "ratings": 46,
+    "tops": 31
+  },
+  {
+    "name": "Twisted Colossus",
+    "diff": -3,
+    "city": "Six Flags Magic Mountain, United States",
+    "type": "RMC Hybrid",
+    "score": "98,9%",
+    "ratings": 30,
+    "tops": 17
+  },
+  {
+    "name": "Eejanaika new",
+    "diff": "new",
+    "city": "Fuji-Q Highland, Japan",
+    "type": "S&S Power 4th Dimension, Steel",
+    "score": "98,6%",
+    "ratings": 5,
+    "tops": 3
+  },
+  {
+    "name": "Wicked Cyclone",
+    "diff": 2,
+    "city": "Six Flags New England, United States",
+    "type": "RMC Hybrid",
+    "score": "98,2%",
+    "ratings": 13,
+    "tops": 9
+  },
+  {
+    "name": "Shambhala",
+    "diff": -1,
+    "city": "Port Aventura, Spain",
+    "type": "B&M Hyper, Steel",
+    "score": "98,2%",
+    "ratings": 153,
+    "tops": 103
+  },
+  {
+    "name": "Taron",
+    "diff": 2,
+    "city": "Phantasialand, Germany",
+    "type": "Intamin Sit Down, Steel",
+    "score": "98,2%",
+    "ratings": 159,
+    "tops": 108
+  },
+  {
+    "name": "Expedition Ge Force",
+    "diff": 0,
+    "city": "Holiday Park, Germany",
+    "type": "Intamin Megacoaster, Steel",
+    "score": "98,2%",
+    "ratings": 115,
+    "tops": 94
+  },
+  {
+    "name": "Storm Chaser",
+    "diff": 1,
+    "city": "Kentucky Kingdom, United States",
+    "type": "RMC Steel",
+    "score": "97,9%",
+    "ratings": 16,
+    "tops": 9
+  },
+  {
+    "name": "Helix",
+    "diff": 5,
+    "city": "Liseberg, Sweden",
+    "type": "Mack Looper, Steel, Terrain",
+    "score": "97,9%",
+    "ratings": 50,
+    "tops": 34
+  },
+  {
+    "name": "Outlaw Run",
+    "diff": 2,
+    "city": "Silver Dollar City, United States",
+    "type": "RMC Hybrid",
+    "score": "96,6%",
+    "ratings": 40,
+    "tops": 21
+  }
+]

+ 0 - 119
src/pages/_data/rollercoasters.yml

@@ -1,119 +0,0 @@
-- name: Steel Vengeance
-  diff: 0
-  city: Cedar Point, United States
-  type: RMC Hybrid
-  score: 100,0%
-  ratings: 25 
-  tops: 15
-  
-- name: Fury 325
-  diff: 0
-  city: Carowinds, United States
-  type: B&M Giga, Hyper, Steel
-  score: 99,3%
-  ratings: 21 
-  tops: 10
-  
-- name: Wildfire
-  diff: 0
-  city: Kolmården  Sweden
-  type: RMC Twister, Wooden, Terrain
-  score: 99,3%
-  ratings: 32 
-  tops: 26
-  
-- name: Lightning Rod
-  diff: 3
-  city: Dollywood, United States
-  type: RMC Wooden
-  score: 99,1%
-  ratings: 21 
-  tops: 10
-  
-- name: Maverick
-  diff: 3
-  city: Cedar Point, United States
-  type: Intamin Rocket, Steel
-  score: 99,1%
-  ratings: 46 
-  tops: 31
-  
-- name: El Toro
-  diff: -1
-  city: Six Flags Great Adventure, United States
-  type: Intamin Twister, Wooden
-  score: 99,0%
-  ratings: 46 
-  tops: 31
-  
-- name: Twisted Colossus
-  diff: -3
-  city: Six Flags Magic Mountain, United States
-  type: RMC Hybrid
-  score: 98,9%
-  ratings: 30 
-  tops: 17
-  
-- name: Eejanaika new
-  diff: new
-  city: Fuji-Q Highland, Japan
-  type: S&S Power 4th Dimension, Steel
-  score: 98,6%
-  ratings: 5 
-  tops: 3
-  
-- name: Wicked Cyclone
-  diff: 2
-  city: Six Flags New England, United States
-  type: RMC Hybrid
-  score: 98,2%
-  ratings: 13 
-  tops: 9
-  
-- name: Shambhala
-  diff: -1
-  city: Port Aventura, Spain
-  type: B&M Hyper, Steel
-  score: 98,2%
-  ratings: 153 
-  tops: 103
-  
-- name: Taron
-  diff: 2
-  city: Phantasialand, Germany
-  type: Intamin Sit Down, Steel
-  score: 98,2%
-  ratings: 159 
-  tops: 108
-  
-- name: Expedition Ge Force
-  diff: 0
-  city: Holiday Park, Germany
-  type: Intamin Megacoaster, Steel
-  score: 98,2%
-  ratings: 115 
-  tops: 94
-  
-- name: Storm Chaser
-  diff: 1
-  city: Kentucky Kingdom, United States
-  type: RMC Steel
-  score: 97,9%
-  ratings: 16 
-  tops: 9
-  
-- name: Helix
-  diff: 5
-  city: Liseberg, Sweden
-  type: Mack Looper, Steel, Terrain
-  score: 97,9%
-  ratings: 50 
-  tops: 34
-  
-- name: Outlaw Run
-  diff: 2
-  city: Silver Dollar City, United States
-  type: RMC Hybrid
-  score: 96,6%
-  ratings: 40 
-  tops: 21

+ 272 - 0
src/pages/_data/selects.json

@@ -0,0 +1,272 @@
+{
+  "users": {
+    "value": 3,
+    "options": {
+      "1": {
+        "name": "Chuck Tesla"
+      },
+      "2": {
+        "name": "Elon Musk"
+      },
+      "3": {
+        "name": "Paweł Kuna"
+      },
+      "4": {
+        "name": "Nikola Tesla"
+      }
+    }
+  },
+  "tags": {
+    "max-items": 15,
+    "multiple": true,
+    "value": [
+      "HTML",
+      "JavaScript",
+      "Bootstrap"
+    ],
+    "options": [
+      "HTML",
+      "JavaScript",
+      "CSS",
+      "jQuery",
+      "Bootstrap",
+      "Ruby",
+      "Python"
+    ]
+  },
+  "countries": {
+    "value": "pl",
+    "options": {
+      "pl": {
+        "name": "Poland",
+        "flag": "pl"
+      },
+      "de": {
+        "name": "Germany",
+        "flag": "de"
+      },
+      "cz": {
+        "name": "Czech Republic",
+        "flag": "cz"
+      },
+      "br": {
+        "name": "Brazil",
+        "flag": "br"
+      }
+    }
+  },
+  "labels": {
+    "value": "paste",
+    "options": {
+      "copy": {
+        "name": "Copy",
+        "label": "cmd + C"
+      },
+      "paste": {
+        "name": "Paste",
+        "label": "cmd + V"
+      },
+      "cut": {
+        "name": "Cut",
+        "label": "cmd + X"
+      }
+    }
+  },
+  "people": {
+    "value": 4,
+    "data": "people"
+  },
+  "optgroups": {
+    "value": "Optgroups",
+    "data": "optgroup",
+    "options": [
+      {
+        "title": "Tags",
+        "options": [
+          "HTML",
+          "JavaScript",
+          "CSS",
+          "jQuery",
+          "Bootstrap",
+          "Ruby",
+          "Python"
+        ]
+      },
+      {
+        "title": "People",
+        "options": [
+          "Chuck Tesla",
+          "Elon Musk",
+          "Paweł Kuna",
+          "Nikola Tesla"
+        ]
+      }
+    ]
+  },
+  "states": {
+    "max-items": 15,
+    "multiple": true,
+    "value": [
+      "AL",
+      "AZ"
+    ],
+    "options": {
+      "AL": {
+        "name": "Alabama"
+      },
+      "AK": {
+        "name": "Alaska"
+      },
+      "AZ": {
+        "name": "Arizona",
+        "selected": true
+      },
+      "AR": {
+        "name": "Arkansas"
+      },
+      "CA": {
+        "name": "California"
+      },
+      "CO": {
+        "name": "Colorado"
+      },
+      "CT": {
+        "name": "Connecticut"
+      },
+      "DE": {
+        "name": "Delaware"
+      },
+      "DC": {
+        "name": "District of Columbia"
+      },
+      "FL": {
+        "name": "Florida"
+      },
+      "GA": {
+        "name": "Georgia"
+      },
+      "HI": {
+        "name": "Hawaii"
+      },
+      "ID": {
+        "name": "Idaho"
+      },
+      "IL": {
+        "name": "Illinois"
+      },
+      "IN": {
+        "name": "Indiana"
+      },
+      "IA": {
+        "name": "Iowa"
+      },
+      "KS": {
+        "name": "Kansas"
+      },
+      "KY": {
+        "name": "Kentucky"
+      },
+      "LA": {
+        "name": "Louisiana"
+      },
+      "ME": {
+        "name": "Maine"
+      },
+      "MD": {
+        "name": "Maryland"
+      },
+      "MA": {
+        "name": "Massachusetts"
+      },
+      "MI": {
+        "name": "Michigan"
+      },
+      "MN": {
+        "name": "Minnesota"
+      },
+      "MS": {
+        "name": "Mississippi"
+      },
+      "MO": {
+        "name": "Missouri"
+      },
+      "MT": {
+        "name": "Montana"
+      },
+      "NE": {
+        "name": "Nebraska"
+      },
+      "NV": {
+        "name": "Nevada"
+      },
+      "NH": {
+        "name": "New Hampshire"
+      },
+      "NJ": {
+        "name": "New Jersey"
+      },
+      "NM": {
+        "name": "New Mexico"
+      },
+      "NY": {
+        "name": "New York"
+      },
+      "NC": {
+        "name": "North Carolina"
+      },
+      "ND": {
+        "name": "North Dakota"
+      },
+      "OH": {
+        "name": "Ohio"
+      },
+      "OK": {
+        "name": "Oklahoma"
+      },
+      "OR": {
+        "name": "Oregon"
+      },
+      "PA": {
+        "name": "Pennsylvania"
+      },
+      "RI": {
+        "name": "Rhode Island"
+      },
+      "SC": {
+        "name": "South Carolina",
+        "selected": true
+      },
+      "SD": {
+        "name": "South Dakota"
+      },
+      "TN": {
+        "name": "Tennessee"
+      },
+      "TX": {
+        "name": "Texas"
+      },
+      "UT": {
+        "name": "Utah"
+      },
+      "VT": {
+        "name": "Vermont"
+      },
+      "VA": {
+        "name": "Virginia"
+      },
+      "WA": {
+        "name": "Washington"
+      },
+      "WV": {
+        "name": "West Virginia"
+      },
+      "WI": {
+        "name": "Wisconsin"
+      },
+      "WY": {
+        "name": "Wyoming",
+        "selected": true
+      }
+    }
+  }
+}

+ 0 - 190
src/pages/_data/selects.yml

@@ -1,190 +0,0 @@
-users:
-  value: 3
-  options:
-    1:
-      name: Chuck Tesla
-    2:
-      name: Elon Musk
-    3:
-      name: Paweł Kuna
-    4:
-      name: Nikola Tesla
-
-tags:
-  max-items: 15
-  multiple: true
-  value: [HTML, JavaScript, Bootstrap]
-  options:
-    - HTML
-    - JavaScript
-    - CSS
-    - jQuery
-    - Bootstrap
-    - Ruby
-    - Python
-
-countries:
-  value: pl
-  options:
-    pl:
-      name: Poland
-      flag: pl
-    de:
-      name: Germany
-      flag: de
-    cz:
-      name: Czech Republic
-      flag: cz
-    br:
-      name: Brazil
-      flag: br
-
-labels:
-  value: paste
-  options:
-    copy:
-      name: Copy
-      label: cmd + C
-    paste:
-      name: Paste
-      label: cmd + V
-    cut:
-      name: Cut
-      label: cmd + X
-
-people:
-  value: 4
-  data: people
-
-optgroups:
-  value: Optgroups
-  data: optgroup
-  options:
-    -
-      title: Tags
-      options:
-        - HTML
-        - JavaScript
-        - CSS
-        - jQuery
-        - Bootstrap
-        - Ruby
-        - Python
-    -
-      title: People
-      options:
-        - Chuck Tesla
-        - Elon Musk
-        - Paweł Kuna
-        - Nikola Tesla
-
-states:
-  max-items: 15
-  multiple: true
-  value: [AL, AZ]
-  options:
-    AL: 
-      name: Alabama
-    AK: 
-      name: Alaska
-    AZ: 
-      name: Arizona
-      selected: true
-    AR: 
-      name: Arkansas
-    CA: 
-      name: California
-    CO: 
-      name: Colorado
-    CT: 
-      name: Connecticut
-    DE: 
-      name: Delaware
-    DC: 
-      name: District of Columbia
-    FL: 
-      name: Florida
-    GA: 
-      name: Georgia
-    HI: 
-      name: Hawaii
-    ID: 
-      name: Idaho
-    IL: 
-      name: Illinois
-    IN: 
-      name: Indiana
-    IA: 
-      name: Iowa
-    KS: 
-      name: Kansas
-    KY: 
-      name: Kentucky
-    LA: 
-      name: Louisiana
-    ME: 
-      name: Maine
-    MD: 
-      name: Maryland
-    MA: 
-      name: Massachusetts
-    MI: 
-      name: Michigan
-    MN: 
-      name: Minnesota
-    MS: 
-      name: Mississippi
-    MO: 
-      name: Missouri
-    MT: 
-      name: Montana
-    NE: 
-      name: Nebraska
-    NV: 
-      name: Nevada
-    NH: 
-      name: New Hampshire
-    NJ: 
-      name: New Jersey
-    NM: 
-      name: New Mexico
-    NY: 
-      name: New York
-    NC: 
-      name: North Carolina
-    ND: 
-      name: North Dakota
-    OH: 
-      name: Ohio
-    OK: 
-      name: Oklahoma
-    OR: 
-      name: Oregon
-    PA: 
-      name: Pennsylvania
-    RI: 
-      name: Rhode Island
-    SC: 
-      name: South Carolina
-      selected: true
-    SD: 
-      name: South Dakota
-    TN: 
-      name: Tennessee
-    TX: 
-      name: Texas
-    UT: 
-      name: Utah
-    VT: 
-      name: Vermont
-    VA: 
-      name: Virginia
-    WA: 
-      name: Washington
-    WV: 
-      name: West Virginia
-    WI: 
-      name: Wisconsin
-    WY: 
-      name: Wyoming
-      selected: true

+ 72 - 0
src/pages/_data/settings.json

@@ -0,0 +1,72 @@
+[
+  {
+    "title": "General",
+    "icon": "settings",
+    "description": "View and update your store details"
+  },
+  {
+    "title": "Payments",
+    "icon": "cash",
+    "description": "Enable and manage your store's payment providers"
+  },
+  {
+    "title": "Checkout",
+    "icon": "shopping-cart",
+    "description": "Customize your online checkout process"
+  },
+  {
+    "title": "Shipping and delivery",
+    "icon": "truck-delivery",
+    "description": "Manage how you ship orders to customers"
+  },
+  {
+    "title": "Taxes",
+    "icon": "tax",
+    "description": "Manage how your store charges taxes"
+  },
+  {
+    "title": "Locations",
+    "icon": "map-pin",
+    "description": "Manage the places you stock inventory, fulfill orders, and sell products"
+  },
+  {
+    "title": "Notifications",
+    "icon": "bell",
+    "description": "Manage notifications sent to you and your customers"
+  },
+  {
+    "title": "Gift cards",
+    "icon": "gift",
+    "description": "Enable Apple Wallet passes and set gift card expiry dates"
+  },
+  {
+    "title": "Files",
+    "icon": "file-invoice",
+    "description": "Upload images, videos, and documents"
+  },
+  {
+    "title": "Sales channels",
+    "icon": "chart-line",
+    "description": "Manage the channels you use to sell your products and services"
+  },
+  {
+    "title": "Plan and permissions",
+    "icon": "user",
+    "description": "View plan information and manage what staff can see or do in your store"
+  },
+  {
+    "title": "Store languages",
+    "icon": "language",
+    "description": "Manage the languages your customers can view on your store"
+  },
+  {
+    "title": "Billing",
+    "icon": "wallet",
+    "description": "Manage your billing information and view your invoices"
+  },
+  {
+    "title": "Legal",
+    "icon": "license",
+    "description": "Manage your store's legal pages"
+  }
+]

+ 0 - 55
src/pages/_data/settings.yml

@@ -1,55 +0,0 @@
-- title: General
-  icon: settings
-  description: View and update your store details
-
-- title: Payments
-  icon: cash
-  description: Enable and manage your store's payment providers
-
-- title: Checkout
-  icon: shopping-cart
-  description: Customize your online checkout process
-
-- title: Shipping and delivery
-  icon: truck-delivery
-  description: Manage how you ship orders to customers
-
-- title: Taxes
-  icon: tax
-  description: Manage how your store charges taxes
-
-- title: Locations
-  icon: map-pin
-  description: Manage the places you stock inventory, fulfill orders, and sell products
-
-- title: Notifications
-  icon: bell
-  description: Manage notifications sent to you and your customers
-
-- title: Gift cards
-  icon: gift
-  description: Enable Apple Wallet passes and set gift card expiry dates
-
-- title: Files
-  icon: file-invoice
-  description: Upload images, videos, and documents
-
-- title: Sales channels
-  icon: chart-line
-  description: Manage the channels you use to sell your products and services
-
-- title: Plan and permissions
-  icon: user
-  description: View plan information and manage what staff can see or do in your store
-
-- title: Store languages
-  icon: language
-  description: Manage the languages your customers can view on your store
-
-- title: Billing
-  icon: wallet
-  description: Manage your billing information and view your invoices
-
-- title: Legal
-  icon: license
-  description: Manage your store's legal pages

+ 50 - 0
src/pages/_data/social-tiles.json

@@ -0,0 +1,50 @@
+[
+  {
+    "icon": "dribbble",
+    "title": "328 likes",
+    "description": "45 today",
+    "trending": 8
+  },
+  {
+    "icon": "facebook",
+    "title": "542 shares",
+    "description": "67 today",
+    "trending": 0
+  },
+  {
+    "icon": "instagram",
+    "title": "894 followers",
+    "description": "120 today",
+    "trending": 10
+  },
+  {
+    "icon": "x",
+    "title": "221 retweets",
+    "description": "34 today",
+    "trending": -2
+  },
+  {
+    "icon": "youtube",
+    "title": "765 views",
+    "description": "98 today",
+    "trending": 0
+  },
+  {
+    "icon": "pinterest",
+    "title": "432 pins",
+    "description": "53 today",
+    "trending": -4
+  },
+  {
+    "icon": "tiktok",
+    "title": "612 likes",
+    "description": "76 today",
+    "trending": 9
+  },
+  {
+    "icon": "linkedin",
+    "title": "305 connections",
+    "description": "29 today",
+    "trending": -1
+  }
+]

+ 0 - 39
src/pages/_data/social-tiles.yml

@@ -1,39 +0,0 @@
-- icon: dribbble
-  title: 328 likes
-  description: 45 today
-  trending: 8
-
-- icon: facebook
-  title: 542 shares
-  description: 67 today
-  trending: 0
-
-- icon: instagram
-  title: 894 followers
-  description: 120 today
-  trending: 10
-
-- icon: x
-  title: 221 retweets
-  description: 34 today
-  trending: -2
-
-- icon: youtube
-  title: 765 views
-  description: 98 today
-  trending: 0
-
-- icon: pinterest
-  title: 432 pins
-  description: 53 today
-  trending: -4
-
-- icon: tiktok
-  title: 612 likes
-  description: 76 today
-  trending: 9
-
-- icon: linkedin
-  title: 305 connections
-  description: 29 today
-  trending: -1

+ 26 - 0
src/pages/_data/tasks-list.json

@@ -0,0 +1,26 @@
+[
+  {
+    "name": "Extend the data model.",
+    "checked": true
+  },
+  {
+    "name": "Verify the event flow.",
+    "checked": false
+  },
+  {
+    "name": "Database backup and maintenance",
+    "checked": false
+  },
+  {
+    "name": "Identify the implementation team.",
+    "checked": true
+  },
+  {
+    "name": "Define users and workflow",
+    "checked": false
+  },
+  {
+    "name": "Check Pull Requests",
+    "checked": true
+  }
+]

+ 0 - 13
src/pages/_data/tasks-list.yml

@@ -1,13 +0,0 @@
-- name: Extend the data model.
-  checked: true
-- name: Verify the event flow.
-  checked: false
-- name: Database backup and maintenance
-  checked: false
-- name: Identify the implementation team.
-  checked: true
-- name: Define users and workflow
-  checked: false
-- name: Check Pull Requests
-  checked: true
-

+ 138 - 0
src/pages/_data/tasks.json

@@ -0,0 +1,138 @@
+{
+  "columns": [
+    {
+      "name": "To Do",
+      "tasks": [
+        {
+          "name": "Enable analytics tracking",
+          "users": 4,
+          "users-offset": 6,
+          "comments": 2,
+          "image": "static/projects/dashboard-1.png",
+          "likes": 7
+        },
+        {
+          "name": "User should receive a daily digest email",
+          "description": "Dedicated form for a category of users that will perform actions.",
+          "users": 1,
+          "users-offset": 4,
+          "due-date": "10 Sep",
+          "likes": 6
+        },
+        {
+          "name": "Change license and remove references to products",
+          "color": "yellow",
+          "favorite": true,
+          "comments": 4,
+          "likes": 34
+        }
+      ]
+    },
+    {
+      "name": "In Progress",
+      "tasks": [
+        {
+          "name": "Write a release note for Admin v1.0",
+          "color": "green",
+          "comments": 11,
+          "subtasks": [
+            {
+              "name": "Implement new designs",
+              "done": true
+            },
+            {
+              "name": "Usability testing"
+            },
+            {
+              "name": "Design navigation changes"
+            }
+          ]
+        },
+        {
+          "name": "Product Update - Q4 2021",
+          "description": "Dedicated form for a category of users that will perform actions.",
+          "starred": true,
+          "users": 2,
+          "users-offset": 7,
+          "comments": 6,
+          "likes": 11
+        },
+        {
+          "name": "Code HTML email template for welcome email",
+          "image": "static/projects/dashboard-3.png",
+          "comments": 11
+        }
+      ]
+    },
+    {
+      "name": "Test",
+      "tasks": [
+        {
+          "name": "Design new diagrams",
+          "color": "red",
+          "users": 2,
+          "users-offset": 9,
+          "comments": 9,
+          "likes": 6
+        },
+        {
+          "name": "Improve animation loader",
+          "favorite": true,
+          "likes": 5,
+          "users": 1,
+          "users-offset": 11,
+          "comments": 6,
+          "image": "static/projects/dashboard-2.png"
+        },
+        {
+          "name": "iOS App home page",
+          "users": 2,
+          "users-offset": 2
+        },
+        {
+          "name": "Changelog 1.7",
+          "color": "blue",
+          "due-date": "10 Jan",
+          "comments": 6
+        }
+      ]
+    },
+    {
+      "name": "Completed",
+      "tasks": [
+        {
+          "name": "Enable analytics tracking",
+          "users": 1,
+          "users-offset": 7,
+          "likes": 1
+        },
+        {
+          "name": "Coordinate with business development",
+          "description": "This content is a little bit longer.",
+          "favorite": true,
+          "likes": 7,
+          "users": 5,
+          "subtasks": [
+            {
+              "name": "Find out the old contract documents",
+              "done": true
+            },
+            {
+              "name": "Organize meeting sales associates to understand need in detail"
+            },
+            {
+              "name": "Make sure to cover every small details"
+            }
+          ]
+        },
+        {
+          "name": "Managing teams",
+          "description": "Publishing industries for previewing layouts and visual <a href=\"#\">#family</a> 🔥",
+          "users": 2,
+          "likes": 4,
+          "users-offset": 10
+        }
+      ]
+    }
+  ]
+}

+ 0 - 83
src/pages/_data/tasks.yml

@@ -1,83 +0,0 @@
-columns:
-  - name: To Do
-    tasks:
-      - name: Enable analytics tracking
-        users: 4
-        users-offset: 6
-        comments: 2
-        image: static/projects/dashboard-1.png
-        likes: 7
-      - name: User should receive a daily digest email
-        description: Dedicated form for a category of users that will perform actions.
-        users: 1
-        users-offset: 4
-        due-date: 10 Sep
-        likes: 6
-      - name: Change license and remove references to products
-        color: yellow
-        favorite: true
-        comments: 4
-        likes: 34
-  - name: In Progress
-    tasks:
-      - name: Write a release note for Admin v1.0
-        color: green
-        comments: 11
-        subtasks:
-          - name: Implement new designs
-            done: true
-          - name: Usability testing
-          - name: Design navigation changes
-      - name: Product Update - Q4 2021
-        description: Dedicated form for a category of users that will perform actions.
-        starred: true
-        users: 2
-        users-offset: 7
-        comments: 6
-        likes: 11
-      - name: Code HTML email template for welcome email
-        image: static/projects/dashboard-3.png
-        comments: 11
-  - name: Test
-    tasks:
-      - name: Design new diagrams
-        color: red
-        users: 2
-        users-offset: 9
-        comments: 9
-        likes: 6
-      - name: Improve animation loader
-        favorite: true
-        likes: 5
-        users: 1
-        users-offset: 11
-        comments: 6
-        image: static/projects/dashboard-2.png
-      - name: iOS App home page
-        users: 2
-        users-offset: 2
-      - name: Changelog 1.7
-        color: blue
-        due-date: 10 Jan
-        comments: 6
-  - name: Completed
-    tasks:
-      - name: Enable analytics tracking
-        users: 1
-        users-offset: 7
-        likes: 1
-      - name: Coordinate with business development
-        description: This content is a little bit longer.
-        favorite: true
-        likes: 7
-        users: 5
-        subtasks:
-          - name: Find out the old contract documents
-            done: true
-          - name: Organize meeting sales associates to understand need in detail
-          - name: Make sure to cover every small details
-      - name: Managing teams
-        description: Publishing industries for previewing layouts and visual <a href="#">#family</a> 🔥
-        users: 2
-        likes: 4
-        users-offset: 10

+ 22 - 0
src/pages/_data/testimonials.json

@@ -0,0 +1,22 @@
+[
+  "Ever since I started using Tabler, my HTML designing process has been significantly smoother. Its intuitive interface is a breath of fresh air!",
+  "I'm beyond impressed with Tabler. This UI kit has transformed my workflow for the better. It's easy to use, streamlined, and remarkably efficient.",
+  "Tabler's feature-rich package has drastically improved my website design process. It's an absolute game-changer in the UI kit landscape.",
+  "Having used many UI kits in the past, I can confidently say that Tabler stands out. The level of customization it offers is unparalleled.",
+  "What I love about Tabler is its sleek design and ease of use. It's really simplified my HTML designing work. Five stars from me!",
+  "I'd recommend Tabler to anyone, whether they're a seasoned pro or a beginner in HTML design. Its versatility and user-friendly nature make it a cut above the rest.",
+  "Navigating through Tabler has been a breeze! Its intuitive layout helps me save time and focus more on the creative aspect of my work.",
+  "With Tabler, designing HTML has never been more straightforward. The kit's sleek features and functionalities have taken my design work to new heights.",
+  "Tabler has revolutionized the way I approach HTML design. Its array of tools and efficient interface make it a must-have for any designer.",
+  "I'm truly amazed by Tabler's capabilities. It's not just an HTML UI kit, it's a design powerhouse that has made my work a lot more efficient and enjoyable.",
+  "As a web developer, Tabler has revolutionized my workflow. The HTML UI kit is exceptionally well-structured, making my projects much more efficient and visually appealing.",
+  "Tabler has transformed the way I approach web design. It's intuitive, easy to use, and has saved me countless hours of coding from scratch. A real game-changer!",
+  "The breadth of design options that Tabler provides is astounding. It has added a whole new level of professionalism to my websites and made my job a lot easier.",
+  "I've been in the web development industry for years and I must say, Tabler is one of the best HTML UI kits I've come across. It's user-friendly and allows for a high degree of customization.",
+  "Since I've started using Tabler, I've noticed a significant improvement in my work. It's streamlined, efficient, and helps me produce better results for my clients.",
+  "Using Tabler has been a fantastic experience. The number of components it offers has allowed me to design more efficiently, and its consistent updates ensure that it always stays ahead of the curve.",
+  "Tabler is a web designer's dream come true. The HTML UI kit offers so many features and functionalities that make my design process more streamlined and efficient.",
+  "I cannot recommend Tabler enough! This HTML UI kit is a must-have for any web developer looking to level up their design game.",
+  "From a beginner's perspective, Tabler has been a lifesaver. It has enabled me to create professional-quality websites without needing advanced coding skills.",
+  "Tabler offers the perfect balance of simplicity and sophistication. It has greatly improved my workflow and I can't imagine working on web development projects without it."
+]

+ 0 - 20
src/pages/_data/testimonials.yml

@@ -1,20 +0,0 @@
-- "Ever since I started using Tabler, my HTML designing process has been significantly smoother. Its intuitive interface is a breath of fresh air!"
-- "I'm beyond impressed with Tabler. This UI kit has transformed my workflow for the better. It's easy to use, streamlined, and remarkably efficient."
-- "Tabler's feature-rich package has drastically improved my website design process. It's an absolute game-changer in the UI kit landscape."
-- "Having used many UI kits in the past, I can confidently say that Tabler stands out. The level of customization it offers is unparalleled."
-- "What I love about Tabler is its sleek design and ease of use. It's really simplified my HTML designing work. Five stars from me!"
-- "I'd recommend Tabler to anyone, whether they're a seasoned pro or a beginner in HTML design. Its versatility and user-friendly nature make it a cut above the rest."
-- "Navigating through Tabler has been a breeze! Its intuitive layout helps me save time and focus more on the creative aspect of my work."
-- "With Tabler, designing HTML has never been more straightforward. The kit's sleek features and functionalities have taken my design work to new heights."
-- "Tabler has revolutionized the way I approach HTML design. Its array of tools and efficient interface make it a must-have for any designer."
-- "I'm truly amazed by Tabler's capabilities. It's not just an HTML UI kit, it's a design powerhouse that has made my work a lot more efficient and enjoyable."
-- "As a web developer, Tabler has revolutionized my workflow. The HTML UI kit is exceptionally well-structured, making my projects much more efficient and visually appealing."
-- "Tabler has transformed the way I approach web design. It's intuitive, easy to use, and has saved me countless hours of coding from scratch. A real game-changer!"
-- "The breadth of design options that Tabler provides is astounding. It has added a whole new level of professionalism to my websites and made my job a lot easier."
-- "I've been in the web development industry for years and I must say, Tabler is one of the best HTML UI kits I've come across. It's user-friendly and allows for a high degree of customization."
-- "Since I've started using Tabler, I've noticed a significant improvement in my work. It's streamlined, efficient, and helps me produce better results for my clients."
-- "Using Tabler has been a fantastic experience. The number of components it offers has allowed me to design more efficiently, and its consistent updates ensure that it always stays ahead of the curve."
-- "Tabler is a web designer's dream come true. The HTML UI kit offers so many features and functionalities that make my design process more streamlined and efficient."
-- "I cannot recommend Tabler enough! This HTML UI kit is a must-have for any web developer looking to level up their design game."
-- "From a beginner's perspective, Tabler has been a lifesaver. It has enabled me to create professional-quality websites without needing advanced coding skills."
-- "Tabler offers the perfect balance of simplicity and sophistication. It has greatly improved my workflow and I can't imagine working on web development projects without it."

+ 41 - 0
src/pages/_data/timeline.json

@@ -0,0 +1,41 @@
+[
+  {
+    "icon": "brand-facebook",
+    "icon-bg": "facebook",
+    "title": "Facebook",
+    "date": "just now"
+  },
+  {
+    "icon": "briefcase",
+    "title": "Products",
+    "date": "2 hrs ago"
+  },
+  {
+    "icon": "brand-x",
+    "icon-bg": "x",
+    "title": "X",
+    "date": "8 hrs ago"
+  },
+  {
+    "icon": "brand-dribbble",
+    "icon-bg": "dribbble",
+    "title": "Dribbble",
+    "date": "12 hrs ago"
+  },
+  {
+    "icon": "database",
+    "title": "Backup",
+    "date": "2 days ago"
+  },
+  {
+    "icon": "settings",
+    "icon-bg": "primary",
+    "title": "System",
+    "date": "4 days ago"
+  },
+  {
+    "icon": "briefcase",
+    "title": "Products",
+    "date": "12 days ago"
+  }
+]

+ 0 - 31
src/pages/_data/timeline.yml

@@ -1,31 +0,0 @@
-- icon: brand-facebook
-  icon-bg: facebook
-  title: Facebook
-  date: just now
-
-- icon: briefcase
-  title: Products
-  date: 2 hrs ago
-
-- icon: brand-x
-  icon-bg: x
-  title: X
-  date: 8 hrs ago
-
-- icon: brand-dribbble
-  icon-bg: dribbble
-  title: Dribbble
-  date: 12 hrs ago
-
-- icon: database
-  title: Backup
-  date: 2 days ago
-
-- icon: settings
-  icon-bg: primary
-  title: System
-  date: 4 days ago
-
-- icon: briefcase
-  title: Products
-  date: 12 days ago

+ 1386 - 0
src/pages/_data/tracks.json

@@ -0,0 +1,1386 @@
+[
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "49faef83b73d483c653f08aede55d81df52e9d18.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "a4fb1d293bd8d3fd38352418c50fcf1369a7a87d.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "11065380c7303972ca2d1d799d06f248fb442225.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2019-05-29"
+    },
+    "artists": [
+      {
+        "name": "GOLEC UORKIESTRA",
+        "type": "artist"
+      },
+      {
+        "name": "Gromee",
+        "type": "artist"
+      },
+      {
+        "name": "Bedoes",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 221611,
+    "name": "Górą ty",
+    "popularity": 31
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "1a9dab25976c706fffccb6bf2cf8a6f5eadd0d29.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "f04bb6fba32e89475d9981007aff21e13745dec2.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "285c50b8d12090ce411acf5eba9cca721a4a1c0a.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2001-03-07"
+    },
+    "artists": [
+      {
+        "name": "Daft Punk",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 201800,
+    "name": "High Life",
+    "popularity": 51
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 635,
+          "path": "fb4998c955d8eba049ffbfc7ab8523a4a4a1f7e9.jpg",
+          "width": 640
+        },
+        {
+          "height": 297,
+          "path": "c3f13b4f7a674abda9aa36fd72fa341e918c0f26.jpg",
+          "width": 300
+        },
+        {
+          "height": 63,
+          "path": "37c84d9b11d74b5625635a2c6c05aa80f4dc240c.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2011-05-24"
+    },
+    "artists": [
+      {
+        "name": "Foster The People",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 203506,
+    "name": "Houdini",
+    "popularity": 0
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "d85ff971ec79f3cb6743540ed0f416e2d0a1c311.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "4d4ab714dfca7b9df41d4a02a2c39394ebdeb6b6.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "0dcc53286b2ed65d0667584ed5f557e385c25188.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2013-01-01"
+    },
+    "artists": [
+      {
+        "name": "Capital Cities",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 192693,
+    "name": "Safe And Sound",
+    "popularity": 13
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "dd00b1d051d4997779bf48fa56e6ecb6583ac4cc.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "79b2422b467ad20c07576e8f8f5f2f1692ac7142.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "71a9517412a65940f2203c7ee7b0eb352f31199c.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2013-10-10"
+    },
+    "artists": [
+      {
+        "name": "Con Bro Chill",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 197779,
+    "name": "Partied Out",
+    "popularity": 19
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "8c48d9658ca7a04cebb1e568ffcca0c0c9fce576.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "aac97056fc02fe02c7e95f7ff77a07c6e82f7d6e.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "60e40883ae3c1edba925cedd554fc8dabc677ba1.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2014-10-05"
+    },
+    "artists": [
+      {
+        "name": "Galantis",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 227073,
+    "name": "Runaway (U & I)",
+    "popularity": 59
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "f046d0f22f8b8f888f173758da202b54b309c3cb.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "859337f0eaa49b1ad6ed76719b7c1ae26d6412c8.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "3abf5ca23380d633a3add2dab444b9a1b8012aeb.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2015-11-27"
+    },
+    "artists": [
+      {
+        "name": "Major Lazer",
+        "type": "artist"
+      },
+      {
+        "name": "Nyla",
+        "type": "artist"
+      },
+      {
+        "name": "Fuse ODG",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 166138,
+    "name": "Light It Up (feat. Nyla & Fuse ODG) - Remix",
+    "popularity": 52
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "ff2381a011d29cefb3804436ed29f60b4faa63d6.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "2e7357491deb8a6796ee8d9181ca9ea1f407bb5f.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "0bb28beeb3f0b553d4b1b7a89061d72ad73b8a59.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2011-01-01"
+    },
+    "artists": [
+      {
+        "name": "Taio Cruz",
+        "type": "artist"
+      },
+      {
+        "name": "Flo Rida",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 244906,
+    "name": "Hangover",
+    "popularity": 12
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "621d2909bcc2c26cd0b274aab0414c9d422a1576.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "c976bfc96d5e44820e553a16a6097cd02a61fd2f.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "089726b25ce5a55b906b3b65580a517b65c7c881.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2017-01-06"
+    },
+    "artists": [
+      {
+        "name": "Ed Sheeran",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 233712,
+    "name": "Shape of You",
+    "popularity": 77
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "c903b69c7c123786eb658afbbacbeb0a61fc108f.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "c9a8350feee77e9345eec4155cddc96694803d1a.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "0db34b6caab2312acdaee332be0c7a0ed3172a2a.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2016"
+    },
+    "artists": [
+      {
+        "name": "Alan Walker",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 161144,
+    "name": "Alone",
+    "popularity": 12
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "b93e4faa3b5300952e385b893e8d49037b7abc6e.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "fe4ee21d30450829e5b172e806b3c1e14ca1e5f3.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "488f389cd61dba31b65e36768808c2d0da84737f.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-03-13"
+    },
+    "artists": [
+      {
+        "name": "Ylvis",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 163611,
+    "name": "Langrennsfar",
+    "popularity": 45
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "aa5b5b3795416a0e275d41838d9737c8faedad6c.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "f4e96086f44c4dff1758b1fc1338cd88c1b5ce9c.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "81a97f9d44d189a959d4838364ee3d2056c88341.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2019-02-22"
+    },
+    "artists": [
+      {
+        "name": "Little Big",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 192728,
+    "name": "Skibidi - Romantic Edition",
+    "popularity": 50
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "c6d8adf2461ca3e91156b645be472fbe1dcb0fc8.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "73f4938130140174efb1cc0a82ececb277e40932.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "6bb542e3ff67f6a6ba2918bdff2e9c5bbabb94a1.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2019-02-08"
+    },
+    "artists": [
+      {
+        "name": "Caravan Palace",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 216224,
+    "name": "Miracle",
+    "popularity": 55
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "896b2434b87ea37ba7f99183db5c99c60bc252a1.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "cfb2a532996512eff95c4b0d566d067384aaa441.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "7f6114053b1ad190459770bc7a941c95ca608b39.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-11-30"
+    },
+    "artists": [
+      {
+        "name": "Alan Walker",
+        "type": "artist"
+      },
+      {
+        "name": "K-391",
+        "type": "artist"
+      },
+      {
+        "name": "Sofia Carson",
+        "type": "artist"
+      },
+      {
+        "name": "CORSAK",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 202901,
+    "name": "Different World (feat. CORSAK)",
+    "popularity": 64
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "695dfa63a47c7db21c0124f1d598d54058063b94.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "f34590c6e7b48c89e9e7b0b26586a47e1f427f65.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "d35863120ae67588110c66bfa534bb645cf99a16.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2011-12-27"
+    },
+    "artists": [
+      {
+        "name": "Skrillex",
+        "type": "artist"
+      },
+      {
+        "name": "Sirah",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 215253,
+    "name": "Bangarang (feat. Sirah)",
+    "popularity": 70
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "2e55b9c247cc6b0b713fbbce9db0527a932f8748.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "1143cd331d7ff1c105fa8140d00edf286fb9f9a5.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "eb33214151082431206ab6e1ad4bbf83f487d58e.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-02-22"
+    },
+    "artists": [
+      {
+        "name": "David Guetta",
+        "type": "artist"
+      },
+      {
+        "name": "Martin Garrix",
+        "type": "artist"
+      },
+      {
+        "name": "Brooks",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 202500,
+    "name": "Like I Do",
+    "popularity": 76
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "996e277d1049cef3442bc932c08d76e465436a18.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "f891f1864651e04eb94edd64b8e707e150e2425f.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "a8a4ee30b73a0454bd4d4245e36d87447c7f318d.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2017-04-12"
+    },
+    "artists": [
+      {
+        "name": "slenderbodies",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 228061,
+    "name": "anemone",
+    "popularity": 10
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "c396ca27ce8cfe43c41bff9cce5aadbb481bb3a0.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "4d78b06d3286a328a6a72268c474514f04932260.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "91f76bae8e1b8369fa2f4287af94d065d92e21cc.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2017-04-14"
+    },
+    "artists": [
+      {
+        "name": "FÄIS",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 221984,
+    "name": "Ask Me Tomorrow",
+    "popularity": 0
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "fa3c3fea65a9a175bcf1fcd36d3c71763b5dc451.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "c76f990296ba4b77c85b569ca311f5eefbcf75e5.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "da194bbe320834f7cc18b51ab2a69ea0fcc93d3e.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-02-16"
+    },
+    "artists": [
+      {
+        "name": "Sparkee",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 219062,
+    "name": "Strobe",
+    "popularity": 42
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "6207c3f216b3caeb36be9854040930819c38cf8d.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "5a6c8514a481afe89cbf4f37b13dde14e62ed616.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "a77d19d2ac9e19d59da67952fcf78c24d94f3848.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2015-03-02"
+    },
+    "artists": [
+      {
+        "name": "Major Lazer",
+        "type": "artist"
+      },
+      {
+        "name": "MØ",
+        "type": "artist"
+      },
+      {
+        "name": "DJ Snake",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 176561,
+    "name": "Lean On (feat. MØ & DJ Snake)",
+    "popularity": 12
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "ef96f4e6be04b4b8bde0861bd3d6b54f6c39408b.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "93ad7f491db7df0cb517308e7bb847da41647618.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "77b2563eda24abe226bc08d59a0dec59a07815e6.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2016-10-21"
+    },
+    "artists": [
+      {
+        "name": "Sia",
+        "type": "artist"
+      },
+      {
+        "name": "Kendrick Lamar",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 210226,
+    "name": "The Greatest",
+    "popularity": 75
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "8581468e913349d55449686175d6ad55f2efda47.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "617c5567a6ed4342fb48df7ab753a8d9f2c0054b.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "9901c9a39491c4456119dde7e626965c5342a6ba.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2007"
+    },
+    "artists": [
+      {
+        "name": "MGMT",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 229640,
+    "name": "Electric Feel",
+    "popularity": 7
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "cc955a4bee6a76a217de86ce72dc3c304186bc7d.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "b089902e72614818a73c9dfc258633734761a6c1.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "c75a4b750f94fda9d1108c26d28ad47b69c46f09.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2001"
+    },
+    "artists": [
+      {
+        "name": "Zero 7",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 271520,
+    "name": "In The Waiting Line",
+    "popularity": 11
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "2fb88b8efab810c50670a2d9ca3abb2af35f01a0.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "56d8e3e1c597b0382c4dc236ba630d2a0f1eddf1.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "41351ae11fec30f74422caffed8ba5a05d086d86.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-06-15"
+    },
+    "artists": [
+      {
+        "name": "Shanguy",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 157778,
+    "name": "King Of The Jungle",
+    "popularity": 55
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "d07f62044c007eb1b21ceac4c57a19b552797509.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "9fa22d9c7a720db1e1addb60b86b6869851b4a76.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "a715f85cf0ba0cc2ed61e62d5441763871d83a5b.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-06-07"
+    },
+    "artists": [
+      {
+        "name": "K-391",
+        "type": "artist"
+      },
+      {
+        "name": "Alan Walker",
+        "type": "artist"
+      },
+      {
+        "name": "Julie Bergan",
+        "type": "artist"
+      },
+      {
+        "name": "SEUNGRI",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 210288,
+    "name": "Ignite (feat. SEUNGRI)",
+    "popularity": 67
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "b114db565bfbdfed73f15cf11963428da1f10e90.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "d5fd5256e0763c1e9f60b054e33e82ca08fdeca8.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "7fb6b008325b9536dbd02ed14d0c47de59f65935.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2017-07-07"
+    },
+    "artists": [
+      {
+        "name": "lovelytheband",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 204878,
+    "name": "broken",
+    "popularity": 12
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "257b1dee9f7d1c6f41bfa567348f8444535feac6.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "4f6c0ba1317ea1d032ed8f1e5d51777f5ed78192.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "8ca79fea1c7bcd6e79eceb38d1f7b1a5c7b26d9f.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-06-15"
+    },
+    "artists": [
+      {
+        "name": "Kygo",
+        "type": "artist"
+      },
+      {
+        "name": "Imagine Dragons",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 193320,
+    "name": "Born To Be Yours",
+    "popularity": 79
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "9d022729e6f9917b17800029b9308e8b563c7ab8.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "748adbfec069804f4ce1c09f4bff86e0eb06f60e.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "cf0c8ff362a486a63527ac8c3fbec07b30854866.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-10-05"
+    },
+    "artists": [
+      {
+        "name": "Howard Goodall",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 128600,
+    "name": "Opening Titles",
+    "popularity": 27
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "c07289080dac8c111fddc6fddcf239c645daac9d.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "d4e02c12a8ef14462f3b4f15df6398cdcfec9898.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "cefff458b9d5cb4ce224de82dfddb390da9811ca.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-03-13"
+    },
+    "artists": [
+      {
+        "name": "Ylvis",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 163611,
+    "name": "Langrennsfar",
+    "popularity": 0
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "04168ff76158e7bed216979a5ea97c7e52b1e97c.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "3144e46ee207860391866a086b41eb01749582d6.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "24b4146508ef0a7969de8d938ee875d0123989f6.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2016-04-15"
+    },
+    "artists": [
+      {
+        "name": "New People",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 362000,
+    "name": "Banana Split",
+    "popularity": 10
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "77cb96a59f7a3bf4c6513781a1a48688f88330a3.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "281357a445748bc906270ca7a01253f480eaf1b4.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "22c6434a15cc410c656356a9862a2afbe51205ff.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2017-04-07"
+    },
+    "artists": [
+      {
+        "name": "Sławomir",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 225481,
+    "name": "Miłość w Zakopanem",
+    "popularity": 50
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "ab9e1e2e78d4f25e10364403dc13d7cffded6daf.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "5843ed4a56177db9ae39a09d23319f87a78ed7d6.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "9d99ddd56d7cf8599b6c8764fe62577df649de93.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-02-09"
+    },
+    "artists": [
+      {
+        "name": "Marshmello",
+        "type": "artist"
+      },
+      {
+        "name": "Anne-Marie",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 202620,
+    "name": "FRIENDS",
+    "popularity": 84
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "2ccc3bd0455066a58b00083b3920c3642a072e42.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "d0b9aed7b44169ef38398496c8eb0fed14da89d2.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "18ca653b602887a9b211da03a7c26e8867b528e2.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2011-10-17"
+    },
+    "artists": [
+      {
+        "name": "M83",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 243960,
+    "name": "Midnight City",
+    "popularity": 71
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "2be99e6ce2bb214a9072e315f4e17948af30af75.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "213906d9faa26ccd959947613557ea3b75dde85b.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "603793bf01019734d7b67b18f5e91220ea8deb14.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2007-09-11"
+    },
+    "artists": [
+      {
+        "name": "Kanye West",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 311866,
+    "name": "Stronger",
+    "popularity": 79
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "baa69b4e848c9ac4859aa7fd33ca592d384ebd94.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "b77ddc595b81c3c9081fa38df536e47ccd08d5ac.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "0b12aaeffdef54e56dda3c1b1cb5fbc8bc20f1ca.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2019-03-15"
+    },
+    "artists": [
+      {
+        "name": "Netta",
+        "type": "artist"
+      },
+      {
+        "name": "Gromee",
+        "type": "artist"
+      },
+      {
+        "name": "Gromme",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 247060,
+    "name": "Bassa Sababa - Gromee Remix",
+    "popularity": 23
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "caf848886b4cd05003fb342f928b64ea09b305f3.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "b8e4106aa31f47d16803def16904b0a7bc5e1a5a.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "5da09480ae1ab3f00cfaf6cd4e3a6ba03b4a5fd1.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-03-23"
+    },
+    "artists": [
+      {
+        "name": "George Ezra",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 201287,
+    "name": "Shotgun",
+    "popularity": 84
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "6e94ab39c917096d876b895dbab0019953d27a96.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "9b092f765831793404d46b816d688135ff32735f.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "f59354f8d3f2841e44c1bd7aa0cd55a22843cfc7.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2014-11-21"
+    },
+    "artists": [
+      {
+        "name": "David Guetta",
+        "type": "artist"
+      },
+      {
+        "name": "Sam Martin",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 203641,
+    "name": "Dangerous (feat. Sam Martin)",
+    "popularity": 64
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "6ba02c2ab0ecc649a84fdafb4539e3ad71d0e6ab.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "6607274645fa3302e4b885c1678e6e2fef40d889.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "446b2000ec677fed9e915790d8ee8ce021b7db72.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-05-04"
+    },
+    "artists": [
+      {
+        "name": "AronChupa",
+        "type": "artist"
+      },
+      {
+        "name": "Little Sis Nora",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 162732,
+    "name": "Rave in the Grave",
+    "popularity": 63
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "5f9ed99f071ced583dfb5a1dcdac6c555dc755aa.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "f54d58d3c8ff2fb935cfbd8461a7bf867ec88e8b.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "f164a2ba24b716986dbbf2c40d34e5c84bddeec3.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-07-27"
+    },
+    "artists": [
+      {
+        "name": "Alan Walker",
+        "type": "artist"
+      },
+      {
+        "name": "Au/Ra",
+        "type": "artist"
+      },
+      {
+        "name": "Tomine Harket",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 211866,
+    "name": "Darkside",
+    "popularity": 76
+  },
+  {
+    "track": null,
+    "album": {
+      "images": [
+        {
+          "height": 640,
+          "path": "8ebf0216fa9d294177e79cfef03628ed68043454.jpg",
+          "width": 640
+        },
+        {
+          "height": 300,
+          "path": "ac7215afbceb58c8a7f3713eaf9d00ff3d959779.jpg",
+          "width": 300
+        },
+        {
+          "height": 64,
+          "path": "014f38920ba75a4efd3488b4626cf6e16f94c9e5.jpg",
+          "width": 64
+        }
+      ],
+      "release_date": "2018-01-12"
+    },
+    "artists": [
+      {
+        "name": "Camila Cabello",
+        "type": "artist"
+      },
+      {
+        "name": "Young Thug",
+        "type": "artist"
+      }
+    ],
+    "duration_ms": 217306,
+    "name": "Havana (feat. Young Thug)",
+    "popularity": 84
+  }
+]

+ 0 - 812
src/pages/_data/tracks.yml

@@ -1,812 +0,0 @@
-- track:
-  album:
-    images:
-    - height: 640
-      path: 49faef83b73d483c653f08aede55d81df52e9d18.jpg
-      width: 640
-    - height: 300
-      path: a4fb1d293bd8d3fd38352418c50fcf1369a7a87d.jpg
-      width: 300
-    - height: 64
-      path: 11065380c7303972ca2d1d799d06f248fb442225.jpg
-      width: 64
-    release_date: '2019-05-29'
-  artists:
-  - name: GOLEC UORKIESTRA
-    type: artist
-  - name: Gromee
-    type: artist
-  - name: Bedoes
-    type: artist
-  duration_ms: 221611
-  name: Górą ty
-  popularity: 31
-- track:
-  album:
-    images:
-    - height: 640
-      path: 1a9dab25976c706fffccb6bf2cf8a6f5eadd0d29.jpg
-      width: 640
-    - height: 300
-      path: f04bb6fba32e89475d9981007aff21e13745dec2.jpg
-      width: 300
-    - height: 64
-      path: 285c50b8d12090ce411acf5eba9cca721a4a1c0a.jpg
-      width: 64
-    release_date: '2001-03-07'
-  artists:
-  - name: Daft Punk
-    type: artist
-  duration_ms: 201800
-  name: High Life
-  popularity: 51
-- track:
-  album:
-    images:
-    - height: 635
-      path: fb4998c955d8eba049ffbfc7ab8523a4a4a1f7e9.jpg
-      width: 640
-    - height: 297
-      path: c3f13b4f7a674abda9aa36fd72fa341e918c0f26.jpg
-      width: 300
-    - height: 63
-      path: 37c84d9b11d74b5625635a2c6c05aa80f4dc240c.jpg
-      width: 64
-    release_date: '2011-05-24'
-  artists:
-  - name: Foster The People
-    type: artist
-  duration_ms: 203506
-  name: Houdini
-  popularity: 0
-- track:
-  album:
-    images:
-    - height: 640
-      path: d85ff971ec79f3cb6743540ed0f416e2d0a1c311.jpg
-      width: 640
-    - height: 300
-      path: 4d4ab714dfca7b9df41d4a02a2c39394ebdeb6b6.jpg
-      width: 300
-    - height: 64
-      path: 0dcc53286b2ed65d0667584ed5f557e385c25188.jpg
-      width: 64
-    release_date: '2013-01-01'
-  artists:
-  - name: Capital Cities
-    type: artist
-  duration_ms: 192693
-  name: Safe And Sound
-  popularity: 13
-- track:
-  album:
-    images:
-    - height: 640
-      path: dd00b1d051d4997779bf48fa56e6ecb6583ac4cc.jpg
-      width: 640
-    - height: 300
-      path: 79b2422b467ad20c07576e8f8f5f2f1692ac7142.jpg
-      width: 300
-    - height: 64
-      path: 71a9517412a65940f2203c7ee7b0eb352f31199c.jpg
-      width: 64
-    release_date: '2013-10-10'
-  artists:
-  - name: Con Bro Chill
-    type: artist
-  duration_ms: 197779
-  name: Partied Out
-  popularity: 19
-- track:
-  album:
-    images:
-    - height: 640
-      path: 8c48d9658ca7a04cebb1e568ffcca0c0c9fce576.jpg
-      width: 640
-    - height: 300
-      path: aac97056fc02fe02c7e95f7ff77a07c6e82f7d6e.jpg
-      width: 300
-    - height: 64
-      path: 60e40883ae3c1edba925cedd554fc8dabc677ba1.jpg
-      width: 64
-    release_date: '2014-10-05'
-  artists:
-  - name: Galantis
-    type: artist
-  duration_ms: 227073
-  name: Runaway (U & I)
-  popularity: 59
-- track:
-  album:
-    images:
-    - height: 640
-      path: f046d0f22f8b8f888f173758da202b54b309c3cb.jpg
-      width: 640
-    - height: 300
-      path: 859337f0eaa49b1ad6ed76719b7c1ae26d6412c8.jpg
-      width: 300
-    - height: 64
-      path: 3abf5ca23380d633a3add2dab444b9a1b8012aeb.jpg
-      width: 64
-    release_date: '2015-11-27'
-  artists:
-  - name: Major Lazer
-    type: artist
-  - name: Nyla
-    type: artist
-  - name: Fuse ODG
-    type: artist
-  duration_ms: 166138
-  name: Light It Up (feat. Nyla & Fuse ODG) - Remix
-  popularity: 52
-- track:
-  album:
-    images:
-    - height: 640
-      path: ff2381a011d29cefb3804436ed29f60b4faa63d6.jpg
-      width: 640
-    - height: 300
-      path: 2e7357491deb8a6796ee8d9181ca9ea1f407bb5f.jpg
-      width: 300
-    - height: 64
-      path: 0bb28beeb3f0b553d4b1b7a89061d72ad73b8a59.jpg
-      width: 64
-    release_date: '2011-01-01'
-  artists:
-  - name: Taio Cruz
-    type: artist
-  - name: Flo Rida
-    type: artist
-  duration_ms: 244906
-  name: Hangover
-  popularity: 12
-- track:
-  album:
-    images:
-    - height: 640
-      path: 621d2909bcc2c26cd0b274aab0414c9d422a1576.jpg
-      width: 640
-    - height: 300
-      path: c976bfc96d5e44820e553a16a6097cd02a61fd2f.jpg
-      width: 300
-    - height: 64
-      path: 089726b25ce5a55b906b3b65580a517b65c7c881.jpg
-      width: 64
-    release_date: '2017-01-06'
-  artists:
-  - name: Ed Sheeran
-    type: artist
-  duration_ms: 233712
-  name: Shape of You
-  popularity: 77
-- track:
-  album:
-    images:
-    - height: 640
-      path: c903b69c7c123786eb658afbbacbeb0a61fc108f.jpg
-      width: 640
-    - height: 300
-      path: c9a8350feee77e9345eec4155cddc96694803d1a.jpg
-      width: 300
-    - height: 64
-      path: 0db34b6caab2312acdaee332be0c7a0ed3172a2a.jpg
-      width: 64
-    release_date: '2016'
-  artists:
-  - name: Alan Walker
-    type: artist
-  duration_ms: 161144
-  name: Alone
-  popularity: 12
-- track:
-  album:
-    images:
-    - height: 640
-      path: b93e4faa3b5300952e385b893e8d49037b7abc6e.jpg
-      width: 640
-    - height: 300
-      path: fe4ee21d30450829e5b172e806b3c1e14ca1e5f3.jpg
-      width: 300
-    - height: 64
-      path: 488f389cd61dba31b65e36768808c2d0da84737f.jpg
-      width: 64
-    release_date: '2018-03-13'
-  artists:
-  - name: Ylvis
-    type: artist
-  duration_ms: 163611
-  name: Langrennsfar
-  popularity: 45
-- track:
-  album:
-    images:
-    - height: 640
-      path: aa5b5b3795416a0e275d41838d9737c8faedad6c.jpg
-      width: 640
-    - height: 300
-      path: f4e96086f44c4dff1758b1fc1338cd88c1b5ce9c.jpg
-      width: 300
-    - height: 64
-      path: 81a97f9d44d189a959d4838364ee3d2056c88341.jpg
-      width: 64
-    release_date: '2019-02-22'
-  artists:
-  - name: Little Big
-    type: artist
-  duration_ms: 192728
-  name: Skibidi - Romantic Edition
-  popularity: 50
-- track:
-  album:
-    images:
-    - height: 640
-      path: c6d8adf2461ca3e91156b645be472fbe1dcb0fc8.jpg
-      width: 640
-    - height: 300
-      path: 73f4938130140174efb1cc0a82ececb277e40932.jpg
-      width: 300
-    - height: 64
-      path: 6bb542e3ff67f6a6ba2918bdff2e9c5bbabb94a1.jpg
-      width: 64
-    release_date: '2019-02-08'
-  artists:
-  - name: Caravan Palace
-    type: artist
-  duration_ms: 216224
-  name: Miracle
-  popularity: 55
-- track:
-  album:
-    images:
-    - height: 640
-      path: 896b2434b87ea37ba7f99183db5c99c60bc252a1.jpg
-      width: 640
-    - height: 300
-      path: cfb2a532996512eff95c4b0d566d067384aaa441.jpg
-      width: 300
-    - height: 64
-      path: 7f6114053b1ad190459770bc7a941c95ca608b39.jpg
-      width: 64
-    release_date: '2018-11-30'
-  artists:
-  - name: Alan Walker
-    type: artist
-  - name: K-391
-    type: artist
-  - name: Sofia Carson
-    type: artist
-  - name: CORSAK
-    type: artist
-  duration_ms: 202901
-  name: Different World (feat. CORSAK)
-  popularity: 64
-- track:
-  album:
-    images:
-    - height: 640
-      path: 695dfa63a47c7db21c0124f1d598d54058063b94.jpg
-      width: 640
-    - height: 300
-      path: f34590c6e7b48c89e9e7b0b26586a47e1f427f65.jpg
-      width: 300
-    - height: 64
-      path: d35863120ae67588110c66bfa534bb645cf99a16.jpg
-      width: 64
-    release_date: '2011-12-27'
-  artists:
-  - name: Skrillex
-    type: artist
-  - name: Sirah
-    type: artist
-  duration_ms: 215253
-  name: Bangarang (feat. Sirah)
-  popularity: 70
-- track:
-  album:
-    images:
-    - height: 640
-      path: 2e55b9c247cc6b0b713fbbce9db0527a932f8748.jpg
-      width: 640
-    - height: 300
-      path: 1143cd331d7ff1c105fa8140d00edf286fb9f9a5.jpg
-      width: 300
-    - height: 64
-      path: eb33214151082431206ab6e1ad4bbf83f487d58e.jpg
-      width: 64
-    release_date: '2018-02-22'
-  artists:
-  - name: David Guetta
-    type: artist
-  - name: Martin Garrix
-    type: artist
-  - name: Brooks
-    type: artist
-  duration_ms: 202500
-  name: Like I Do
-  popularity: 76
-- track:
-  album:
-    images:
-    - height: 640
-      path: 996e277d1049cef3442bc932c08d76e465436a18.jpg
-      width: 640
-    - height: 300
-      path: f891f1864651e04eb94edd64b8e707e150e2425f.jpg
-      width: 300
-    - height: 64
-      path: a8a4ee30b73a0454bd4d4245e36d87447c7f318d.jpg
-      width: 64
-    release_date: '2017-04-12'
-  artists:
-  - name: slenderbodies
-    type: artist
-  duration_ms: 228061
-  name: anemone
-  popularity: 10
-- track:
-  album:
-    images:
-    - height: 640
-      path: c396ca27ce8cfe43c41bff9cce5aadbb481bb3a0.jpg
-      width: 640
-    - height: 300
-      path: 4d78b06d3286a328a6a72268c474514f04932260.jpg
-      width: 300
-    - height: 64
-      path: 91f76bae8e1b8369fa2f4287af94d065d92e21cc.jpg
-      width: 64
-    release_date: '2017-04-14'
-  artists:
-  - name: FÄIS
-    type: artist
-  duration_ms: 221984
-  name: Ask Me Tomorrow
-  popularity: 0
-- track:
-  album:
-    images:
-    - height: 640
-      path: fa3c3fea65a9a175bcf1fcd36d3c71763b5dc451.jpg
-      width: 640
-    - height: 300
-      path: c76f990296ba4b77c85b569ca311f5eefbcf75e5.jpg
-      width: 300
-    - height: 64
-      path: da194bbe320834f7cc18b51ab2a69ea0fcc93d3e.jpg
-      width: 64
-    release_date: '2018-02-16'
-  artists:
-  - name: Sparkee
-    type: artist
-  duration_ms: 219062
-  name: Strobe
-  popularity: 42
-- track:
-  album:
-    images:
-    - height: 640
-      path: 6207c3f216b3caeb36be9854040930819c38cf8d.jpg
-      width: 640
-    - height: 300
-      path: 5a6c8514a481afe89cbf4f37b13dde14e62ed616.jpg
-      width: 300
-    - height: 64
-      path: a77d19d2ac9e19d59da67952fcf78c24d94f3848.jpg
-      width: 64
-    release_date: '2015-03-02'
-  artists:
-  - name: Major Lazer
-    type: artist
-  - name: MØ
-    type: artist
-  - name: DJ Snake
-    type: artist
-  duration_ms: 176561
-  name: Lean On (feat. MØ & DJ Snake)
-  popularity: 12
-- track:
-  album:
-    images:
-    - height: 640
-      path: ef96f4e6be04b4b8bde0861bd3d6b54f6c39408b.jpg
-      width: 640
-    - height: 300
-      path: 93ad7f491db7df0cb517308e7bb847da41647618.jpg
-      width: 300
-    - height: 64
-      path: 77b2563eda24abe226bc08d59a0dec59a07815e6.jpg
-      width: 64
-    release_date: '2016-10-21'
-  artists:
-  - name: Sia
-    type: artist
-  - name: Kendrick Lamar
-    type: artist
-  duration_ms: 210226
-  name: The Greatest
-  popularity: 75
-- track:
-  album:
-    images:
-    - height: 640
-      path: 8581468e913349d55449686175d6ad55f2efda47.jpg
-      width: 640
-    - height: 300
-      path: 617c5567a6ed4342fb48df7ab753a8d9f2c0054b.jpg
-      width: 300
-    - height: 64
-      path: 9901c9a39491c4456119dde7e626965c5342a6ba.jpg
-      width: 64
-    release_date: '2007'
-  artists:
-  - name: MGMT
-    type: artist
-  duration_ms: 229640
-  name: Electric Feel
-  popularity: 7
-- track:
-  album:
-    images:
-    - height: 640
-      path: cc955a4bee6a76a217de86ce72dc3c304186bc7d.jpg
-      width: 640
-    - height: 300
-      path: b089902e72614818a73c9dfc258633734761a6c1.jpg
-      width: 300
-    - height: 64
-      path: c75a4b750f94fda9d1108c26d28ad47b69c46f09.jpg
-      width: 64
-    release_date: '2001'
-  artists:
-  - name: Zero 7
-    type: artist
-  duration_ms: 271520
-  name: In The Waiting Line
-  popularity: 11
-- track:
-  album:
-    images:
-    - height: 640
-      path: 2fb88b8efab810c50670a2d9ca3abb2af35f01a0.jpg
-      width: 640
-    - height: 300
-      path: 56d8e3e1c597b0382c4dc236ba630d2a0f1eddf1.jpg
-      width: 300
-    - height: 64
-      path: 41351ae11fec30f74422caffed8ba5a05d086d86.jpg
-      width: 64
-    release_date: '2018-06-15'
-  artists:
-  - name: Shanguy
-    type: artist
-  duration_ms: 157778
-  name: King Of The Jungle
-  popularity: 55
-- track:
-  album:
-    images:
-    - height: 640
-      path: d07f62044c007eb1b21ceac4c57a19b552797509.jpg
-      width: 640
-    - height: 300
-      path: 9fa22d9c7a720db1e1addb60b86b6869851b4a76.jpg
-      width: 300
-    - height: 64
-      path: a715f85cf0ba0cc2ed61e62d5441763871d83a5b.jpg
-      width: 64
-    release_date: '2018-06-07'
-  artists:
-  - name: K-391
-    type: artist
-  - name: Alan Walker
-    type: artist
-  - name: Julie Bergan
-    type: artist
-  - name: SEUNGRI
-    type: artist
-  duration_ms: 210288
-  name: Ignite (feat. SEUNGRI)
-  popularity: 67
-- track:
-  album:
-    images:
-    - height: 640
-      path: b114db565bfbdfed73f15cf11963428da1f10e90.jpg
-      width: 640
-    - height: 300
-      path: d5fd5256e0763c1e9f60b054e33e82ca08fdeca8.jpg
-      width: 300
-    - height: 64
-      path: 7fb6b008325b9536dbd02ed14d0c47de59f65935.jpg
-      width: 64
-    release_date: '2017-07-07'
-  artists:
-  - name: lovelytheband
-    type: artist
-  duration_ms: 204878
-  name: broken
-  popularity: 12
-- track:
-  album:
-    images:
-    - height: 640
-      path: 257b1dee9f7d1c6f41bfa567348f8444535feac6.jpg
-      width: 640
-    - height: 300
-      path: 4f6c0ba1317ea1d032ed8f1e5d51777f5ed78192.jpg
-      width: 300
-    - height: 64
-      path: 8ca79fea1c7bcd6e79eceb38d1f7b1a5c7b26d9f.jpg
-      width: 64
-    release_date: '2018-06-15'
-  artists:
-  - name: Kygo
-    type: artist
-  - name: Imagine Dragons
-    type: artist
-  duration_ms: 193320
-  name: Born To Be Yours
-  popularity: 79
-- track:
-  album:
-    images:
-    - height: 640
-      path: 9d022729e6f9917b17800029b9308e8b563c7ab8.jpg
-      width: 640
-    - height: 300
-      path: 748adbfec069804f4ce1c09f4bff86e0eb06f60e.jpg
-      width: 300
-    - height: 64
-      path: cf0c8ff362a486a63527ac8c3fbec07b30854866.jpg
-      width: 64
-    release_date: '2018-10-05'
-  artists:
-  - name: Howard Goodall
-    type: artist
-  duration_ms: 128600
-  name: Opening Titles
-  popularity: 27
-- track:
-  album:
-    images:
-    - height: 640
-      path: c07289080dac8c111fddc6fddcf239c645daac9d.jpg
-      width: 640
-    - height: 300
-      path: d4e02c12a8ef14462f3b4f15df6398cdcfec9898.jpg
-      width: 300
-    - height: 64
-      path: cefff458b9d5cb4ce224de82dfddb390da9811ca.jpg
-      width: 64
-    release_date: '2018-03-13'
-  artists:
-  - name: Ylvis
-    type: artist
-  duration_ms: 163611
-  name: Langrennsfar
-  popularity: 0
-- track:
-  album:
-    images:
-    - height: 640
-      path: 04168ff76158e7bed216979a5ea97c7e52b1e97c.jpg
-      width: 640
-    - height: 300
-      path: 3144e46ee207860391866a086b41eb01749582d6.jpg
-      width: 300
-    - height: 64
-      path: 24b4146508ef0a7969de8d938ee875d0123989f6.jpg
-      width: 64
-    release_date: '2016-04-15'
-  artists:
-  - name: New People
-    type: artist
-  duration_ms: 362000
-  name: Banana Split
-  popularity: 10
-- track:
-  album:
-    images:
-    - height: 640
-      path: 77cb96a59f7a3bf4c6513781a1a48688f88330a3.jpg
-      width: 640
-    - height: 300
-      path: 281357a445748bc906270ca7a01253f480eaf1b4.jpg
-      width: 300
-    - height: 64
-      path: 22c6434a15cc410c656356a9862a2afbe51205ff.jpg
-      width: 64
-    release_date: '2017-04-07'
-  artists:
-  - name: Sławomir
-    type: artist
-  duration_ms: 225481
-  name: Miłość w Zakopanem
-  popularity: 50
-- track:
-  album:
-    images:
-    - height: 640
-      path: ab9e1e2e78d4f25e10364403dc13d7cffded6daf.jpg
-      width: 640
-    - height: 300
-      path: 5843ed4a56177db9ae39a09d23319f87a78ed7d6.jpg
-      width: 300
-    - height: 64
-      path: 9d99ddd56d7cf8599b6c8764fe62577df649de93.jpg
-      width: 64
-    release_date: '2018-02-09'
-  artists:
-  - name: Marshmello
-    type: artist
-  - name: Anne-Marie
-    type: artist
-  duration_ms: 202620
-  name: FRIENDS
-  popularity: 84
-- track:
-  album:
-    images:
-    - height: 640
-      path: 2ccc3bd0455066a58b00083b3920c3642a072e42.jpg
-      width: 640
-    - height: 300
-      path: d0b9aed7b44169ef38398496c8eb0fed14da89d2.jpg
-      width: 300
-    - height: 64
-      path: 18ca653b602887a9b211da03a7c26e8867b528e2.jpg
-      width: 64
-    release_date: '2011-10-17'
-  artists:
-  - name: M83
-    type: artist
-  duration_ms: 243960
-  name: Midnight City
-  popularity: 71
-- track:
-  album:
-    images:
-    - height: 640
-      path: 2be99e6ce2bb214a9072e315f4e17948af30af75.jpg
-      width: 640
-    - height: 300
-      path: 213906d9faa26ccd959947613557ea3b75dde85b.jpg
-      width: 300
-    - height: 64
-      path: 603793bf01019734d7b67b18f5e91220ea8deb14.jpg
-      width: 64
-    release_date: '2007-09-11'
-  artists:
-  - name: Kanye West
-    type: artist
-  duration_ms: 311866
-  name: Stronger
-  popularity: 79
-- track:
-  album:
-    images:
-    - height: 640
-      path: baa69b4e848c9ac4859aa7fd33ca592d384ebd94.jpg
-      width: 640
-    - height: 300
-      path: b77ddc595b81c3c9081fa38df536e47ccd08d5ac.jpg
-      width: 300
-    - height: 64
-      path: 0b12aaeffdef54e56dda3c1b1cb5fbc8bc20f1ca.jpg
-      width: 64
-    release_date: '2019-03-15'
-  artists:
-  - name: Netta
-    type: artist
-  - name: Gromee
-    type: artist
-  - name: Gromme
-    type: artist
-  duration_ms: 247060
-  name: Bassa Sababa - Gromee Remix
-  popularity: 23
-- track:
-  album:
-    images:
-    - height: 640
-      path: caf848886b4cd05003fb342f928b64ea09b305f3.jpg
-      width: 640
-    - height: 300
-      path: b8e4106aa31f47d16803def16904b0a7bc5e1a5a.jpg
-      width: 300
-    - height: 64
-      path: 5da09480ae1ab3f00cfaf6cd4e3a6ba03b4a5fd1.jpg
-      width: 64
-    release_date: '2018-03-23'
-  artists:
-  - name: George Ezra
-    type: artist
-  duration_ms: 201287
-  name: Shotgun
-  popularity: 84
-- track:
-  album:
-    images:
-    - height: 640
-      path: 6e94ab39c917096d876b895dbab0019953d27a96.jpg
-      width: 640
-    - height: 300
-      path: 9b092f765831793404d46b816d688135ff32735f.jpg
-      width: 300
-    - height: 64
-      path: f59354f8d3f2841e44c1bd7aa0cd55a22843cfc7.jpg
-      width: 64
-    release_date: '2014-11-21'
-  artists:
-  - name: David Guetta
-    type: artist
-  - name: Sam Martin
-    type: artist
-  duration_ms: 203641
-  name: Dangerous (feat. Sam Martin)
-  popularity: 64
-- track:
-  album:
-    images:
-    - height: 640
-      path: 6ba02c2ab0ecc649a84fdafb4539e3ad71d0e6ab.jpg
-      width: 640
-    - height: 300
-      path: 6607274645fa3302e4b885c1678e6e2fef40d889.jpg
-      width: 300
-    - height: 64
-      path: 446b2000ec677fed9e915790d8ee8ce021b7db72.jpg
-      width: 64
-    release_date: '2018-05-04'
-  artists:
-  - name: AronChupa
-    type: artist
-  - name: Little Sis Nora
-    type: artist
-  duration_ms: 162732
-  name: Rave in the Grave
-  popularity: 63
-- track:
-  album:
-    images:
-    - height: 640
-      path: 5f9ed99f071ced583dfb5a1dcdac6c555dc755aa.jpg
-      width: 640
-    - height: 300
-      path: f54d58d3c8ff2fb935cfbd8461a7bf867ec88e8b.jpg
-      width: 300
-    - height: 64
-      path: f164a2ba24b716986dbbf2c40d34e5c84bddeec3.jpg
-      width: 64
-    release_date: '2018-07-27'
-  artists:
-  - name: Alan Walker
-    type: artist
-  - name: Au/Ra
-    type: artist
-  - name: Tomine Harket
-    type: artist
-  duration_ms: 211866
-  name: Darkside
-  popularity: 76
-- track:
-  album:
-    images:
-    - height: 640
-      path: 8ebf0216fa9d294177e79cfef03628ed68043454.jpg
-      width: 640
-    - height: 300
-      path: ac7215afbceb58c8a7f3713eaf9d00ff3d959779.jpg
-      width: 300
-    - height: 64
-      path: 014f38920ba75a4efd3488b4626cf6e16f94c9e5.jpg
-      width: 64
-    release_date: '2018-01-12'
-  artists:
-  - name: Camila Cabello
-    type: artist
-  - name: Young Thug
-    type: artist
-  duration_ms: 217306
-  name: Havana (feat. Young Thug)
-  popularity: 84

Some files were not shown because too many files changed in this diff