jekyll-theme-ink 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +11 -3
- metadata +2 -3
- data/_includes/timeline.html +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1da71ee0d4edcd51a4985d416f73c7efae7c1c7894e824e100ecf9e4b63d08bd
|
4
|
+
data.tar.gz: 1f1c38c3094f3b2f4256680f1e98782391124dcee2216a4c62e7dbbacbb83961
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb2271990984b60b5025c9aaaf2e194a9626b06009494988279a113891df8e090450403c9c45a50023eac4ade0a0c61aa1a8507fcf4831207c7494285b6ece18
|
7
|
+
data.tar.gz: f80736fc8a5b7affd9f15541fbd7dc0be7792f60c7a4f73384eb35a1cef9c555f5fe6dd3fcbc387f072eef6c7c8e55c2150d3b7652630974ef734efebdbf3f98
|
data/README.md
CHANGED
@@ -1,10 +1,18 @@
|
|
1
1
|
# jekyll-theme-ink
|
2
2
|
|
3
|
-
|
3
|
+
This is a simple jekyll theme based on [minima](https://github.com/jekyll/minima).
|
4
4
|
|
5
|
-
|
5
|
+
Preview [demo](https://kemingy.github.io/jekyll-theme-ink/)
|
6
6
|
|
7
|
-
|
7
|
+
## Feature
|
8
|
+
|
9
|
+
- [x] Archive with categories
|
10
|
+
- [x] MathJax
|
11
|
+
- [x] Google Analystics
|
12
|
+
- [x] SEO with jekyll-seo-tag
|
13
|
+
- [x] RSS
|
14
|
+
- [x] Sitemap
|
15
|
+
- [x] Adapt mobile
|
8
16
|
|
9
17
|
|
10
18
|
## Installation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-ink
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- keming
|
@@ -69,7 +69,6 @@ files:
|
|
69
69
|
- _includes/header.html
|
70
70
|
- _includes/mathjax.html
|
71
71
|
- _includes/social.html
|
72
|
-
- _includes/timeline.html
|
73
72
|
- _layouts/archive.html
|
74
73
|
- _layouts/category.html
|
75
74
|
- _layouts/default.html
|
@@ -82,7 +81,7 @@ files:
|
|
82
81
|
- _sass/ink/_syntax-highlight.scss
|
83
82
|
- assets/main.scss
|
84
83
|
- assets/social-icons.svg
|
85
|
-
homepage: https://github.com/kemingy
|
84
|
+
homepage: https://github.com/kemingy/jekyll-theme-ink/
|
86
85
|
licenses:
|
87
86
|
- MIT
|
88
87
|
metadata: {}
|
data/_includes/timeline.html
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
<div class="timeline">
|
2
|
-
<div class="date-meta">
|
3
|
-
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
4
|
-
{{ post.date | date: date_format }}
|
5
|
-
</div>
|
6
|
-
<div class="post-card">
|
7
|
-
<div class="post-title">
|
8
|
-
{{ post.title | escape }}
|
9
|
-
</div>
|
10
|
-
{%- if site.excerpts.enable -%}
|
11
|
-
<div class="post-excerpt">
|
12
|
-
{{ post.excerpt | remove: '<p>' | remove: '</p>' | truncate: site.excerpts.length }}
|
13
|
-
</div>
|
14
|
-
{%- endif -%}
|
15
|
-
</div>
|
16
|
-
</div>
|