lysande-jekyll-theme 1.0.0 → 3.2.0
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 +16 -5
- data/_layouts/projects.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83977b87d38f6cdebd8a0c485fbe76f31fc942840868202215f56068a2fc763f
|
|
4
|
+
data.tar.gz: 107c51ffa745ae267b52123f4778f9fb961ea93b8143f654b4232123be0191d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e65a351799cd129e883beebcaa15f21a7e6d7914ba5b4cdd181ec02aa1140e8542042d968ad4b2c2fb15d81adece00af96f612082299fd17b136a6abb3fc95f
|
|
7
|
+
data.tar.gz: 5e84e060c11422419a4654b7c594f0fa428cc0d87c179020a7f5e1f1825412887572d693c6ac177c7c4b0f5bfe35461c8e3ec9e7288c01b70eb65a789755af91
|
data/README.md
CHANGED
|
@@ -13,6 +13,15 @@ a base for a portfolio site.
|
|
|
13
13
|
- Disqus Comments
|
|
14
14
|
- SEO best practices via [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag/)
|
|
15
15
|
|
|
16
|
+
[![Lysande live preview][2]][1]
|
|
17
|
+
|
|
18
|
+
[1]: https://theuggla.github.io/example
|
|
19
|
+
[2]: https://github.com/theuggla/lysande-jekyll-theme/blob/master/screenshot.png (live preview)
|
|
20
|
+
|
|
21
|
+
[A live preview of the theme here](https://theuggla.github.io/example)
|
|
22
|
+
|
|
23
|
+
[The theme being used as the theme for my portfolio here](https://theuggla.github.io/)
|
|
24
|
+
|
|
16
25
|
## Table of Contents
|
|
17
26
|
|
|
18
27
|
1. [Installation](#installation)
|
|
@@ -77,7 +86,7 @@ below) into your project.
|
|
|
77
86
|
GitHub Pages has added [full support](https://github.com/blog/2464-use-any-theme-with-github-pages)
|
|
78
87
|
for any GitHub-hosted theme.
|
|
79
88
|
|
|
80
|
-
1. Replace `gem "jekyll"` with:
|
|
89
|
+
1. Replace `gem "lysande-jekyll-theme"` in your Gemfile with:
|
|
81
90
|
|
|
82
91
|
```ruby
|
|
83
92
|
gem "github-pages", group: :jekyll_plugins
|
|
@@ -110,6 +119,7 @@ safely remove the following files and folders:
|
|
|
110
119
|
- `README.md`
|
|
111
120
|
- `screenshot.png`
|
|
112
121
|
- `/example`
|
|
122
|
+
- `Gemfile.lock`
|
|
113
123
|
|
|
114
124
|
## Upgrading
|
|
115
125
|
|
|
@@ -121,19 +131,19 @@ site and you should something similar to:
|
|
|
121
131
|
|
|
122
132
|
```
|
|
123
133
|
<!--
|
|
124
|
-
Lysande Jekyll Theme 1.
|
|
134
|
+
Lysande Jekyll Theme 1.0.0
|
|
125
135
|
Copyright 2017-2018 Molly Arhammar - theuggla.github.io
|
|
126
136
|
Free for personal and commercial use under the MIT license
|
|
127
137
|
https://github.com/theuggla/lysande-jekyll-theme/blob/master/LICENSE
|
|
128
138
|
-->
|
|
129
139
|
```
|
|
130
140
|
|
|
131
|
-
At the top of every `.html` file
|
|
141
|
+
At the top of every `.html` file and `/assets/main.css`.
|
|
132
142
|
|
|
133
143
|
### Ruby Gem
|
|
134
144
|
|
|
135
145
|
Simply run `bundle update` if you're using Bundler (have a `Gemfile`) or `gem
|
|
136
|
-
update jekyll-theme
|
|
146
|
+
update lysande-jekyll-theme` if you're not.
|
|
137
147
|
|
|
138
148
|
### Remote Theme
|
|
139
149
|
|
|
@@ -259,7 +269,8 @@ good to go.
|
|
|
259
269
|
Configuration of site-wide elements (`title`, `description`,
|
|
260
270
|
`author`, etc.) happens in your project's `_config.yml`. See the
|
|
261
271
|
[example configuration](example/_config.yml) in this repo for additional
|
|
262
|
-
reference.
|
|
272
|
+
reference. The most important thing to note is that you will want to add `permalink: pretty` to
|
|
273
|
+
your `_config.yml` to keep the links working properly.
|
|
263
274
|
|
|
264
275
|
| | Description |
|
|
265
276
|
| ------------------ | ------------------------------------------------------------------------- |
|
data/_layouts/projects.html
CHANGED
|
@@ -34,7 +34,7 @@ layout: default
|
|
|
34
34
|
<section class="{{projects}}">
|
|
35
35
|
<h2 id="{{category}}">{{category}}</h2>
|
|
36
36
|
<ul>
|
|
37
|
-
{% for project in site.projects %}
|
|
37
|
+
{% for project in site.projects reversed %}
|
|
38
38
|
{% if project.category contains category %}
|
|
39
39
|
<li>
|
|
40
40
|
<h3>{{ project.title | escape }}</h3>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lysande-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Molly Arhammar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-12-
|
|
11
|
+
date: 2018-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|