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 +4 -4
- data/README.md +20 -0
- data/_config.yml +16 -8
- data/_includes/head.html +11 -1
- data/_includes/views/main.html +1 -0
- data/_sass/base/_base.sass +4 -3
- data/_sass/modules/_modules-dir.sass +2 -0
- data/assets/css/gitment.dark.css +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 074e0923a5ff9378a0bf8c615e27c4604e9d2d6f281c507f53e61f75a9228766
|
4
|
+
data.tar.gz: d319c726f61b1105f4c8371b7dfc588afb0fc04fce299f5af401ec58b906bd17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
data/_config.yml
CHANGED
@@ -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-
|
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
|
-
|
72
|
+
# kmarkdown:
|
73
|
+
# input: GFM
|
74
|
+
|
75
|
+
# plugins
|
68
76
|
|
69
77
|
plugins:
|
70
78
|
- jekyll-seo-tag
|
data/_includes/head.html
CHANGED
@@ -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>
|
data/_includes/views/main.html
CHANGED
data/_sass/base/_base.sass
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
body
|
27
27
|
background: $brand_sec
|
28
28
|
color: $brand_main
|
29
|
-
margin:
|
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.
|
43
|
-
|
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
|
data/assets/css/gitment.dark.css
CHANGED
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.
|
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
|
+
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:
|
187
|
+
summary: Fast dark jekyll blog theme with search.
|
188
188
|
test_files: []
|