wead 0.1.4 → 0.1.5
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 +5 -5
- data/README.md +5 -3
- data/_includes/head.html +3 -0
- data/_includes/posts.html +1 -1
- data/_layouts/home.html +3 -4
- data/_layouts/page.html +1 -2
- data/_sass/_post.sass +3 -0
- metadata +11 -12
- /data/assets/{javascripts → js}/main.js +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e33f54158e426a6837fb8d8a4754d6db554963355f3b029b3140d0b0b4831112
|
|
4
|
+
data.tar.gz: b55bc3186c4ff74ac8d1b9313d89a8b8b8902f3f1d11913b61ae7018515e9742
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b387f32c084fa0c0a295ac6f9335165ea8e05e7d4c6ad96759637adde139e4ed7d78aa06a4e095c164c1d91ae71cd2f8600b42ddb821ae5a039577ed309a7d5
|
|
7
|
+
data.tar.gz: d237340305c74022ca39a51fdb63e09be938e6387a519b9ac820374ba0e8ff4f3cf5c378aafd0a2eecf2a69ccd4ecc59da8a4d053ff6496ba61623e7ac44c1ad
|
data/README.md
CHANGED
|
@@ -4,14 +4,16 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
A simple and clean jekyll theme.
|
|
7
|
+
|
|
7
8
|
Demo: https://kevyder.github.io/wead/
|
|
9
|
+
|
|
8
10
|
Rubygems: https://rubygems.org/gems/wead
|
|
9
11
|
|
|
10
12
|
### Preview.
|
|
11
13
|

|
|
12
14
|
|
|
13
15
|
|
|
14
|
-
## Installation
|
|
16
|
+
## Installation
|
|
15
17
|
|
|
16
18
|
Add this line to your Jekyll site's Gemfile:
|
|
17
19
|
|
|
@@ -45,8 +47,8 @@ Add the next lines in your `_config.yml`
|
|
|
45
47
|
|
|
46
48
|
```yaml
|
|
47
49
|
paginate: 5
|
|
48
|
-
paginate_path: "/
|
|
49
|
-
|
|
50
|
+
paginate_path: "/page:num/"
|
|
51
|
+
plugins: [jekyll-paginate]
|
|
50
52
|
```
|
|
51
53
|
|
|
52
54
|
## Contributing
|
data/_includes/head.html
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
<head>
|
|
2
2
|
<meta charset="utf-8">
|
|
3
3
|
<title>{{ site.title }}</title>
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
4
6
|
<link rel="stylesheet" href="{{ "/assets/stylesheets/bootstrap.min.css" | prepend: site.baseurl }}">
|
|
5
7
|
<link rel="stylesheet" href="{{ "/assets/stylesheets/main.css" | prepend: site.baseurl }}">
|
|
6
8
|
<link rel="stylesheet" href="{{ "/assets/stylesheets/responsive.css" | prepend: site.baseurl }}">
|
|
7
9
|
<link rel="stylesheet" href="{{ "/assets/stylesheets/syntax.css" | prepend: site.baseurl }}">
|
|
8
10
|
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700|Open+Sans" rel="stylesheet">
|
|
11
|
+
<script src="{{ "/assets/js/main.js" | prepend: site.baseurl }}"></script>
|
|
9
12
|
</head>
|
data/_includes/posts.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="row">
|
|
5
5
|
<div class="post-container">
|
|
6
6
|
<p class="post-date"> {{ post.date | date: "%b %-d, %Y" }} </p>
|
|
7
|
-
<a href="{{ post.url | prepend: site.baseurl }}" class="post-title"><
|
|
7
|
+
<a href="{{ post.url | prepend: site.baseurl }}" class="post-title"><h2 class="title"> {{ post.title }}</h2></a>
|
|
8
8
|
<a class="extract" href="{{ post.url | prepend: site.baseurl }}"><p>{{ post.content | strip_html | truncatewords: 30 }}</p></a>
|
|
9
9
|
</div>
|
|
10
10
|
</div>
|
data/_layouts/home.html
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
2
|
+
<html lang="en">
|
|
3
3
|
{% include head.html %}
|
|
4
4
|
<body>
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
{% include header.html %}
|
|
6
|
+
{% include posts.html %}
|
|
7
7
|
{% include footer.html %}
|
|
8
8
|
</body>
|
|
9
|
-
<script src="{{ "/assets/javascripts/main.js" | prepend: site.baseurl }}"></script>
|
|
10
9
|
</html>
|
data/_layouts/page.html
CHANGED
data/_sass/_post.sass
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wead
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Rodríguez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -16,42 +16,42 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '4.3'
|
|
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: '
|
|
26
|
+
version: '4.3'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 2.5.9
|
|
34
34
|
type: :development
|
|
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:
|
|
40
|
+
version: 2.5.9
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
47
|
+
version: 13.2.1
|
|
48
48
|
type: :development
|
|
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:
|
|
54
|
+
version: 13.2.1
|
|
55
55
|
description:
|
|
56
56
|
email:
|
|
57
57
|
- kyrodriguez97@gmail.com
|
|
@@ -77,12 +77,12 @@ files:
|
|
|
77
77
|
- _sass/_header.sass
|
|
78
78
|
- _sass/_post.sass
|
|
79
79
|
- _sass/_posts.sass
|
|
80
|
-
- assets/
|
|
80
|
+
- assets/js/main.js
|
|
81
81
|
- assets/stylesheets/bootstrap.min.css
|
|
82
82
|
- assets/stylesheets/main.scss
|
|
83
83
|
- assets/stylesheets/responsive.css
|
|
84
84
|
- assets/stylesheets/syntax.css
|
|
85
|
-
homepage: https://github.com/kevyder/
|
|
85
|
+
homepage: https://github.com/kevyder/wead
|
|
86
86
|
licenses:
|
|
87
87
|
- MIT
|
|
88
88
|
metadata: {}
|
|
@@ -101,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
102
|
version: '0'
|
|
103
103
|
requirements: []
|
|
104
|
-
|
|
105
|
-
rubygems_version: 2.6.7
|
|
104
|
+
rubygems_version: 3.5.3
|
|
106
105
|
signing_key:
|
|
107
106
|
specification_version: 4
|
|
108
107
|
summary: A simple and clean jekyll theme.
|
|
File without changes
|