plainwhite 0.10 → 0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2dfdda677a59b796b7aaa95f6d947ae0b70d2581
4
- data.tar.gz: 79caa0d4ea9cf95107a074cdd612ecfb33de51e5
3
+ metadata.gz: 8868e1b4f14a6e1ad09b1a218ada51668eb5aed9
4
+ data.tar.gz: a2c89fd681f41d01da9ca7db577a3ed6fd6bfc64
5
5
  SHA512:
6
- metadata.gz: 5a5291a3136e70b507f4b55cfd7b0073abd68f41c831ff4663bd1cd74f8bf044874bb5b5ad9fdfd6f2f68bee8f386a775213563da8239b336083c5996f2236ae
7
- data.tar.gz: 84653fd3f3161436d8919352bef8dbfef48e1212aeb200f3fe1460556b9ed630bb9332b9267253ec7a1f9091edf6825508abf20f3505742aaad6b3356af2de25
6
+ metadata.gz: 8d78889ef3b0cb554ae63036f7f46e66370eaa229cd8356fb4c292e8c00414a48e72d279521dbc566347ebd01e906efa9d4d4509f298bd90de088c02d770af4b
7
+ data.tar.gz: cf4cb0cc42f1c38df204a33ed00c9deb8a0051d19090d94ef134db8cdcf1384523ec02fa1e5c82ca0a61f77aa8797a035f9a9b3e14c087d8542a0a57a5de789f
data/README.md CHANGED
@@ -137,6 +137,17 @@ plainwhite:
137
137
  Third Line.
