jekyll-theme-louis 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 +30 -27
- data/_layouts/page.html +3 -2
- data/_layouts/profile.html +0 -1
- data/_sass/block/post.scss +4 -3
- data/assets/images/usage_image.png +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dd14f3a1c26ff8deb26358e12c77ea59994f6ef3cc10bb9af3cb5b95515b3b1
|
4
|
+
data.tar.gz: 77978b0d27bf8ab2ce87b6b3d0fbbeb917b26dc10dbf2976427f16cb046aba5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f53687920e6590e8a2e624849420a9335783560968fa90da3fc44a71c7fffc75a58c6eed612b7a49f130ae24a52f55bd774b3dc10860dc10c0c247906a366d3
|
7
|
+
data.tar.gz: 515707e0535937ba60f368f220b182bfad5bd869ecc3e3a0ea5934993709c9a36e524b07edd0a97e8582d5f7502bae27dff77a2831650b5b0efef4269be682f6
|
data/README.md
CHANGED
@@ -1,52 +1,55 @@
|
|
1
|
-
#
|
1
|
+
# Louis
|
2
2
|
|
3
|
-
|
3
|
+

|
4
4
|
|
5
|
-
|
5
|
+
[](https://badge.fury.io/rb/jekyll-theme-louis)
|
6
6
|
|
7
|
-
|
7
|
+
Louis is a [Jekyll](https://github.com/jekyll/jekyll/) theme for Blog. It provides very simple blog theme for Jekyll sites that includes a profile, post and other pages.
|
8
8
|
|
9
9
|
|
10
|
-
|
10
|
+

|
11
11
|
|
12
|
-
|
12
|
+
## Usage
|
13
|
+
|
14
|
+
1. Add this line to your Jekyll site's `Gemfile`:
|
13
15
|
|
14
16
|
```ruby
|
15
|
-
gem "louis"
|
17
|
+
gem "jekyll-theme-louis"
|
16
18
|
```
|
17
19
|
|
18
|
-
And add this line to your Jekyll site's `_config.yml`:
|
20
|
+
2. And add this line to your Jekyll site's `_config.yml`:
|
19
21
|
|
20
22
|
```yaml
|
21
|
-
theme: louis
|
23
|
+
theme: jekyll-theme-louis
|
22
24
|
```
|
23
25
|
|
24
|
-
And then execute:
|
25
|
-
|
26
|
-
$ bundle
|
26
|
+
3. And then execute:
|
27
27
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
## Usage
|
33
|
-
|
34
|
-
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
28
|
+
```bash
|
29
|
+
$ bundle
|
30
|
+
```
|
35
31
|
|
36
|
-
##
|
32
|
+
## Customizing
|
37
33
|
|
38
|
-
|
34
|
+
### Configuration variables
|
39
35
|
|
40
|
-
|
36
|
+
Louis will respect the following variables, if set in your site's `_config.yml`:
|
41
37
|
|
42
|
-
|
38
|
+
```yml
|
39
|
+
title: [The title of your site]
|
40
|
+
description: [A short description of your site's purpose]
|
41
|
+
```
|
43
42
|
|
44
|
-
|
43
|
+
Please enter author information.
|
45
44
|
|
46
|
-
|
47
|
-
|
45
|
+
```yml
|
46
|
+
author:
|
47
|
+
name: [Author name]
|
48
|
+
github: [Author github account (optinal)]
|
49
|
+
twitter: [Author twitter account (optinal)]
|
50
|
+
facebook: [Author facebook account (optinal)]
|
51
|
+
```
|
48
52
|
|
49
53
|
## License
|
50
54
|
|
51
55
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
52
|
-
|
data/_layouts/page.html
CHANGED
data/_layouts/profile.html
CHANGED
data/_sass/block/post.scss
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|
}
|
6
6
|
}
|
7
7
|
|
8
|
+
.page-container,
|
8
9
|
.post-container,
|
9
10
|
.profile-container {
|
10
11
|
flex-direction: column;
|
@@ -59,8 +60,8 @@
|
|
59
60
|
color: $color-font-main;
|
60
61
|
}
|
61
62
|
|
62
|
-
>
|
63
|
-
>
|
63
|
+
>ul,
|
64
|
+
>ol,
|
64
65
|
img,
|
65
66
|
pre,
|
66
67
|
p {
|
@@ -111,4 +112,4 @@
|
|
111
112
|
border-radius: 0.25rem;
|
112
113
|
background-color: rgba($color-border, 0.25);
|
113
114
|
}
|
114
|
-
}
|
115
|
+
}
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-louis
|
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
|
- ShimeWataru
|
@@ -104,6 +104,7 @@ files:
|
|
104
104
|
- assets/images/favicon/safari-pinned-tab.svg
|
105
105
|
- assets/images/favicon/site.webmanifest
|
106
106
|
- assets/images/profile_icon.png
|
107
|
+
- assets/images/usage_image.png
|
107
108
|
homepage: https://github.com/wawawatataru/louis
|
108
109
|
licenses:
|
109
110
|
- MIT
|