jekyll-theme-hamilton 1.4.1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39480af49998d2e8dad95156c9076711b51471f534f4cc644b087dee88ff34fa
4
- data.tar.gz: 926c34c3672bb17eccb6816068b9a74c002574e35bab9ed9beadd610e0a26f9e
3
+ metadata.gz: 3584d766d15707fc08538543ef6f6ed16736c17aa508ba585e88c8fcece167b3
4
+ data.tar.gz: 1b67ff489722f6f6cbd810fc791d369090f46eacc63d2de1fb9f3b6bcf3cb4b3
5
5
  SHA512:
6
- metadata.gz: b5417ce5ef6d93fd608e20bbb7e260296a626c5f7277ed41c07d76ed1c01a56fe51a79aa8dcd47aac78bccf255bdafc02879bb2c2a44bcb4dfa7e79cd2946d6d
7
- data.tar.gz: 83916ef5b7495f9c8c7450df7fdb5db2744ae09f4d2b71c3c85a390015100305a1cdf017512ac431bb30c7bf1ee479c4100d031093f0747ee985f17bfc2eca6c
6
+ metadata.gz: 5396fbee10b7f047b8d11a50a55488f6ab26f324a2bc3a95ab7aa1f4b62a004d98f94c68399c6ffc0dbaf89944c6e5621dc2f32d914c6a9f2957d7c13bd3a4d8
7
+ data.tar.gz: 719c26f3a3374deb5225a8c74a359e2581e0ae1bb4e62aca26f363554ac96a294cfe535886d7c2b0c38b5c92be95c3c2c191c255393b406c3c110e952ee410ac
data/README.md CHANGED
@@ -32,7 +32,6 @@ Please check out the [demo](https://ngzhio.github.io/jekyll-theme-hamilton/).
32
32
  - [Optional Parameters](#optional-parameters)
33
33
  - [Archive Pages](#archive-pages)
34
34
  - [MathJax](#mathjax)
35
- - [Images](#images)
36
35
  - [Customization](#customization)
37
36
  - [Metadata](#metadata)
38
37
  - [Navigation](#navigation)
@@ -86,7 +85,7 @@ After installation, you can run `jekyll serve` to check out your site, but befor
86
85
  | `email` | string | The email of the author of the site. |
87
86
  | `skin` | string | The skin name. See more information on the [Customization](#customization) section. |
88
87
  | `lang` | string | The language of the site; The default value is `en`. |
89
- | `paginate` | int | The number of posts on each page. To enable pagination, you must use a third-party plugin, e.g. [`jekyll-paginate`](https://github.com/jekyll/jekyll-paginate), [`jekyll-paginate-v2`](https://github.com/sverrirs/jekyll-paginate-v2), or [`jekyll-pagination`](https://github.com/prometheus-ev/jekyll-pagination). |
88
+ | `paginate` | int | The number of posts on each page. |
90
89
  | `date_format` | string | The date format; The default value is `%b %-d, %Y`. |
91
90
 
92
91
  ## Archive Pages
@@ -117,30 +116,6 @@ layout: archive-years
117
116
 
118
117
  You can enable MathJax on each post or page, just set `math: true` on that page.
119
118
 
120
- ## Images
121
-
122
- Hamilton provides a template [`image.html`](_includes/image.html) to let you import images on each post through an elegant way. For example,
123
-
124
- ```liquid
125
- {% include image.html src="the/path/to/the/image" %}
126
- ```
127
-
128
- By default, the alignment of the image is center, but you can configure the alignment to left or right by passing a parameter `align`, for example,
129
-
130
- ```liquid
131
- {% include image.html src="the/path/to/the/image" align="left" %}
132
- ```
133
-
134
- You can also configure the width and height of the image,
135
-
136
- ```liquid
137
- {% include image.html src="the/path/to/the/image" width="50%" height="128px" %}
138
- ```
139
-
140
- Besides, you can pass the `caption` parameter to the include, then it will wrap the `img` with a `figure` block; alternatively, you can pass the `alt` parameter to the include.
141
-
142
- If you feel that passing a long path to the image to the include is ugly and wasting time, you can replace the `src` parameter with the `name` parameter, which is just the name of the image, and by default, the path would be `assets/img/posts/{{ page.title | slugify}}/{{ include.name }}`.
143
-
144
119
  ## Customization
145
120
 
146
121
  ### Metadata
@@ -15,12 +15,7 @@
15
15
  {% endif %}
16
16
 
17
17
  <!-- Google Fonts -->
18
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
19
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open%20Sans">
20
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
21
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Dancing%20Script">
22
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto%20Sans%20SC">
23
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto%20Serif%20SC">
18
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Roboto%20Slab|Roboto%20Mono|Lobster|Dancing%20Script|Noto%20Sans%20SC|Noto%20Sans%20TC|Noto%20Serif%20SC|Noto%20Serif%20TC|ZCOOL%20QingKe%20HuangYou|Ma%20Shan%20Zheng">
24
19
 
25
20
  <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
26
21
  <link rel="stylesheet" href="{{ '/assets/css/skin.css' | relative_url }}">
@@ -2,7 +2,7 @@
2
2
  <script>
3
3
  function clickSidebarButton() {
4
4
  const elem = document.getElementById("site-sidebar")
5
- if (elem.style.display == "none") {
5
+ if (elem.style.display == "none" || elem.style.display == "") {
6
6
  elem.style.display = "block";
7
7
  } else {
8
8
  elem.style.display = "none";
@@ -70,7 +70,14 @@ layout: page
70
70
  </li>
71
71
  {%- endfor -%}
72
72
  </ul>
73
- <a href="#" class="back-to-top">Top &#8648;</a>
73
+ <a href="#" onclick="backToTop()" class="back-to-top">Top &#8648;</a>
74
74
  {%- endif -%}
75
75
  {%- endfor -%}
76
76
  {%- endfor -%}
77
+
78
+ <script>
79
+ function backToTop() {
80
+ const main = document.getElementById("site-main");
81
+ main.scrollTop = 0;
82
+ }
83
+ </script>
@@ -33,5 +33,12 @@ layout: page
33
33
  </li>
34
34
  {%- endfor -%}
35
35
  </ul>
36
- <a href="#" class="back-to-top">Top &#8648;</a>
36
+ <a href="#" onclick="backToTop()" class="back-to-top">Top &#8648;</a>
37
37
  {%- endfor -%}
38
+
39
+ <script>
40
+ function backToTop() {
41
+ const main = document.getElementById("site-main");
42
+ main.scrollTop = 0;
43
+ }
44
+ </script>
@@ -15,7 +15,7 @@
15
15
  <aside class="site-sidebar" id="site-sidebar">
16
16
  {% include sidebar.html %}
17
17
  </aside>
18
- <main class="site-main" aria-label="Content">
18
+ <main class="site-main" id="site-main" aria-label="Content">
19
19
  {{ content }}
20
20
  <footer class="site-footer">
21
21
  {% include footer.html %}
@@ -28,26 +28,60 @@ layout: default
28
28
  {%- endif -%}
29
29
  </p>
30
30
 
31
- {% if page.tags.size > 0 %}
32
- <p class="post-meta post-tags">
33
- {% assign tags = page.tags | sort %}
34
- {% for tag in tags %}
35
- <span class="post-tag">
36
- {% assign slugified_tag = tag | slugify %}
37
- <a href="{{ '/tags/#:tag' | replace: ':tag', slugified_tag | relative_url }}">#{{ slugified_tag }}</a>
38
- </span>
39
- {% endfor %}
40
- </p>
41
- {% endif %}
42
-
43
31
  </header>
44
32
 
45
33
  <div class="post-content e-content" itemprop="articleBody">
46
34
  {{ content }}
35
+ </div>
47
36
 
48
- {% if page.comments != false and jekyll.environment == "production" %}
49
- {% include disqus.html %}
37
+ <footer class="post-footer">
38
+ {% if page.categories.size > 0 %}
39
+ <div class="post-meta">
40
+ <i class="fas fa-folder"></i>
41
+ <ul class="post-taxonomies post-categories">
42
+ {% assign categories = page.categories | sort %}
43
+ {% for category in categories %}
44
+ <li class="post-category">
45
+ {% assign slugified_category = category | slugify %}
46
+ <a href="{{ '/categories/#:category' | replace: ':category', slugified_category | relative_url }}">{{ category }}</a>
47
+ </li>
48
+ {% endfor %}
49
+ </ul>
50
+ </div>
50
51
  {% endif %}
51
- </div>
52
+
53
+ {% if page.tags.size > 0 %}
54
+ <div class="post-meta">
55
+ <i class="fas fa-tags"></i>
56
+ <ul class="post-taxonomies post-tags">
57
+ {% assign tags = page.tags | sort %}
58
+ {% for tag in tags %}
59
+ <li class="post-tag">
60
+ {% assign slugified_tag = tag | slugify %}
61
+ <a href="{{ '/tags/#:tag' | replace: ':tag', slugified_tag | relative_url }}">{{ slugified_tag }}</a>
62
+ </li>
63
+ {% endfor %}
64
+ </ul>
65
+ </div>
66
+ {% endif %}
67
+
68
+ <nav class="post-pagination" role="navigation">
69
+ {% if page.previous %}
70
+ <a class="post-previous" href="{{ page.previous.url | relative_url }}">
71
+ <i class="fas fa-arrow-left"></i> {{ page.previous.title | markdownify | strip_html }}
72
+ </a>
73
+ {% endif %}
74
+
75
+ {% if page.next %}
76
+ <a class="post-next" href="{{ page.next.url | relative_url }}">
77
+ {{ page.next.title | markdownify | strip_html }} <i class="fas fa-arrow-right"></i>
78
+ </a>
79
+ {% endif %}
80
+ </nav>
81
+ </footer>
82
+
83
+ {% if page.comments != false and jekyll.environment == "production" %}
84
+ {% include disqus.html %}
85
+ {% endif %}
52
86
 
53
87
  </article>
@@ -6,7 +6,7 @@
6
6
  width: 100vw;
7
7
  display: grid;
8
8
  grid-template-columns: 1fr;
9
- grid-template-rows: $base-font-size * 3 1fr;
9
+ grid-template-rows: $base-font-size * 3 + 6px 1fr;
10
10
  }
11
11
 
12
12
  /**
@@ -17,8 +17,6 @@
17
17
  border-bottom: 1px solid;
18
18
  min-height: $base-font-size * 3;
19
19
  line-height: $base-font-size * 3;
20
- position: sticky;
21
- top: 0;
22
20
 
23
21
  @include media-query($on-small) {
24
22
  display: flex;
@@ -27,7 +25,7 @@
27
25
 
28
26
  .site-sidebar-button {
29
27
  position: absolute;
30
- top: -2px;
28
+ top: 3px;
31
29
  left: $spacing-unit / 2;
32
30
 
33
31
  img {
@@ -43,7 +41,7 @@
43
41
 
44
42
  .site-title {
45
43
  @include relative-font-size(1.625);
46
- font-family: $title-font-family;
44
+ font-family: $handwriting-font-family;
47
45
  letter-spacing: -1px;
48
46
  margin-bottom: 0;
49
47
  float: left;
@@ -55,7 +53,7 @@
55
53
 
56
54
  .site-nav {
57
55
  position: absolute;
58
- top: 9px;
56
+ top: 12px;
59
57
  right: $spacing-unit / 2;
60
58
  border: 1px solid;
61
59
  border-radius: 0.4em;
@@ -114,7 +112,6 @@
114
112
  .dropdown-content {
115
113
  display: none;
116
114
  position: absolute;
117
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
118
115
  z-index: 1;
119
116
  }
120
117
 
@@ -184,7 +181,7 @@
184
181
  */
185
182
  .site-body {
186
183
  display: grid;
187
- grid-template-columns: calc(#{$content-width} * 0.2) 1fr;
184
+ grid-template-columns: calc(#{$content-width} * 0.22) 1fr;
188
185
  overflow: hidden;
189
186
 
190
187
  @include media-query($on-medium) {
@@ -200,11 +197,12 @@
200
197
  * Site sidebar
201
198
  */
202
199
  .site-sidebar {
203
- padding: $spacing-unit / 2;
200
+ padding: $spacing-unit;
204
201
  border-right: 1px solid;
205
202
  @include relative-font-size(0.8);
206
203
 
207
204
  @include media-query($on-medium) {
205
+ padding: $spacing-unit / 2;
208
206
  @include relative-font-size(0.6);
209
207
  }
210
208
 
@@ -246,14 +244,13 @@
246
244
  margin-bottom: 0;
247
245
  }
248
246
 
249
- .social-icons {
247
+ ul.social-icons {
250
248
  list-style: none;
251
249
  margin-left: 0;
252
250
  margin-bottom: 0;
253
- text-align: left;
254
- display: flex;
255
251
 
256
- .social-icon {
252
+ > li {
253
+ display: inline-block;
257
254
  margin: 0.3em;
258
255
  }
259
256
  }
@@ -275,8 +272,13 @@
275
272
  -ms-overflow-style: none; // IE and Edge
276
273
  scrollbar-width: none; // Firefox
277
274
 
278
- padding-left: $spacing-unit / 2;
279
- padding-right: $spacing-unit / 2;
275
+ padding-left: $spacing-unit;
276
+ padding-right: $spacing-unit;
277
+
278
+ @include media-query($on-medium) {
279
+ padding-left: $spacing-unit / 2;
280
+ padding-right: $spacing-unit / 2;
281
+ }
280
282
 
281
283
  @include media-query($on-small) {
282
284
  padding-left: 0;
@@ -309,6 +311,11 @@
309
311
 
310
312
  h2 {
311
313
  margin-bottom: 0;
314
+ @include relative-font-size(1.4);
315
+
316
+ @media screen and (min-width: $on-large) {
317
+ @include relative-font-size(1.5);
318
+ }
312
319
  }
313
320
 
314
321
  .post-excerpt {
@@ -321,14 +328,6 @@
321
328
  }
322
329
  }
323
330
 
324
- .post-link {
325
- @include relative-font-size(1.5);
326
-
327
- @media screen and (min-width: $on-large) {
328
- @include relative-font-size(1.55);
329
- }
330
- }
331
-
332
331
  /**
333
332
  * Pagination
334
333
  */
@@ -360,7 +359,7 @@
360
359
  */
361
360
  .post-header {
362
361
  padding-top: $spacing-unit * 2;
363
- padding-bottom: $spacing-unit / 2;
362
+ padding-bottom: $spacing-unit;
364
363
  border-bottom: 1px solid;
365
364
  margin-bottom: $spacing-unit * 2;
366
365
  text-align: center;
@@ -371,13 +370,48 @@
371
370
  margin-bottom: $spacing-unit / 2;
372
371
  }
373
372
 
374
- .post-tags {
375
- .post-tag {
376
- margin-right: $spacing-unit / 2;
373
+ .post-footer {
374
+ padding-top: $spacing-unit / 2;
375
+ border-top: 1px solid;
376
+ border-bottom: 1px solid;
377
+ }
378
+
379
+ ul.post-taxonomies {
380
+ list-style: none;
381
+ display: inline-block;
382
+ vertical-align: middle;
383
+ margin: 0 0 0 $spacing-unit / 3;
384
+
385
+ li {
386
+ float: left;
387
+ margin-right: $spacing-unit / 6;
388
+ padding: 0.3em 0.5em 0.2em 0.5em;
377
389
  }
378
-
379
- > :last-child {
380
- margin-right: 0;
390
+ }
391
+
392
+ ul.post-tags {
393
+ li {
394
+ border-radius: 0.5em;
395
+ }
396
+ }
397
+
398
+ ul.post-categories {
399
+ li {
400
+ text-decoration: underline;
401
+ }
402
+ }
403
+
404
+ .post-pagination {
405
+ @include relative-font-size(0.8);
406
+ display: flex;
407
+ justify-content: space-between;
408
+ padding-top: $spacing-unit / 2;
409
+ padding-bottom: $spacing-unit / 2;
410
+ border-top: 1px solid;
411
+
412
+ .post-previous
413
+ .post-next {
414
+ display: block;
381
415
  }
382
416
  }
383
417
 
@@ -385,13 +419,14 @@
385
419
  // About font sizes for h1-h6, refer to https://stackoverflow.com/a/6140504/13261366
386
420
  .post-title,
387
421
  .post-content h1 {
388
- @include relative-font-size(2);
422
+ font-family: $display-font-family;
423
+ @include relative-font-size(1.8);
389
424
  font-weight: bold;
390
425
  letter-spacing: -1px;
391
426
  line-height: $base-line-height * $base-font-size * 2;
392
427
 
393
428
  @media screen and (min-width: $on-large) {
394
- @include relative-font-size(2.5);
429
+ @include relative-font-size(2);
395
430
  }
396
431
  }
397
432
 
@@ -404,19 +439,15 @@
404
439
  h5, h6 { margin-top: $spacing-unit }
405
440
 
406
441
  h2 {
407
- @include relative-font-size(1.5);
442
+ @include relative-font-size(1.4);
408
443
 
409
444
  @media screen and (min-width: $on-large) {
410
- @include relative-font-size(1.55);
445
+ @include relative-font-size(1.5);
411
446
  }
412
447
  }
413
448
 
414
449
  h3 {
415
450
  @include relative-font-size(1.17);
416
-
417
- @media screen and (min-width: $on-large) {
418
- @include relative-font-size(1.175);
419
- }
420
451
  }
421
452
 
422
453
  h4 {
@@ -28,7 +28,7 @@ code {
28
28
  }
29
29
 
30
30
  pre {
31
- box-shadow: $box-shadow;
31
+ box-shadow: $pre-shadow;
32
32
  }
33
33
 
34
34
  .highlight {
@@ -96,6 +96,7 @@ table {
96
96
 
97
97
  .dropdown-content {
98
98
  background-color: $border-color-light;
99
+ box-shadow: $dropdown-shadow;
99
100
  }
100
101
  }
101
102
 
@@ -121,6 +122,20 @@ table {
121
122
  color: $text-color-light;
122
123
  }
123
124
 
125
+ .post-footer {
126
+ border-color: $border-color-light;
127
+ }
128
+
129
+ .post-pagination {
130
+ border-color: $border-color-light;
131
+ }
132
+
133
+ ul.post-tags {
134
+ li {
135
+ background-color: $border-color-light;
136
+ }
137
+ }
138
+
124
139
  .pagination {
125
140
  li {
126
141
  a, div {
@@ -16,7 +16,8 @@ $table-header-bg-color: mix($background-color, $border-color, 80%) !default;
16
16
  $table-header-border: $border-color !default;
17
17
  $table-border-color: lighten($border-color, 20%) !default;
18
18
 
19
- $box-shadow: 0 0 4px rgba(17,17,17,0.4) inset !default;
19
+ $pre-shadow: 0 0 4px rgba(17,17,17,0.4) inset !default;
20
+ $dropdown-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2) !default;
20
21
 
21
22
  $subscribe-color: #b21000 !default;
22
23
 
@@ -3,8 +3,8 @@ $text-color-light: silver !default;
3
3
  $background-color: #121212 !default;
4
4
  $code-background-color: #49483e !default;
5
5
 
6
- $border-color: mix($text-color, $background-color, 22%) !default;
7
- $border-color-light: darken($border-color, 10%) !default;
6
+ $border-color: mix($text-color, $background-color, 30%) !default;
7
+ $border-color-light: darken($border-color, 5%) !default;
8
8
  $border-color-dark: lighten($border-color, 10%) !default;
9
9
 
10
10
  $link-base-color: #00b1c9 !default;
@@ -16,7 +16,8 @@ $table-header-bg-color: mix($background-color, $border-color-light, 5%) !default
16
16
  $table-header-border: lighten($border-color, 30%) !default;
17
17
  $table-border-color: lighten($border-color, 20%) !default;
18
18
 
19
- $box-shadow: 0 0 4px rgba(255,255,255,0.4) inset !default;
19
+ $pre-shadow: 0 0 4px rgba(255,255,255,0.4) inset !default;
20
+ $dropdown-shadow: 0px 8px 16px 0px rgba(255,255,255,0.2) !default;
20
21
 
21
22
  $subscribe-color: tomato !default;
22
23
 
@@ -16,7 +16,8 @@ $table-header-bg-color: mix($background-color, $border-color, 70%) !default;
16
16
  $table-header-border: $border-color !default;
17
17
  $table-border-color: $border-color-light !default;
18
18
 
19
- $box-shadow: 0 0 4px rgba(34,34,34,0.4) inset !default;
19
+ $pre-shadow: 0 0 4px rgba(34,34,34,0.4) inset !default;
20
+ $dropdown-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2) !default;
20
21
 
21
22
  $subscribe-color: #004e00 !default;
22
23
 
@@ -1,8 +1,9 @@
1
1
  // Fonts
2
- $base-font-family: "Open Sans", "Noto Serif SC" !default;
3
- $title-font-family: "Dancing Script" !default;
4
- $reading-font-family: Roboto, "Noto Sans SC" !default;
5
- $code-font-family: Inconsolata !default;
2
+ $base-font-family: Roboto, "Noto Sans SC", "Noto Sans TC" !default;
3
+ $reading-font-family: "Roboto Slab", "Noto Serif SC", "Noto Serif TC" !default;
4
+ $code-font-family: "Roboto Mono" !default;
5
+ $display-font-family: Lobster, "ZCOOL QingKe HuangYou" !default;
6
+ $handwriting-font-family: "Dancing Script", "Ma Shan Zheng" !default;
6
7
  $base-font-size: 18px !default;
7
8
  $base-line-height: 1.4 !default;
8
9
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-hamilton
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shangzhi Huang
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-01 00:00:00.000000000 Z
11
+ date: 2020-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,56 +16,70 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.0'
19
+ version: '3.8'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '4.0'
26
+ version: '3.8'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jekyll-seo-tag
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 2.6.1
33
+ version: '2.6'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 2.6.1
40
+ version: '2.6'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jekyll-feed
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.13.0
47
+ version: '0.13'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.13.0
54
+ version: '0.13'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: jekyll-sitemap
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 1.4.0
61
+ version: '1.4'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 1.4.0
68
+ version: '1.4'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-paginate
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.1'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.1'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: bundler
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -109,7 +123,6 @@ files:
109
123
  - _includes/google-analytics.html
110
124
  - _includes/head.html
111
125
  - _includes/header.html
112
- - _includes/image.html
113
126
  - _includes/mathjax.html
114
127
  - _includes/sidebar.html
115
128
  - _layouts/archive-taxonomies.html
@@ -1,16 +0,0 @@
1
- {% capture align %}align-{{ include.align | default: "center" }}{% endcapture %}
2
-
3
- {%- if include.src -%}
4
- {% assign src = include.src %}
5
- {%- elsif include.name -%}
6
- {% capture src %}assets/img/posts/{{ page.title | slugify }}/{{ include.name }}{% endcapture %}
7
- {%- endif -%}
8
-
9
- {% if include.caption %}
10
- <figure class="{{ align }}">
11
- <img class="{{ align }}" src="{{ src | absolute_url }}" alt="{{ include.caption }}" {% if include.width %}width="{{ include.width }}"{% endif %} {% if include.height %}height="{{ include.height }}"{% endif %}/>
12
- <figcaption class="{{ align }}">{{ include.caption }}</figcaption>
13
- </figure>
14
- {% else %}
15
- <img class="{{ align }}" src="{{ src | absolute_url }}" alt="{{ include.alt }}" {% if include.width %}width="{{ include.width }}"{% endif %} {% if include.height %}height="{{ include.height }}"{% endif %}/>
16
- {% endif %}