138
138
  ```
139
139
 
140
+ **Search-bar**
141
+
142
+ Search-bar can be enabled by adding the following line to `config.yml`
143
+
144
+ ```yaml
145
+ plainwhite:
146
+ search: true
147
+ ```
148
+
149
+ Search is powered by [Simple-Jekyll-Search](https://github.com/christian-fei/Simple-Jekyll-Search) Jekyll plugin. A `search.json` containing post meta and contents will be generated in site root folder. Plugin JavaScript will then match for posts based on user input. More info and `search.json` customization documentation can be found in plugin repository.
150
+
140
151
  ## Contributing
141
152
 
142
153
  Bug reports and pull requests are welcome on GitHub at https://github.com/thelehhman/plainwhite-jekyll. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -1,121 +1,127 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
- <head>
4
- {%- include head.html -%}
5
- </head>
6
- <body>
7
- <main class="container">
8
- <section class="about">
9
- <a href="/"><img src="{{ "/assets/portfolio.png" | relative_url }}" alt="{{ site.plainwhite.name }}"></a>
10
- <h2 id="title">
11
- <a href="/">{{ site.plainwhite.name }}</a>
12
- </h2>
13
- <p class="tagline">{{ site.plainwhite.tagline }}</p>
14
- <ul class="social">
15
- {%- if site.plainwhite.social_links.github -%}
16
- <a href="https://github.com/{{ site.plainwhite.social_links.github }}">
17
- <li>
18
- <i class="icon-github-circled"></i>
19
- </li>
20
- </a>
21
- {%- endif -%}
22
- {%- if site.plainwhite.social_links.linkedIn -%}
23
- <a href="https://www.linkedin.com/{{ site.plainwhite.social_links.linkedIn }}">
24
- <li>
25
- <i class="icon-linkedin-squared"></i>
26
- </li>
27
- </a>
28
- {%- endif -%}
29
- {%- if site.plainwhite.social_links.twitter -%}
30
- <a href="https://twitter.com/{{ site.plainwhite.social_links.twitter }}">
31
- <li>
32
- <i class="icon-twitter-squared"></i>
33
- </li>
34
- </a>
35
- {%- endif -%}
36
- {%- if site.plainwhite.social_links.instagram -%}
37
- <a href="https://instagram.com/{{ site.plainwhite.social_links.instagram }}">
38
- <li>
39
- <i class="icon-instagram"></i>
40
- </li>
41
- </a>
42
- {%- endif -%}
43
- {%- if site.plainwhite.social_links.facebook -%}
44
- <a href="https://facebook.com/{{ site.plainwhite.social_links.facebook }}">
45
- <li>
46
- <i class="icon-facebook"></i>
47
- </li>
48
- </a>
49
- {%- endif -%}
50
- {%- if site.plainwhite.social_links.youtube -%}
51
- <a href="https://youtube.com/{{ site.plainwhite.social_links.youtube }}">
52
- <li>
53
- <i class="icon-youtube"></i>
54
- </li>
55
- </a>
56
- {%- endif -%}
57
- {%- if site.plainwhite.social_links.pinterest -%}
58
- <a href="https://pinterest.com/{{ site.plainwhite.social_links.pinterest }}">
59
- <li>
60
- <i class="icon-pinterest"></i>
61
- </li>
62
- </a>
63
- {%- endif -%}
64
- {%- if site.plainwhite.social_links.dribbble -%}
65
- <a href="https://dribbble.com/{{ site.plainwhite.social_links.dribbble }}">
66
- <li>
67
- <i class="icon-dribbble"></i>
68
- </li>
69
- </a>
70
- {%- endif -%}
71
- {%- if site.plainwhite.social_links.flickr -%}
72
- <a href="https://flickr.com/{{ site.plainwhite.social_links.flickr }}">
73
- <li>
74
- <i class="icon-flickr"></i>
75
- </li>
76
- </a>
77
- {%- endif -%}
78
- </ul>
79
- {%- if site.plainwhite.navigation -%}
80
- <nav class="navigation">
81
- <ul>
82
- {% for link in site.plainwhite.navigation %}
83
- <li>
84
- <a href="{{ link.url }}">{{ link.title }}</a>
85
- </li>
86
- {% endfor %}
87
- </ul>
88
- </nav>
3
+
4
+ <head>
5
+ {%- include head.html -%}
6
+ </head>
7
+
8
+ <body>
9
+ <main class="container">
10
+ <section class="about">
11
+ <a href="/"><img src="{{ "/assets/portfolio.png" | relative_url }}" alt="{{ site.plainwhite.name }}"></a>
12
+ <h2 id="title">
13
+ <a href="/">{{ site.plainwhite.name }}</a>
14
+ </h2>
15
+ <p class="tagline">{{ site.plainwhite.tagline }}</p>
16
+ <ul class="social">
17
+ {%- if site.plainwhite.social_links.github -%}
18
+ <a href="https://github.com/{{ site.plainwhite.social_links.github }}">
19
+ <li>
20
+ <i class="icon-github-circled"></i>
21
+ </li>
22
+ </a>
23
+ {%- endif -%}
24
+ {%- if site.plainwhite.social_links.linkedIn -%}
25
+ <a href="https://www.linkedin.com/{{ site.plainwhite.social_links.linkedIn }}">
26
+ <li>
27
+ <i class="icon-linkedin-squared"></i>
28
+ </li>
29
+ </a>
30
+ {%- endif -%}
31
+ {%- if site.plainwhite.social_links.twitter -%}
32
+ <a href="https://twitter.com/{{ site.plainwhite.social_links.twitter }}">
33
+ <li>
34
+ <i class="icon-twitter-squared"></i>
35
+ </li>
36
+ </a>
37
+ {%- endif -%}
38
+ {%- if site.plainwhite.social_links.instagram -%}
39
+ <a href="https://instagram.com/{{ site.plainwhite.social_links.instagram }}">
40
+ <li>
41
+ <i class="icon-instagram"></i>
42
+ </li>
43
+ </a>
89
44
  {%- endif -%}
45
+ {%- if site.plainwhite.social_links.facebook -%}
46
+ <a href="https://facebook.com/{{ site.plainwhite.social_links.facebook }}">
47
+ <li>
48
+ <i class="icon-facebook"></i>
49
+ </li>
50
+ </a>
51
+ {%- endif -%}
52
+ {%- if site.plainwhite.social_links.youtube -%}
53
+ <a href="https://youtube.com/{{ site.plainwhite.social_links.youtube }}">
54
+ <li>
55
+ <i class="icon-youtube"></i>
56
+ </li>
57
+ </a>
58
+ {%- endif -%}
59
+ {%- if site.plainwhite.social_links.pinterest -%}
60
+ <a href="https://pinterest.com/{{ site.plainwhite.social_links.pinterest }}">
61
+ <li>
62
+ <i class="icon-pinterest"></i>
63
+ </li>
64
+ </a>
65
+ {%- endif -%}
66
+ {%- if site.plainwhite.social_links.dribbble -%}
67
+ <a href="https://dribbble.com/{{ site.plainwhite.social_links.dribbble }}">
68
+ <li>
69
+ <i class="icon-dribbble"></i>
70
+ </li>
71
+ </a>
72
+ {%- endif -%}
73
+ {%- if site.plainwhite.social_links.flickr -%}
74
+ <a href="https://flickr.com/{{ site.plainwhite.social_links.flickr }}">
75
+ <li>
76
+ <i class="icon-flickr"></i>
77
+ </li>
78
+ </a>
79
+ {%- endif -%}
80
+ </ul>
81
+ {%- if site.plainwhite.navigation -%}
82
+ <nav class="navigation">
83
+ <ul>
84
+ {% for link in site.plainwhite.navigation %}
85
+ <li>
86
+ <a href="{{ link.url }}">{{ link.title }}</a>
87
+ </li>
88
+ {% endfor %}
89
+ </ul>
90
+ </nav>
91
+ {%- endif -%}
92
+ <p>&copy;
93
+ {{ "now" | date: "%Y" }}</p>
94
+ {%- if site.plainwhite.dark_mode -%}
95
+ <div>
96
+ <p>Dark Mode
97
+ <i class="icon-moon"></i>
98
+ <label class="switch">
99
+ <input type="checkbox" id="dark-mode-toggle">
100
+ <span class="slider round" onclick="toggleDarkMode()"></span>
101
+ </label>
102
+ </p>
103
+ </div>
104
+ <script type="text/javascript" src="/assets/js/darkmode.js"></script>
105
+ {%- endif -%}
106
+ </section>
107
+ <section class="content">
108
+ {{ content }}
109
+ </section>
110
+ </main>
111
+ {%- if site.plainwhite.analytics_id -%}
112
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.plainwhite.analytics_id }}"></script>
113
+ <script>
114
+ window.dataLayer = window.dataLayer || [];
115
+ function gtag() { dataLayer.push(arguments); }
116
+ gtag('js', new Date());
117
+ gtag('config', '{{ site.plainwhite.analytics_id }}');
118
+ </script>
119
+ {%- endif -%}
90
120
 
91
- <p>&copy;
92
- {{ "now" | date: "%Y" }}</p>
93
- {%- if site.plainwhite.dark_mode -%}
94
- <div>
95
- <p>Dark Mode
96
- <i class="icon-moon"></i>
97
- <label class="switch">
98
- <input type="checkbox" id="dark-mode-toggle">
99
- <span class="slider round" onclick="toggleDarkMode()"></span>
100
- </label>
101
- </p>
102
- </div>
103
- <script type="text/javascript" src="/assets/js/darkmode.js"></script>
104
- {%- endif -%}
105
- </section>
106
- <section class="content">
107
- {{ content }}
108
- </section>
109
- </main>
110
- {%- if site.plainwhite.analytics_id -%}
111
- <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.plainwhite.analytics_id }}"></script>
112
- <script>
113
- window.dataLayer = window.dataLayer || [];
114
- function gtag() { dataLayer.push(arguments); }
115
- gtag('js', new Date());
121
+ {% if site.plainwhite.search %}
122
+ <script src="/assets/js/simple-jekyll-search.min.js"></script>
123
+ <script src="/assets/js/search.js"></script>
124
+ {% endif %}
125
+ </body>
116
126
 
117
- gtag('config', '{{ site.plainwhite.analytics_id }}');
118
- </script>
119
- {%- endif -%}
120
- </body>
121
127
  </html>
data/_layouts/home.html CHANGED
@@ -10,8 +10,17 @@ layout: default
10
10
 
11
11
  {%- if site.posts.size > 0 -%}
12
12
  <ul class="posts">
13
- <li>
13
+ <li class="posts-labelgroup" id="posts-labelgroup">
14
14
  <h1 id="posts-label">posts</h1>
15
+ {% if site.plainwhite.search %}
16
+ <div class="search-container">
17
+ <div class="search-section">
18
+ <i class="icon-search"></i>
19
+ <input type="text" name="search" id="searchbar" autocomplete="off" aria-label="search in posts">
20
+ </div>
21
+ <div class="search-results" id="search-results" data-placeholder="No Results" style="display: none;"></div>
22
+ </div>
23
+ {% endif %}
15
24
  </li>
16
25
 
17
26
  {%- for post in site.posts -%}
data/_sass/dark.scss CHANGED
@@ -48,4 +48,57 @@
48
48
  }
49
49
  }
50
50
 
51
+ .posts-labelgroup {
52
+
53
+ .search-results {
54
+ background-color: #333;
55
+
56
+ a {
57
+ color: white;
58
+
59
+ &:hover {
60
+ background-color: #171717;
61
+ }
62
+ }
63
+ }
64
+
65
+ .search-section i {
66
+ background-color: transparent;
67
+ }
68
+ }
69
+
70
+ .posts-labelgroup:hover {
71
+
72
+ i {
73
+ color: white;
74
+ }
75
+
76
+ input {
77
+ color: white;
78
+ }
79
+ }
80
+
81
+
82
+ .posts-labelgroup.focus-within {
83
+
84
+ .search-section {
85
+ background-color: #333;
86
+ }
87
+
88
+ input {
89
+ color: $dark_text_color;
90
+ }
91
+
92
+ i {
93
+ color: white;
94
+ }
95
+ }
96
+ }
97
+ .dark table {
98
+ th, td {
99
+ border: 1px solid #333;
100
+ }
101
+ th {
102
+ background-color: #0d0d0d;
103
+ }
51
104
  }
@@ -1,11 +1,11 @@
1
1
  @font-face {
2
2
  font-family: 'fontello';
3
- src: url('../font/fontello.eot?26793073');
4
- src: url('../font/fontello.eot?26793073#iefix') format('embedded-opentype'),
5
- url('../font/fontello.woff2?26793073') format('woff2'),
6
- url('../font/fontello.woff?26793073') format('woff'),
7
- url('../font/fontello.ttf?26793073') format('truetype'),
8
- url('../font/fontello.svg?26793073#fontello') format('svg');
3
+ src: url('../font/fontello.eot?94162162');
4
+ src: url('../font/fontello.eot?94162162#iefix') format('embedded-opentype'),
5
+ url('../font/fontello.woff2?94162162') format('woff2'),
6
+ url('../font/fontello.woff?94162162') format('woff'),
7
+ url('../font/fontello.ttf?94162162') format('truetype'),
8
+ url('../font/fontello.svg?94162162#fontello') format('svg');
9
9
  font-weight: normal;
10
10
  font-style: normal;
11
11
  }
@@ -15,7 +15,7 @@
15
15
  @media screen and (-webkit-min-device-pixel-ratio:0) {
16
16
  @font-face {
17
17
  font-family: 'fontello';
18
- src: url('../font/fontello.svg?26793073#fontello') format('svg');
18
+ src: url('../font/fontello.svg?94162162#fontello') format('svg');
19
19
  }
20
20
  }
21
21
  */
@@ -56,6 +56,7 @@
56
56
  }
57
57
 
58
58
  .icon-calendar:before { content: '\e800'; } /* '' */
59
+ .icon-search:before { content: '\e805'; } /* '' */
59
60
  .icon-github-circled:before { content: '\f09b'; } /* '' */
60
61
  .icon-twitter-squared:before { content: '\f304'; } /* '' */
61
62
  .icon-linkedin-squared:before { content: '\f30c'; } /* '' */
data/_sass/plain.scss CHANGED
@@ -248,13 +248,31 @@ main {
248
248
  font-family: Raleway, sans-serif;
249
249
  }
250
250
  }
251
+ .posts-labelgroup {
252
+ margin: 0 0 0.67em 0;
253
+ display: flex;
254
+ align-items: baseline;
255
+ border-bottom: 1px solid #eee;
256
+ }
251
257
 
252
258
  #posts-label {
253
- border-bottom: 1px solid #eee;
254
259
  font-size: 15px;
255
- color: #777;
260
+ color: #555;
256
261
  text-transform: uppercase;
257
262
  letter-spacing: 0.5px;
258
- padding-bottom: 10px;
263
+ padding: 10px 0;
259
264
  font-weight: normal;
265
+ margin: 0;
266
+ overflow: hidden;
267
+ transition: width 0.1s;
268
+ }
269
+ table {
270
+ th, td {
271
+ padding: 8px 13px;
272
+ border: 1px solid #dfe2e5;
273
+ }
274
+ th {
275
+ background-color: #eee;
276
+ font-family: Raleway;
277
+ }
260
278
  }
data/_sass/search.scss ADDED
@@ -0,0 +1,134 @@
1
+ /* Post Label And Search */
2
+
3
+ /* Hack iOS Safari Unfocus */
4
+ main {
5
+ outline: none;
6
+ }
7
+
8
+ /* Click Anywhere to Unfocus */
9
+ html, body {
10
+ height: 100%;
11
+ }
12
+
13
+ .posts-labelgroup {
14
+ /* Firefox Flex Hack */
15
+ @-moz-document url-prefix() {
16
+ align-items: center;
17
+ }
18
+
19
+ .search-section {
20
+ display: flex;
21
+ flex-grow: 1;
22
+ border-top: 1px solid transparent;
23
+ border-bottom: 1px solid transparent;
24
+ align-items: center;
25
+ border-radius: 5px;
26
+ }
27
+
28
+ i {
29
+ color: #777;
30
+ flex-grow: 0;
31
+ padding: 0 8px;
32
+ transition: color 0.5s;
33
+ font-size: 15px;
34
+ }
35
+
36
+ input {
37
+ color: #555;
38
+ background-color: transparent;
39
+ font-size: 15px;
40
+ flex-grow: 1;
41
+ height: 39px;
42
+ border: none;
43
+ padding: 10px 0;
44
+ outline: none;
45
+ transition: color 0.5s;
46
+ }
47
+
48
+ .search-results {
49
+ display: flex;
50
+ flex-direction: column;
51
+ border-radius: 5px;
52
+ border-top-left-radius: 0;
53
+ border-top-right-radius: 0;
54
+ position: absolute;
55
+ background-color: #fff;
56
+ min-width: 160px;
57
+ width: 100%;
58
+ min-height: 50px;
59
+ box-shadow: 0 1px 2px 0 rgba(32, 33, 36, 0.28);
60
+ z-index: 3;
61
+ padding: 10px 0;
62
+ font-size: 15px;
63
+ border: 1px solid rgba(223,225,229,0);
64
+
65
+ &:empty::before {
66
+ content: attr(data-placeholder);
67
+ padding: 8px 25px 8px 14px;
68
+ }
69
+
70
+ a {
71
+ padding: 8px 25px 8px 14px;
72
+ text-decoration: none;
73
+ display: flex;
74
+ background-color: transparent;
75
+
76
+ &:hover {
77
+ color: black;
78
+ background-color: #eee;
79
+ }
80
+
81
+ &::before {
82
+ content: '\e805';
83
+ font-family: "fontello";
84
+ font-style: normal;
85
+ speak: none;
86
+ display: inline-block;
87
+ text-decoration: inherit;
88
+ font-variant: normal;
89
+ text-transform: none;
90
+ -webkit-font-smoothing: antialiased;
91
+ -moz-osx-font-smoothing: grayscale;
92
+ font-feature-settings: 'liga';
93
+ margin-right: 14px;
94
+ padding: 0 3px;
95
+ color: #9aa0a6;
96
+ }
97
+ }
98
+ }
99
+
100
+ .search-container {
101
+ display: block;
102
+ flex-grow: 1;
103
+ position: relative;
104
+ }
105
+
106
+ &:hover {
107
+
108
+ i {
109
+ color: $linkColor;
110
+ }
111
+ }
112
+
113
+ &.focus-within {
114
+
115
+ .search-section {
116
+ border-bottom-left-radius: 0;
117
+ border-bottom-right-radius: 0;
118
+ box-shadow: 0 1px 2px 0 rgba(32,33,36,0.28);
119
+ border: 1px solid rgba(223,225,229,0);
120
+ border-bottom: solid 1px #eee;
121
+ z-index: 3;
122
+ margin: 0 auto;
123
+ }
124
+
125
+ input {
126
+ color: black;
127
+ }
128
+
129
+ i {
130
+ color: $linkColor;
131
+ padding: 0 14px;
132
+ }
133
+ }
134
+ }
@@ -2,6 +2,11 @@
2
2
  ---
3
3
 
4
4
  @import "plain";
5
+
6
+ {% if site.plainwhite.search %}
7
+ @import "search";
8
+ {% endif %}
9
+
5
10
  {%- if site.plainwhite.dark_mode -%}
6
11
  @import "toggle";
7
12
  @import "dark";
@@ -65,6 +65,160 @@
65
65
  "css": "flickr",
66
66
  "code": 61806,
67
67
  "src": "fontawesome"
68
+ },
69
+ {
70
+ "uid": "779b400b6802edc26f52f0be71977ea5",
71
+ "css": "search",
72
+ "code": 59397,
73
+ "src": "custom_icons",
74
+ "selected": true,
75
+ "svg": {
76
+ "path": "M397 584C500 584 584 500 584 396S500 209 397 209 209 293 209 396 293 584 397 584ZM647 584L854 791 791 854 584 646V613L572 602C525 643 463 666 397 666 246 666 125 547 125 396S246 125 397 125 666 246 666 396C666 463 643 525 602 572L613 584H647Z",
77
+ "width": 1000
78
+ },
79
+ "search": [
80
+ "search"
81
+ ]
82
+ },
83
+ {
84
+ "uid": "26780f48c9ebffeab4e0402830aa8aa1",
85
+ "css": "calendar-1",
86
+ "code": 59393,
87
+ "src": "custom_icons",
88
+ "selected": true,
89
+ "svg": {
90
+ "path": "M71 929H232V768H71V929ZM268 929H446V768H268V929ZM71 732H232V554H71V732ZM268 732H446V554H268V732ZM71 518H232V357H71V518ZM482 929H661V768H482V929ZM268 518H446V357H268V518ZM696 929H857V768H696V929ZM482 732H661V554H482V732ZM286 250V89Q286 82 280 77T268 71H232Q225 71 220 77T214 89V250Q214 257 220 263T232 268H268Q275 268 280 263T286 250ZM696 732H857V554H696V732ZM482 518H661V357H482V518ZM696 518H857V357H696V518ZM714 250V89Q714 82 709 77T696 71H661Q654 71 648 77T643 89V250Q643 257 648 263T661 268H696Q704 268 709 263T714 250ZM929 214V929Q929 958 907 979T857 1000H71Q42 1000 21 979T0 929V214Q0 185 21 164T71 143H143V89Q143 52 169 26T232 0H268Q305 0 331 26T357 89V143H571V89Q571 52 598 26T661 0H696Q733 0 760 26T786 89V143H857Q886 143 907 164T929 214Z",
91
+ "width": 928.6
92
+ },
93
+ "search": [
94
+ "calendar"
95
+ ]
96
+ },
97
+ {
98
+ "uid": "1f1877aff7a2cd39092fcf73c3b5e7cb",
99
+ "css": "github-circled",
100
+ "code": 61595,
101
+ "src": "custom_icons",
102
+ "selected": false,
103
+ "svg": {
104
+ "path": "M429 71Q545 71 644 129T800 285 857 500Q857 640 775 752T564 907Q549 910 542 903T535 886Q535 885 535 843T535 768Q535 714 506 689 538 686 563 679T616 657 661 620 691 562 702 478Q702 411 658 363 679 312 654 249 638 244 608 255T557 280L536 293Q484 278 429 278T321 293Q313 287 298 278T251 256 204 249Q179 312 199 363 155 411 155 478 155 525 167 561T196 620 241 657 293 679 350 689Q329 709 323 747 311 752 298 755T266 758 230 746 199 711Q188 693 172 682T144 668L133 667Q121 667 117 669T114 676 119 684 126 690L130 693Q142 699 154 714T172 743L178 756Q185 777 202 790T239 807 278 810 309 809L322 806Q322 828 322 856T323 886Q323 896 315 903T293 907Q164 864 82 752T0 500Q0 383 58 285T213 129 429 71ZM162 687Q164 683 159 680 153 679 151 681 150 685 155 688 160 691 162 687ZM180 706Q184 703 179 697 173 692 170 695 166 698 171 704 176 710 180 706ZM196 731Q202 727 196 720 192 713 187 717 182 720 187 727T196 731ZM220 754Q224 750 218 744 211 737 207 742 202 747 209 753 215 759 220 754ZM252 768Q253 762 244 759 236 757 234 763T241 772Q249 775 252 768ZM287 771Q287 764 277 765 268 765 268 771 268 778 278 777 287 777 287 771ZM319 766Q318 759 309 761 300 762 301 769T311 773 319 766Z",
105
+ "width": 857.1
106
+ },
107
+ "search": [
108
+ "github-circled"
109
+ ]
110
+ },
111
+ {
112
+ "uid": "c11ff28bd5952cf3f8fde53106c1f264",
113
+ "css": "pinterest-squared",
114
+ "code": 61651,
115
+ "src": "custom_icons",
116
+ "selected": false,
117
+ "svg": {
118
+ "path": "M696 71Q763 71 810 119T857 232V768Q857 834 810 881T696 929H292Q339 861 352 811 357 792 382 695 393 716 423 732T486 748Q587 748 650 665T714 457Q714 410 695 366T641 289 556 235 446 214Q388 214 337 230T252 273 192 334 155 405 143 479Q143 536 165 580T230 641Q237 644 243 641T251 631Q257 606 260 596 263 584 253 573 225 538 225 489 225 406 283 346T434 287Q517 287 564 332T611 449Q611 543 573 609T476 675Q443 675 422 650T409 593Q414 574 424 541T440 484 446 442Q446 415 432 397T390 379Q356 379 332 410T308 488Q308 528 321 556L267 787Q253 843 263 929H161Q94 929 47 881T0 768V232Q0 166 47 119T161 71H696Z",
119
+ "width": 857.1
120
+ },
121
+ "search": [
122
+ "pinterest-squared"
123
+ ]
124
+ },
125
+ {
126
+ "uid": "9da2fbf959f6a46cecb184d8ce8a946f",
127
+ "css": "youtube",
128
+ "code": 61799,
129
+ "src": "custom_icons",
130
+ "selected": false,
131
+ "svg": {
132
+ "path": "M542 694V812Q542 849 520 849 507 849 495 837V669Q507 657 520 657 542 657 542 694ZM731 695V720H680V695Q680 657 705 657T731 695ZM191 573H251V521H77V573H136V891H191V573ZM352 891H402V615H352V826Q335 849 320 849 310 849 309 838 308 836 308 818V615H258V833Q258 861 263 874 270 895 295 895 322 895 352 861V891ZM592 808V698Q592 657 587 643 577 612 547 612 519 612 495 642V521H445V891H495V864Q520 895 547 895 577 895 587 864 592 849 592 808ZM780 802V795H729Q729 824 728 829 724 849 706 849 680 849 680 811V762H780V705Q780 661 765 640 743 612 706 612 668 612 646 640 631 661 631 705V801Q631 845 647 866 669 895 707 895 747 895 767 865 777 850 779 835 780 830 780 802ZM441 293V176Q441 137 417 137T393 176V293Q393 332 417 332T441 293ZM842 712Q842 843 828 907 820 940 795 963T738 988Q636 1000 429 1000T119 988Q87 985 62 963T30 907Q15 845 15 712 15 581 30 517 37 484 62 461T119 435Q222 424 429 424T738 435Q771 439 796 461T828 517Q842 579 842 712ZM285 0H342L275 223V374H219V223Q211 181 185 104 164 47 148 0H208L247 147ZM492 186V283Q492 329 476 349 455 378 417 378 380 378 358 349 343 328 343 283V186Q343 141 358 120 380 92 417 92 455 92 476 120 492 141 492 186ZM679 95V374H628V343Q598 378 570 378 545 378 537 357 533 344 533 315V95H584V300Q584 319 584 320 586 332 596 332 611 332 628 308V95H679Z",
133
+ "width": 857.1
134
+ },
135
+ "search": [
136
+ "youtube"
137
+ ]
138
+ },
139
+ {
140
+ "uid": "15181978a747995fe1633ad28b6ae367",
141
+ "css": "instagram",
142
+ "code": 61805,
143
+ "src": "custom_icons",
144
+ "selected": false,
145
+ "svg": {
146
+ "path": "M571 500Q571 441 530 399T429 357 328 399 286 500 328 601 429 643 530 601 571 500ZM648 500Q648 591 584 656T429 720 273 656 209 500 273 344 429 280 584 344 648 500ZM709 271Q709 292 694 307T657 322 621 307 606 271 621 235 657 220 694 235 709 271ZM429 148Q425 148 386 148T327 148 273 150 216 155 176 166Q148 177 127 198T94 247Q88 263 84 287T78 345 77 398 77 457 77 500 77 543 77 602 78 655 84 713 94 753Q106 781 127 802T176 834Q192 840 216 845T273 850 327 852 386 852 429 852 471 852 530 852 584 850 642 845 681 834Q709 823 731 802T763 753Q769 737 773 713T779 655 780 602 780 543 780 500 780 457 780 398 779 345 773 287 763 247Q752 219 731 198T681 166Q665 160 642 155T584 150 530 148 471 148 429 148ZM857 500Q857 628 854 677 849 793 785 857T606 926Q556 929 429 929T252 926Q136 920 72 857T3 677Q0 628 0 500T3 323Q8 207 72 143T252 74Q301 71 429 71T606 74Q722 80 785 143T854 323Q857 372 857 500Z",
147
+ "width": 857.1
148
+ },
149
+ "search": [
150
+ "instagram"
151
+ ]
152
+ },
153
+ {
154
+ "uid": "3caed0e59d10d08f954176c133c9a97e",
155
+ "css": "flickr",
156
+ "code": 61806,
157
+ "src": "custom_icons",
158
+ "selected": false,
159
+ "svg": {
160
+ "path": "M696 71Q763 71 810 119T857 232V768Q857 834 810 881T696 929H161Q94 929 47 881T0 768V232Q0 166 47 119T161 71H696ZM390 500Q390 451 355 416T271 382 188 416 153 500 188 584 271 618 355 584 390 500ZM704 500Q704 451 670 416T586 382 502 416 468 500 502 584 586 618 670 584 704 500Z",
161
+ "width": 857.1
162
+ },
163
+ "search": [
164
+ "flickr"
165
+ ]
166
+ },
167
+ {
168
+ "uid": "f6b9f865160c1592992c1c667878a429",
169
+ "css": "dribbble",
170
+ "code": 61821,
171
+ "src": "custom_icons",
172
+ "selected": false,
173
+ "svg": {
174
+ "path": "M571 837Q548 703 493 559H492L491 560Q482 563 467 569T411 596 334 642 261 706 204 788L195 782Q298 866 429 866 502 866 571 837ZM468 498Q457 471 439 436 265 488 63 488 63 492 63 500 63 569 87 632T156 744Q184 695 225 651T305 582 378 537 433 510L454 503Q456 502 461 501T468 498ZM409 380Q342 261 272 169 195 205 142 273T70 425Q239 425 409 380ZM790 558Q673 525 562 542 611 675 633 804 695 762 737 698T790 558ZM341 144Q340 144 340 145 340 144 341 144ZM670 225Q567 134 429 134 386 134 342 144 415 239 479 358 518 343 552 324T606 290 642 258 663 235ZM795 496Q793 367 712 267L711 268Q706 275 700 281T676 306 636 340 581 376 507 412Q521 442 532 465 533 468 535 475T540 484Q560 482 581 480T622 479 661 480 696 482 728 485 755 489 775 492 789 495ZM857 500Q857 617 800 715T644 871 429 929 213 871 58 715 0 500 58 285 213 129 429 71 644 129 800 285 857 500Z",
175
+ "width": 857.1
176
+ },
177
+ "search": [
178
+ "dribbble"
179
+ ]
180
+ },
181
+ {
182
+ "uid": "c56117c12f520ffd7bc4258105371001",
183
+ "css": "twitter-squared",
184
+ "code": 62212,
185
+ "src": "custom_icons",
186
+ "selected": false,
187
+ "svg": {
188
+ "path": "M714 340Q683 354 647 359 685 337 699 294 662 315 624 322 590 286 539 286 490 286 456 320T421 403Q421 419 424 430 352 426 289 393T182 307Q166 335 166 366 166 430 217 464 190 463 161 449V450Q161 492 189 525T257 565Q241 570 229 570 222 570 207 567 219 603 249 626T316 649Q252 699 171 699 156 699 143 697 225 750 323 750 385 750 440 730T534 677 601 601 643 510 656 416Q656 406 656 401 691 376 714 340ZM857 232V768Q857 834 810 881T696 929H161Q94 929 47 881T0 768V232Q0 166 47 119T161 71H696Q763 71 810 119T857 232Z",
189
+ "width": 857.1
190
+ },
191
+ "search": [
192
+ "twitter-squared"
193
+ ]
194
+ },
195
+ {
196
+ "uid": "7616a1175ef5c5701831c9653d9a5198",
197
+ "css": "facebook-squared",
198
+ "code": 62216,
199
+ "src": "custom_icons",
200
+ "selected": false,
201
+ "svg": {
202
+ "path": "M696 71Q763 71 810 119T857 232V768Q857 834 810 881T696 929H592V596H703L719 467H592V384Q592 353 605 338T656 322L724 321V206Q689 201 624 201 549 201 503 245T458 372V467H346V596H458V929H161Q94 929 47 881T0 768V232Q0 166 47 119T161 71H696Z",
203
+ "width": 857.1
204
+ },
205
+ "search": [
206
+ "facebook-squared"
207
+ ]
208
+ },
209
+ {
210
+ "uid": "cb9a04e90d634d6b92e1412678342bce",
211
+ "css": "linkedin-squared-1",
212
+ "code": 59393,
213
+ "src": "custom_icons",
214
+ "selected": false,
215
+ "svg": {
216
+ "path": "M132 789H261V402H132V789ZM270 282Q269 253 249 234T198 215 145 234 124 282Q124 311 144 330T196 349H196Q229 349 249 330T270 282ZM596 789H725V567Q725 481 684 437T577 393Q501 393 460 458H461V402H332Q334 439 332 789H461V572Q461 551 465 541 473 522 490 508T531 494Q596 494 596 582V789ZM857 232V768Q857 834 810 881T696 929H161Q94 929 47 881T0 768V232Q0 166 47 119T161 71H696Q763 71 810 119T857 232Z",
217
+ "width": 857.1
218
+ },
219
+ "search": [
220
+ "linkedin-squared"
221
+ ]
68
222
  }
69
223
  ]
70
224
  }
Binary file
@@ -8,6 +8,10 @@
8
8
  <missing-glyph horiz-adv-x="1000" />
9
9
  <glyph glyph-name="calendar" unicode="&#xe800;" d="M71-79h161v161h-161v-161z m197 0h178v161h-178v-161z m-197 197h161v178h-161v-178z m197 0h178v178h-178v-178z m-197 214h161v161h-161v-161z m411-411h179v161h-179v-161z m-214 411h178v161h-178v-161z m428-411h161v161h-161v-161z m-214 197h179v178h-179v-178z m-196 482v161q0 7-6 12t-12 6h-36q-7 0-12-6t-6-12v-161q0-7 6-13t12-5h36q7 0 12 5t6 13z m410-482h161v178h-161v-178z m-214 214h179v161h-179v-161z m214 0h161v161h-161v-161z m18 268v161q0 7-5 12t-13 6h-35q-7 0-13-6t-5-12v-161q0-7 5-13t13-5h35q8 0 13 5t5 13z m215 36v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50v715q0 29 21 50t50 21h72v54q0 37 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 37 27 63t63 26h35q37 0 64-26t26-63v-54h71q29 0 50-21t22-50z" horiz-adv-x="928.6" />
10
10
 
11
+ <glyph glyph-name="calendar-1" unicode="&#xe801;" d="M71-79h161v161h-161v-161z m197 0h178v161h-178v-161z m-197 197h161v178h-161v-178z m197 0h178v178h-178v-178z m-197 214h161v161h-161v-161z m411-411h179v161h-179v-161z m-214 411h178v161h-178v-161z m428-411h161v161h-161v-161z m-214 197h179v178h-179v-178z m-196 482v161q0 7-6 12t-12 6h-36q-7 0-12-6t-6-12v-161q0-7 6-13t12-5h36q7 0 12 5t6 13z m410-482h161v178h-161v-178z m-214 214h179v161h-179v-161z m214 0h161v161h-161v-161z m18 268v161q0 7-5 12t-13 6h-35q-7 0-13-6t-5-12v-161q0-7 5-13t13-5h35q8 0 13 5t5 13z m215 36v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50v715q0 29 21 50t50 21h72v54q0 37 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 37 27 63t63 26h35q37 0 64-26t26-63v-54h71q29 0 50-21t22-50z" horiz-adv-x="928.6" />
12
+
13
+ <glyph glyph-name="search" unicode="&#xe805;" d="M397 266c103 0 187 84 187 188s-84 187-187 187-188-84-188-187 84-188 188-188z m250 0l207-207-63-63-207 208v33l-12 11c-47-41-109-64-175-64-151 0-272 119-272 270s121 271 272 271 269-121 269-271c0-67-23-129-64-176l11-12h34z" horiz-adv-x="1000" />
14
+
11
15
  <glyph glyph-name="github-circled" unicode="&#xf09b;" d="M429 779q116 0 215-58t156-156 57-215q0-140-82-252t-211-155q-15-3-22 4t-7 17q0 1 0 43t0 75q0 54-29 79 32 3 57 10t53 22 45 37 30 58 11 84q0 67-44 115 21 51-4 114-16 5-46-6t-51-25l-21-13q-52 15-107 15t-108-15q-8 6-23 15t-47 22-47 7q-25-63-5-114-44-48-44-115 0-47 12-83t29-59 45-37 52-22 57-10q-21-20-27-58-12-5-25-8t-32-3-36 12-31 35q-11 18-27 29t-28 14l-11 1q-12 0-16-2t-3-7 5-8 7-6l4-3q12-6 24-21t18-29l6-13q7-21 24-34t37-17 39-3 31 1l13 3q0-22 0-50t1-30q0-10-8-17t-22-4q-129 43-211 155t-82 252q0 117 58 215t155 156 216 58z m-267-616q2 4-3 7-6 1-8-1-1-4 4-7 5-3 7 1z m18-19q4 3-1 9-6 5-9 2-4-3 1-9 5-6 9-2z m16-25q6 4 0 11-4 7-9 3-5-3 0-10t9-4z m24-23q4 4-2 10-7 7-11 2-5-5 2-11 6-6 11-1z m32-14q1 6-8 9-8 2-10-4t7-9q8-3 11 4z m35-3q0 7-10 6-9 0-9-6 0-7 10-6 9 0 9 6z m32 5q-1 7-10 5-9-1-8-8t10-4 8 7z" horiz-adv-x="857.1" />
12
16
 
13
17
  <glyph glyph-name="pinterest-squared" unicode="&#xf0d3;" d="M696 779q67 0 114-48t47-113v-536q0-66-47-113t-114-48h-404q47 68 60 118 5 19 30 116 11-21 41-37t63-16q101 0 164 83t64 208q0 47-19 91t-54 77-85 54-110 21q-58 0-109-16t-85-43-60-61-37-71-12-74q0-57 22-101t65-61q7-3 13 0t8 10q6 25 9 35 3 12-7 23-28 35-28 84 0 83 58 143t151 59q83 0 130-45t47-117q0-94-38-160t-97-66q-33 0-54 25t-13 57q5 19 15 52t16 57 6 42q0 27-14 45t-42 18q-34 0-58-31t-24-78q0-40 13-68l-54-231q-14-56-4-142h-102q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535z" horiz-adv-x="857.1" />
Binary file
Binary file
Binary file
@@ -0,0 +1,40 @@
1
+ window.onload = function () {
2
+ var sjs = SimpleJekyllSearch({
3
+ searchInput: document.getElementById('searchbar'),
4
+ resultsContainer: document.getElementById('search-results'),
5
+ json: '/search.json',
6
+ searchResultTemplate: '<a href="{url}" target="_blank">{title}</a>',
7
+ noResultsText: ''
8
+ });
9
+
10
+ /* hack ios safari unfocus */
11
+ if (/Safari/.test(navigator.userAgent) && !/Chrome/.test(navigator.userAgent))
12
+ document.body.firstElementChild.tabIndex = 1;
13
+
14
+ var $labelGroup = document.querySelector(".posts-labelgroup");
15
+ var $searchbar = document.getElementById("searchbar");
16
+ var $postLabel = document.getElementById("posts-label");
17
+ var $searchResults = document.querySelector(".search-results");
18
+ var labelWidth = $postLabel.scrollWidth;
19
+ $postLabel.style.width = labelWidth + "px";
20
+
21
+ $labelGroup.addEventListener("click", function (e) {
22
+ $searchResults.style.display = null;
23
+ $postLabel.style.width = "0";
24
+ $labelGroup.setAttribute("class", "posts-labelgroup focus-within");
25
+ $searchbar.focus();
26
+ e.stopPropagation();
27
+ }, false);
28
+
29
+ $labelGroup.addEventListener("mouseleave", function () {
30
+ document.body.onclick = searchCollapse;
31
+ });
32
+
33
+ var searchCollapse = function (e) {
34
+ $searchResults.style.display = "none";
35
+ $labelGroup.setAttribute("class", "posts-labelgroup");
36
+ $postLabel.style.width = labelWidth + "px";
37
+ document.body.onclick = null;
38
+ };
39
+ }
40
+
@@ -0,0 +1,6 @@
1
+ /*!
2
+ * Simple-Jekyll-Search v1.7.4 (https://github.com/christian-fei/Simple-Jekyll-Search)
3
+ * Copyright 2015-2020, Christian Fei
4
+ * Licensed under the MIT License.
5
+ */
6
+ !function(){"use strict";var o={compile:function M(r){return i.template.replace(i.pattern,function(t,e){var n=i.middleware(e,r[e],i.template);return void 0!==n?n:r[e]||t})},setOptions:function T(t){i.pattern=t.pattern||i.pattern,i.template=t.template||i.template,"function"==typeof t.middleware&&(i.middleware=t.middleware)}},i={};i.pattern=/\{(.*?)\}/g,i.template="",i.middleware=function(){};var n=function x(t,e){var n=e.length,r=t.length;if(n<r)return!1;if(r===n)return t===e;t:for(var i=0,o=0;i<r;i++){for(var u=t.charCodeAt(i);o<n;)if(e.charCodeAt(o++)===u)continue t;return!1}return!0},e=new function J(){this.matches=function(t,e){return n(e.toLowerCase(),t.toLowerCase())}};var r=new function R(){this.matches=function(e,t){return!!e&&(e=e.trim().toLowerCase(),(t=t.trim().toLowerCase()).split(" ").filter(function(t){return 0<=e.indexOf(t)}).length===t.split(" ").length)}};var u={put:function b(t){if(l(t))return p(t);if(function e(t){return Boolean(t)&&"[object Array]"===Object.prototype.toString.call(t)}(t))return function i(t){var e=[];f();for(var n=0,r=t.length;n<r;n++)l(t[n])&&e.push(p(t[n]));return e}(t);return undefined},clear:f,search:function N(t){return t?function a(t,e,n,r){for(var i=[],o=0;o<t.length&&i.length<r.limit;o++){var u=d(t[o],e,n,r);u&&i.push(u)}return i}(c,t,s.searchStrategy,s).sort(s.sort):[]},setOptions:function E(t){(s=t||{}).fuzzy=t.fuzzy||!1,s.limit=t.limit||10,s.searchStrategy=t.fuzzy?e:r,s.sort=t.sort||a}};function a(){return 0}var c=[],s={};function f(){return c.length=0,c}function l(t){return Boolean(t)&&"[object Object]"===Object.prototype.toString.call(t)}function p(t){return c.push(t),c}function d(t,e,n,r){for(var i in t)if(!h(t[i],r.exclude)&&n.matches(t[i],e))return t}function h(t,e){for(var n=!1,r=0,i=(e=e||[]).length;r<i;r++){var o=e[r];!n&&new RegExp(t).test(o)&&(n=!0)}return n}s.fuzzy=!1,s.limit=10,s.searchStrategy=s.fuzzy?e:r,s.sort=a;var m={load:function A(t,e){var n=function r(){return window.XMLHttpRequest?new window.XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP")}();n.open("GET",t,!0),n.onreadystatechange=function i(e,n){return function(){if(4===e.readyState&&200===e.status)try{n(null,JSON.parse(e.responseText))}catch(t){n(t,null)}}}(n,e),n.send()}};var t=function H(t){if(!function e(t){return t&&("undefined"!=typeof t.required&&t.required instanceof Array)}(t))throw new Error("-- OptionsValidator: required options missing");if(!(this instanceof H))return new H(t);var r=t.required;this.getRequiredOptions=function(){return r},this.validate=function(e){var n=[];return r.forEach(function(t){"undefined"==typeof e[t]&&n.push(t)}),n}},v={merge:function X(t,e){var n={};for(var r in t)n[r]=t[r],"undefined"!=typeof e[r]&&(n[r]=e[r]);return n},isJSON:function k(t){try{return t instanceof Object&&JSON.parse(JSON.stringify(t))?!0:!1}catch(e){return!1}}};var w,y,g,O,z;function S(t){u.put(t),function e(){y.searchInput.addEventListener("keyup",function(t){!function e(t){return-1===[13,16,20,37,38,39,40,91].indexOf(t)}(t.which)||(j(),C(t.target.value))})}()}function j(){y.resultsContainer.innerHTML=""}function q(t){y.resultsContainer.innerHTML+=t}function C(t){!function e(t){return t&&0<t.length}(t)||(j(),function i(t,e){var n=t.length;if(0===n)return q(y.noResultsText);for(var r=0;r<n;r++)t[r].query=e,q(o.compile(t[r]))}(u.search(t),t))}function L(t){throw new Error("SimpleJekyllSearch --- "+t)}w=window,y={searchInput:null,resultsContainer:null,json:[],success:Function.prototype,searchResultTemplate:'<li><a href="{url}" title="{desc}">{title}</a></li>',templateMiddleware:Function.prototype,sortMiddleware:function(){return 0},noResultsText:"No results found",limit:10,fuzzy:!1,exclude:[]},O=t({required:g=["searchInput","resultsContainer","json"]}),z=function(t){return 0<O.validate(t).length&&L("You must specify the following required options: "+g),y=v.merge(y,t),o.setOptions({template:y.searchResultTemplate,middleware:y.templateMiddleware}),u.setOptions({fuzzy:y.fuzzy,limit:y.limit,sort:y.sortMiddleware}),(v.isJSON(y.json)?S:function e(n){m.load(n,function(t,e){t&&L("failed to get JSON ("+n+")"),S(e)})})(y.json),{search:C}},w.SimpleJekyllSearch=function(t){var e=z(t);return y.success.call(e),e}}();
data/sitemap.xml CHANGED
@@ -10,7 +10,7 @@ layout: null
10
10
  http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
11
11
  <url>
12
12
  <loc>{{ site.url }}</loc>
13
- <lastmod>2019-06-07T00:00:00+00:00</lastmod>
13
+ <lastmod>{{ 'now' | date_to_xmlschema }}</lastmod>
14
14
  <priority>1.00</priority>
15
15
  </url>
16
16
  {%- for post in site.posts -%}
@@ -22,4 +22,4 @@ layout: null
22
22
  </url>
23
23
  {%- endfor -%}
24
24
  </urlset>
25
- {%- endif -%}
25
+ {%- endif -%}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plainwhite
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.10'
4
+ version: '0.11'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samarjeet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-17 00:00:00.000000000 Z
11
+ date: 2020-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -88,6 +88,7 @@ files:
88
88
  - _sass/ext/_solarized-dark.scss
89
89
  - _sass/ext/_solarized-light.scss
90
90
  - _sass/plain.scss
91
+ - _sass/search.scss
91
92
  - _sass/toggle.scss
92
93
  - assets/.DS_Store
93
94
  - assets/css/style.scss
@@ -98,6 +99,8 @@ files:
98
99
  - assets/font/fontello.woff
99
100
  - assets/font/fontello.woff2
100
101
  - assets/js/darkmode.js
102
+ - assets/js/search.js
103
+ - assets/js/simple-jekyll-search.min.js
101
104
  - assets/portfolio.png
102
105
  - sitemap.xml
103
106
  homepage: https://thelehhman.com/