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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -3
  3. metadata +2 -3
  4. data/_includes/timeline.html +0 -16
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a244f555af637bbb66de0f8a7f73b72901d339656f98eb93bd736f0c307dc700
4
- data.tar.gz: 9d0347c5d08b003671943f9dbed3c66e94ee8d648b5c2950e294bf12ca20e6f2
3
+ metadata.gz: 1da71ee0d4edcd51a4985d416f73c7efae7c1c7894e824e100ecf9e4b63d08bd
4
+ data.tar.gz: 1f1c38c3094f3b2f4256680f1e98782391124dcee2216a4c62e7dbbacbb83961
5
5
  SHA512:
6
- metadata.gz: '083fea0bd43c65bb1c2fcb2b21a1274d79f668470634614e19af5ff266582ceb17aeafba71b0de55faab1228d9bacbbfa9c877c52746e6eca185a7a97a53e0dc'
7
- data.tar.gz: '00349052d542bdba26827184485573f417983410296fd777523b6fdd0102d3d63fdd1e5d0534b597e07b2a5a3c385d6e0e1433f4ee272fb226f7fc0692818b90'
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
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
3
+ This is a simple jekyll theme based on [minima](https://github.com/jekyll/minima).
4
4
 
5
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
5
+ Preview [demo](https://kemingy.github.io/jekyll-theme-ink/)
6
6
 
7
- TODO: Delete this and the text above, and describe your gem
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.0
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: {}
@@ -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>