laloyd 0.1.2 → 0.1.3
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/LICENSE.txt +0 -0
- data/README.md +3 -1
- data/_includes/footer.html +0 -0
- data/_includes/head.html +0 -0
- data/_includes/nav.html +0 -0
- data/_layouts/default.html +0 -0
- data/_layouts/home.html +5 -0
- data/_layouts/page.html +0 -0
- data/_layouts/post.html +0 -0
- data/_layouts/post_index.html +14 -0
- data/assets/stylesheets/main.scss +0 -0
- data/assets/stylesheets/syntax.css +0 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13966eb688b624d20145d9a400ed788fc65169e54b4a7edbcb9f05265dad858c
|
4
|
+
data.tar.gz: e2dfbaba1b18ef8b64664acb3088012d4620ac321e31bcb3af00141742c0076a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73cb277c5460e79d76ef77002be8313d3bc45378088cd3cea9d70df56eff5b058f34e673f9c77ae3718a2d5231b31233fbc5bc946da31c16361194ed6905884c
|
7
|
+
data.tar.gz: 57e43d67dcbe3d425c7920c48cbf790f4ff8f1b6c6c9f96bb290216d67849e9c9110e70531a00eca7ff1858549e4fec938fefbc038d520ef374e5d75235a46d5
|
data/LICENSE.txt
CHANGED
File without changes
|
data/README.md
CHANGED
@@ -15,7 +15,6 @@ If you have any tips / suggesstions for new accessibility features, please [open
|
|
15
15
|

|
16
16
|
|
17
17
|
## Installation
|
18
|
-
|
19
18
|
Add this line to your Jekyll site's `Gemfile`:
|
20
19
|
|
21
20
|
```ruby
|
@@ -36,6 +35,9 @@ Or install it yourself as:
|
|
36
35
|
|
37
36
|
$ gem install laloyd
|
38
37
|
|
38
|
+
### Troubleshooting
|
39
|
+
If you are using this theme and hosting your site on Github Pages, you may run into the issue of the [styles loading locally but not loading on Github Pages](https://stackoverflow.com/questions/42450554/jekyll-site-works-locally-but-not-on-github-pages). If this is the case, you can copy the assets (under `_site/assets/stylesheets`) into a local `assets` folder so that Github Pages can read them. You may also need to copy the `_layouts` directory to your repository as well.
|
40
|
+
|
39
41
|
## Usage
|
40
42
|
|
41
43
|
## Customizing layouts and colors
|
data/_includes/footer.html
CHANGED
File without changes
|
data/_includes/head.html
CHANGED
File without changes
|
data/_includes/nav.html
CHANGED
File without changes
|
data/_layouts/default.html
CHANGED
File without changes
|
data/_layouts/home.html
ADDED
data/_layouts/page.html
CHANGED
File without changes
|
data/_layouts/post.html
CHANGED
File without changes
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
title: Writing
|
3
|
+
layout: default
|
4
|
+
---
|
5
|
+
{% for post in site.posts %}
|
6
|
+
<h2>
|
7
|
+
<a href="{{post.url}}">{{post.title}}</a>
|
8
|
+
</h2>
|
9
|
+
<p>
|
10
|
+
<em>{{ post.date | date: '%B %d, %Y' }}</em>
|
11
|
+
</p>
|
12
|
+
{{ post.content | strip_html | truncatewords: 30 }}
|
13
|
+
<a href="{{post.url}}" >Read More</a>
|
14
|
+
{% endfor %}
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: laloyd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Janessa Tran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-01-
|
11
|
+
date: 2020-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -65,8 +65,10 @@ files:
|
|
65
65
|
- _includes/head.html
|
66
66
|
- _includes/nav.html
|
67
67
|
- _layouts/default.html
|
68
|
+
- _layouts/home.html
|
68
69
|
- _layouts/page.html
|
69
70
|
- _layouts/post.html
|
71
|
+
- _layouts/post_index.html
|
70
72
|
- assets/stylesheets/main.scss
|
71
73
|
- assets/stylesheets/syntax.css
|
72
74
|
homepage: https://github.com/janessatran/laloyd.git
|
@@ -91,5 +93,5 @@ requirements: []
|
|
91
93
|
rubygems_version: 3.0.6
|
92
94
|
signing_key:
|
93
95
|
specification_version: 4
|
94
|
-
summary: A
|
96
|
+
summary: A simple, colorful, and accessible jekyll theme
|
95
97
|
test_files: []
|