limp-dark 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 2780c33166cea20a2f7708f1bbfd0c7202b00f3edf7db0756b0576e2b102eee4
4
- data.tar.gz: 19dfd434df1cbac71cb57b0dd3763e532d0d039e14d880ba50dd0f32d190dd92
3
+ metadata.gz: 074e0923a5ff9378a0bf8c615e27c4604e9d2d6f281c507f53e61f75a9228766
4
+ data.tar.gz: d319c726f61b1105f4c8371b7dfc588afb0fc04fce299f5af401ec58b906bd17
5
5
  SHA512:
6
- metadata.gz: 6ad44d543b516e0d7899e824cd4813f61f129c092115ca78f29738c58e4d8e924de32de9cf45e4b0f7035a8461b3ac4415ee111f89a708f4d1bf4e6ec55bf8b2
7
- data.tar.gz: 9726d62ddf5011b97bfe5da6f2ec351a1ea2fa43a7e076518154d114a92cdc0ee298bd15c57564044e7c3d010bb16ad1081f7d41fac7ec54e5de0dacecff60cc
6
+ metadata.gz: 2ee22db0fc19969b62ed24873b4bd8633bfd2ea8d0d3448cd253ec2bec40e06627a7201c919fdec57a367783d8b9958714b82f7a8fb46da2adf50aaa61aeed5c
7
+ data.tar.gz: fe1bf46023efbbada6c809c19bd3eceb7bd01b876a58b0a5a00b62ed63fad96860664d8898dd4be0acb7523bb040462de34d5f3270440ab2c1f28b7df5e088a2
data/README.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # Limp
2
2
 
