louie 0.1.3 → 0.1.4
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 +7 -3
- data/_sass/base.scss +2 -4
- data/_sass/post.scss +14 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f956d1a6ba8f843cfc7e09e78e3b7a44f7d46be6
|
|
4
|
+
data.tar.gz: 771e36db2c64e0b896232e75f1334b74389549f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6442c690bfd978b212f76cb5648b18026553beb84d69018d4654bba804b251364509b2c549a99e751eea62f4670ed1209ea464e91e9284a2b519b3cb14557a9e
|
|
7
|
+
data.tar.gz: 653529e7caa18d84e35f22bb0b557e8a8630a14737a74a244e84a005f4fd5df8e0fdeb1050c66ae850b4c154dd428c69757ee7efb41f5abbfa1f97301dfa5f88
|
data/README.md
CHANGED
|
@@ -40,7 +40,7 @@ g_analytics: UA-12345678-1
|
|
|
40
40
|
|
|
41
41
|
header: name of your site here
|
|
42
42
|
desc: >
|
|
43
|
-
description of your site, can be a quick bio if it's a portfolio
|
|
43
|
+
description of your site, can be a quick bio if it's a portfolio. It supports HTML so add your links, imgs, whatever!
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
### Social media links
|
|
@@ -71,14 +71,18 @@ date_format: "%m/%d/%Y"
|
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
### Post variables
|
|
74
|
-
|
|
74
|
+
You can include the following variables in the front matter for posts:
|
|
75
75
|
|
|
76
76
|
```yaml
|
|
77
77
|
title: Berry Perfume
|
|
78
78
|
category: Narrative
|
|
79
|
-
img: [ url or path in directory ]
|
|
79
|
+
img: [ OPTIONAL: url or path in directory ]
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
+
The `img` variable is used to produce a randomly placed image associated with this post when you hover over it. If you omit it, there simply won't be a picture and all is still well.
|
|
83
|
+
|
|
84
|
+
If you prefer not to have the category in your post permalink, follow the guidelines [here](https://jekyllrb.com/docs/permalinks/) to remove it among other configurations.
|
|
85
|
+
|
|
82
86
|
### Post pagination
|
|
83
87
|
To include previous and next links at the bottom of a post page, leave the following setting to `true`. Otherwise, change to `false`.
|
|
84
88
|
|
data/_sass/base.scss
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
// Our variables
|
|
2
|
-
@import url('https://fonts.googleapis.com/css?family=Inconsolata:400,700');
|
|
3
|
-
|
|
4
1
|
$on-palm: 600px !default;
|
|
5
2
|
$on-laptop: 800px !default;
|
|
6
3
|
|
|
7
4
|
// typography
|
|
5
|
+
@import url('https://fonts.googleapis.com/css?family=Inconsolata:400,700');
|
|
8
6
|
$inconsolata: 'Inconsolata', monospace;
|
|
9
7
|
$font__size: 14px;
|
|
10
8
|
$font__weight: 400;
|
|
@@ -12,7 +10,7 @@ $font__line-height: 1.5;
|
|
|
12
10
|
|
|
13
11
|
// colors
|
|
14
12
|
$color__black: #000000;
|
|
15
|
-
$color__gray: #
|
|
13
|
+
$color__gray: #eeeeee;
|
|
16
14
|
$color__beige: #f8f8f1;
|
|
17
15
|
$color__yellow: #fefeca;
|
|
18
16
|
|
data/_sass/post.scss
CHANGED
|
@@ -57,6 +57,20 @@ $paginate-padding: 13px;
|
|
|
57
57
|
.post__body {
|
|
58
58
|
padding-bottom: 20px;
|
|
59
59
|
border-bottom: 1px solid $color__black;
|
|
60
|
+
|
|
61
|
+
pre {
|
|
62
|
+
background: $color__gray;
|
|
63
|
+
padding: 10px 20px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
code {
|
|
67
|
+
background: $color__gray;
|
|
68
|
+
font-size: 12px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
img {
|
|
72
|
+
max-width: 100%;
|
|
73
|
+
}
|
|
60
74
|
}
|
|
61
75
|
|
|
62
76
|
// media queries
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: louie
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lillian Chen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|