potato-hacker-jekyll-template 0.2.0 → 0.2.1
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 -1
- data/_layouts/default.html +1 -0
- data/_layouts/page.html +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e5b42c5c1d7765726f6f1c2ded22453c2953c3a
|
4
|
+
data.tar.gz: 970bc057505c20a891f15e582efc840924eb2443
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d06d3f2d0e52710f5c9e4c7d87f6a37e8c92fd8650339db9052d35d4b199654ca4a065624ddc6716025a06814c15260a31fb2ca4cca3940477eb369123cc220
|
7
|
+
data.tar.gz: 4762956e999e4d02e98ceb592cf3b2f69d88b1498f10c48b06e1f52a86357e705df5a70a57541b9906ddf2e527be193a24c8f9855e8473b90750c7f596a0c099
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
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` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
4
4
|
|
5
|
-
|
5
|
+

|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -29,6 +29,21 @@ Or install it yourself as:
|
|
29
29
|
## Usage
|
30
30
|
|
31
31
|
This is a simple theme I made to my portfolio/blog https://armlessjohn404.github.io/
|
32
|
+
There are four different categories of pages for this template:
|
33
|
+
* Main page `index.md` in the root.
|
34
|
+
* About page `about/index.md`
|
35
|
+
* Blog posts `_posts` folder.
|
36
|
+
* Dropdown menu projects `_projects` folder.
|
37
|
+
|
38
|
+
The dropdown menus are generated based on the YAML data in the files. Use the `dropdown` attribute to chose where the page will be placed.
|
39
|
+
```yaml
|
40
|
+
---
|
41
|
+
layout: page
|
42
|
+
title: dropdown1 item1
|
43
|
+
description: Test page
|
44
|
+
dropdown: dropdown1
|
45
|
+
---
|
46
|
+
```
|
32
47
|
|
33
48
|
## Contributing
|
34
49
|
|
data/_layouts/default.html
CHANGED
data/_layouts/page.html
CHANGED