3
+ ![verion-batch](https://badge.fury.io/rb/limp-dark.svg) <a href="https://jekyll-themes.com"><img src="https://img.shields.io/badge/featured%20on-JekyllThemes-red.svg" height="20" alt="Jekyll Themes Shield" ></a>
4
+
3
5
  :fire: limp-dark theme for elegant writers with modern flat style and beautiful dark background :fire:.
4
6
 
7
+ ## Demo 👇👇
8
+
9
+ [LIMP-DARK](https://ankitkumarjat.me/limp/)
10
+
5
11
  ## Installation
6
12
 
7
13
  Add this line to your Jekyll site's `Gemfile`:
@@ -30,6 +36,20 @@ Chnage configurations on `_config.yml` and `_data/social.yml` file.
30
36
 
31
37
  This is theme use [spaceship :rocket:](https://github.com/jeffreytse/jekyll-spaceship/blob/master/README.md) Plugin, to take 100% from this got to [:rocket: README](https://github.com/jeffreytse/jekyll-spaceship/blob/master/README.md).
32
38
 
39
+ ### Responsive tables
40
+
41
+ To make tables wrap them inside div tage with class="table-wrapper" like following:
42
+
43
+ ```
44
+ <div class="table-wrapper" markdown="block">
45
+
46
+ | some | table | here |
47
+ |-------:|-------:|---------:|
48
+ | Apple | Banana | Orange |
49
+
50
+ </div>
51
+ ```
52
+
33
53
  ## Contributing
34
54
 
35
55
  Bug reports and pull requests are welcome on GitHub at https://github.com/ankit-kumar-jat/hello.
@@ -9,7 +9,7 @@ author: Limp # author name for seo
9
9
  email: your-email@domain.com
10
10
 
11
11
  # Serve the website from the given base URL.
12
- baseurl: "/limp-demo" # the subpath of your site, e.g. /blog
12
+ baseurl: "/limp-dark" # the subpath of your site, e.g. /blog
13
13
  url: "https://ankitkumarjat.me" # the base hostname & protocol for your site, e.g. http://example.com
14
14
  # logo: "" # the logo for your site
15
15
 
@@ -25,6 +25,9 @@ navbar_pages:
25
25
  # Pagination
26
26
  paginate: 5
27
27
 
28
+ # Google analytics
29
+ #google_analytics: UA-172457464-1
30
+
28
31
  # comments
29
32
 
30
33
  # Disqus comments
@@ -32,11 +35,12 @@ paginate: 5
32
35
  # shortname: "Your Disqus username"
33
36
 
34
37
  # Gitment comments
38
+ # its demo all info is not correct
35
39
  gitment:
36
- username: "hackersjugadBot"
37
- repo: "gitment"
38
- client_id: "3319a49fdeaee1884f29"
39
- client_secret: "0baa1ca836116b44cb2ef598e4439fcbc18ac95a"
40
+ username: "hackersjugadBot" # github username
41
+ repo: "gitment" # github repository that you want to use for comments
42
+ client_id: "3319a49fdeaee1884f29" # github client id
43
+ client_secret: "0baa1ca836116b44cb2ef598e4439fcbc18ac95a" # github client secret
40
44
  redirect_uri: "https://ankitkumarjat.me/limp-demo/" # If you use a custom domain name
41
45
 
42
46
  #optimization
@@ -60,11 +64,15 @@ sass:
60
64
  port: 4000 # 4000 is default
61
65
 
62
66
  # Reload a page automatically on the browser when its content is edited.
63
- livereload: true
67
+ # livereload: true
68
+
69
+ # markdown options
64
70
 
65
71
  markdown: kramdown
66
- kmarkdown:
67
- input: GFM
72
+ # kmarkdown:
73
+ # input: GFM
74
+
75
+ # plugins
68
76
 
69
77
  plugins:
70
78
  - jekyll-seo-tag
@@ -12,7 +12,17 @@
12
12
  <!-- Apple touch icons -->
13
13
  <!-- <link rel="apple-touch-icon-precomposed" href="">
14
14
  <link rel="apple-touch-icon" sizes="152x152" href=""> -->
15
-
15
+ {% if site.google_analytics %}
16
+ <!-- Global site tag (gtag.js) - Google Analytics -->
17
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{site.google_analytics}}"></script>
18
+ <script>
19
+ window.dataLayer = window.dataLayer || [];
20
+ function gtag(){dataLayer.push(arguments);}
21
+ gtag('js', new Date());
22
+
23
+ gtag('config', '{{site.google_analytics}}');
24
+ </script>
25
+ {% endif %}
16
26
  <!-- my css files -->
17
27
  <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
18
28
  </head>
@@ -11,6 +11,7 @@
11
11
 
12
12
  </section>
13
13
  <section class="main">
14
+
14
15
  {{content}}
15
16
  <br>
16
17
  <br>
@@ -26,7 +26,7 @@
26
26
  body
27
27
  background: $brand_sec
28
28
  color: $brand_main
29
- margin: 5rem 0 0 0
29
+ margin: 11vh 0 0 0
30
30
  padding: 0
31
31
  display: flex
32
32
  flex-direction: column
@@ -39,8 +39,9 @@ main
39
39
  flex-grow: 1
40
40
 
41
41
  p
42
- line-height: 1.3
43
- @include relative-font-size(1.05)
42
+ line-height: 1.5
43
+ // word-spacing: 1.1
44
+ // @include relative-font-size(1.05)
44
45
 
45
46
  h1, h2, h3, h4, h5, h6
46
47
  font-family: 'Sansita Swashed', sans-serif
@@ -4,3 +4,5 @@
4
4
  @import post-header
5
5
  @import segments
6
6
  @import post-footer
7
+ @import table-wrapper
8
+ @import search
@@ -70,6 +70,7 @@ a.gitment-editor-footer-tip,
70
70
  a.gitment-editor-login-link {
71
71
  color: #ec8322;
72
72
  }
73
+ button.gitment-editor-submit,
73
74
  button.gitment-editor-submit:hover,
74
75
  button.gitment-editor-submit:disabled {
75
76
  background-color: #ec8322;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: limp-dark
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ankit-kumar-jat
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-28 00:00:00.000000000 Z
11
+ date: 2020-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -162,7 +162,7 @@ files:
162
162
  - assets/css/main.sass
163
163
  - assets/images/limp.png
164
164
  - assets/js/gitment.browser.js
165
- homepage: https://ankitkumarjat.me/limp
165
+ homepage: https://ankitkumarjat.me/limp-dark/
166
166
  licenses:
167
167
  - MIT
168
168
  metadata: {}
@@ -184,5 +184,5 @@ requirements: []
184
184
  rubygems_version: 3.1.2
185
185
  signing_key:
186
186
  specification_version: 4
187
- summary: Lightning fast dark jekyll blog theme.
187
+ summary: Fast dark jekyll blog theme with search.
188
188
  test_files: []