jekyll-theme-louis 0.1.0 → 0.1.1

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: f2dcc74d25fff5eb0a6cebfb1c3d00314559b6325c6f8312ef103a5675abdf9e
4
- data.tar.gz: 6f3e4dab8ad7814efbb403565879b7b94018ef4d9a2103eb5b2b47c307b2d3f5
3
+ metadata.gz: 7dd14f3a1c26ff8deb26358e12c77ea59994f6ef3cc10bb9af3cb5b95515b3b1
4
+ data.tar.gz: 77978b0d27bf8ab2ce87b6b3d0fbbeb917b26dc10dbf2976427f16cb046aba5c
5
5
  SHA512:
6
- metadata.gz: a405cb644394c37e074f040f665326d25806e9dc3e546a663f62ed95fe3cf09a2295acc7bd23596761df4d730d4343f84cb7e7df423f2c05f73111ae751d8d10
7
- data.tar.gz: 541a2c967ec465d00d9348e3a2e8a67fed0c0f242bde687357d64b87bc59def68e3977db7b3d91aac8f2bab3d929a101b829cced0a6542cd20960f8e956b9e7a
6
+ metadata.gz: 9f53687920e6590e8a2e624849420a9335783560968fa90da3fc44a71c7fffc75a58c6eed612b7a49f130ae24a52f55bd774b3dc10860dc10c0c247906a366d3
7
+ data.tar.gz: 515707e0535937ba60f368f220b182bfad5bd869ecc3e3a0ea5934993709c9a36e524b07edd0a97e8582d5f7502bae27dff77a2831650b5b0efef4269be682f6
data/README.md CHANGED
@@ -1,52 +1,55 @@
1
- # louis
1
+ # Louis
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
+ ![Louisロゴ](https://github.com/wawawatataru/louis/blob/master/assets/images/favicon/android-chrome-192x192.png?raw=true,"Louisロゴ")
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
+ [![Gem Version](https://badge.fury.io/rb/jekyll-theme-louis.svg)](https://badge.fury.io/rb/jekyll-theme-louis)
6
6
 
7
- TODO: Delete this and the text above, and describe your gem
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
- ## Installation
10
+ ![Louisイメージ](https://github.com/wawawatataru/louis/blob/master/assets/images/usage_image.png?raw=true,"Louisイメージ")
11
11
 
12
- Add this line to your Jekyll site's `Gemfile`:
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
- Or install it yourself as:
29
-
30
- $ gem install louis
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
- ## Contributing
32
+ ## Customizing
37
33
 
38
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
+ ### Configuration variables
39
35
 
40
- ## Development
36
+ Louis will respect the following variables, if set in your site's `_config.yml`:
41
37
 
42
- To set up your environment to develop this theme, run `bundle install`.
38
+ ```yml
39
+ title: [The title of your site]
40
+ description: [A short description of your site's purpose]
41
+ ```
43
42
 
44
- Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
43
+ Please enter author information.
45
44
 
46
- When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
- To add a custom directory to your theme-gem, please edit the regexp in `louis.gemspec` accordingly.
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
-
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
- {{ content }}
4
+ <div class="page-container">
5
+ {{ content }}
6
+ </div>
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
4
  <div class="profile-info">
6
5
  <div class="profile-info__image">
7
6
  <img src="{{ '/assets/images/profile_icon.png' | relative_url }}" class="profile-page__icon" alt="">
@@ -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
- > ul,
63
- > ol,
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
+ }
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.0
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