laloyd 0.1.2 → 0.1.3

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: '0089a3b686cbd0cafd505cc841817ed52476a1b7477b0f491570508b187a98dd'
4
- data.tar.gz: 13edd491f5f05052c90ff0f03726a8186f85c2dcb88736b7253535acdd0946f6
3
+ metadata.gz: 13966eb688b624d20145d9a400ed788fc65169e54b4a7edbcb9f05265dad858c
4
+ data.tar.gz: e2dfbaba1b18ef8b64664acb3088012d4620ac321e31bcb3af00141742c0076a
5
5
  SHA512:
6
- metadata.gz: 4e067e944c3ff99119571227e01f079da01be4af870ca5ba7e405875c112fa3ed22c3288600d6ba38ec25b90c3a7eb6db865fdae8f86c69f14d4b0958cca8a63
7
- data.tar.gz: f7bade3b9c47e118df91b606c30e69e0bc60c34a9762fd34ca4423a6420dbad206b1b3b2fd8e3a562044d9333842f377636490cb87d98168bc0d52c33cdccc4f
6
+ metadata.gz: 73cb277c5460e79d76ef77002be8313d3bc45378088cd3cea9d70df56eff5b058f34e673f9c77ae3718a2d5231b31233fbc5bc946da31c16361194ed6905884c
7
+ data.tar.gz: 57e43d67dcbe3d425c7920c48cbf790f4ff8f1b6c6c9f96bb290216d67849e9c9110e70531a00eca7ff1858549e4fec938fefbc038d520ef374e5d75235a46d5
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
  ![Live Preview of laloyd Theme](http://g.recordit.co/6dYP4Y8YuU.gif)
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
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
File without changes
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.2
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-18 00:00:00.000000000 Z
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 modern, yet playful jekyll theme
96
+ summary: A simple, colorful, and accessible jekyll theme
95
97
  test_files: []