jekyll-theme-munky 0.1.0 → 0.1.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 +29 -18
- data/_includes/head.html +0 -9
- data/_includes/header.html +8 -20
- data/_layouts/{blog.html → home.html} +0 -0
- metadata +2 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f758ffbea10de8a433ed4f0e9d5e0a2901dc82a
|
|
4
|
+
data.tar.gz: 388203e4eb110190fd42333bd023a7e5f00f0be3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0be17716cd5b918d15a7385fb265d9f4577df7e5600f801a1c286225e0e2a3da7df2cdcd091055700850c3df18328367f1f42a413c163e4371bffbaca9eab4da
|
|
7
|
+
data.tar.gz: 563a00596687efec88d4bd5008f09192b8d374942401be3742b98975338c8fca1cd1932675565d55f34bbb4c7fefd726348b49699e76f8533fbdf811c27cd686
|
data/README.md
CHANGED
|
@@ -48,7 +48,7 @@ And then execute:
|
|
|
48
48
|
|
|
49
49
|
## Getting started
|
|
50
50
|
|
|
51
|
-
Wether you're using
|
|
51
|
+
Wether you're using munky as a theme gem or as a fork, the easiest way to
|
|
52
52
|
get started is to copy the content from the `demo` folder to your jekyll
|
|
53
53
|
website's root folder. It adds all the required files and settings
|
|
54
54
|
to get the most of out of the theme and adds some example data to get started.
|
|
@@ -57,23 +57,29 @@ As a bare minimum for the theme to work properly you will need to add the
|
|
|
57
57
|
following configuration data to the `_config.yml` file:
|
|
58
58
|
|
|
59
59
|
```yaml
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
60
|
+
collections:
|
|
61
|
+
posts:
|
|
62
|
+
output: true
|
|
63
|
+
permalink: /blog/:year/:month/:day/:title/
|
|
64
|
+
type: post
|
|
65
|
+
projects:
|
|
66
|
+
output: true
|
|
67
|
+
permalink: /projects/:title/
|
|
68
|
+
type: project
|
|
69
|
+
|
|
70
|
+
defaults:
|
|
71
|
+
-
|
|
72
|
+
scope:
|
|
73
|
+
path: ""
|
|
74
|
+
type: "posts"
|
|
75
|
+
values:
|
|
76
|
+
type: "post"
|
|
77
|
+
-
|
|
78
|
+
scope:
|
|
79
|
+
path: ""
|
|
80
|
+
type: "projects"
|
|
81
|
+
values:
|
|
82
|
+
type: "project"
|
|
77
83
|
```
|
|
78
84
|
|
|
79
85
|
## Contents At-A-Glance
|
|
@@ -216,6 +222,11 @@ alt="example"
|
|
|
216
222
|
%}
|
|
217
223
|
```
|
|
218
224
|
|
|
225
|
+
This feature is currently only supported if you use munky as a fork. If you're
|
|
226
|
+
using munky as a theme gem you need to copy the
|
|
227
|
+
[`_includes/image.html `](_includes/image.html) file to your local includes
|
|
228
|
+
folder `<yoursite>/_includes/` if you want to use this feature.
|
|
229
|
+
|
|
219
230
|
### Pages
|
|
220
231
|
|
|
221
232
|
On top of the default FrontMatter variables, munky theme also uses
|
data/_includes/head.html
CHANGED
|
@@ -13,13 +13,6 @@
|
|
|
13
13
|
|
|
14
14
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
|
15
15
|
|
|
16
|
-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
17
|
-
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
|
|
18
|
-
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
|
|
19
|
-
<link rel="manifest" href="/manifest.json">
|
|
20
|
-
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
|
21
|
-
<meta name="theme-color" content="#ffffff">
|
|
22
|
-
|
|
23
16
|
{% if jekyll.environment == 'production' and site.google_analytics %}
|
|
24
17
|
{% include google_analytics.html %}
|
|
25
18
|
{% endif %}
|
|
@@ -31,6 +24,4 @@
|
|
|
31
24
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
32
25
|
<![endif]-->
|
|
33
26
|
|
|
34
|
-
{% seo %}
|
|
35
|
-
|
|
36
27
|
</head>
|
data/_includes/header.html
CHANGED
|
@@ -4,26 +4,14 @@
|
|
|
4
4
|
</a>
|
|
5
5
|
<nav role="navigation">
|
|
6
6
|
<ul>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
</a>
|
|
16
|
-
</li>
|
|
17
|
-
<li>
|
|
18
|
-
<a href="/photography/" {% if page.title == "Photography" %} class="active" {% endif %}>
|
|
19
|
-
Photography
|
|
20
|
-
</a>
|
|
21
|
-
</li>
|
|
22
|
-
<li>
|
|
23
|
-
<a href="/about/" {% if page.title == "About Me" %} class="active" {% endif %}>
|
|
24
|
-
About Me
|
|
25
|
-
</a>
|
|
26
|
-
</li>
|
|
7
|
+
{% assign sorted_pages = site.pages | sort:"order" %}
|
|
8
|
+
{% for node in sorted_pages %}
|
|
9
|
+
{% if node.title and node.order %}
|
|
10
|
+
<li>
|
|
11
|
+
<a href="{{ node.url | relative_url }}" {% if page.url == node.url %} class="active" {% endif %} >{{ node.title | escape }}</a>
|
|
12
|
+
</li>
|
|
13
|
+
{% endif %}
|
|
14
|
+
{% endfor %}
|
|
27
15
|
</ul>
|
|
28
16
|
</nav>
|
|
29
17
|
</header>
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-munky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geert Arien
|
|
@@ -38,20 +38,6 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 0.9.2
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: jekyll-seo-tag
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: 2.2.0
|
|
48
|
-
type: :runtime
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: 2.2.0
|
|
55
41
|
- !ruby/object:Gem::Dependency
|
|
56
42
|
name: bundler
|
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -99,8 +85,8 @@ files:
|
|
|
99
85
|
- _includes/share_buttons.html
|
|
100
86
|
- _includes/sidebar.html
|
|
101
87
|
- _layouts/about.html
|
|
102
|
-
- _layouts/blog.html
|
|
103
88
|
- _layouts/default.html
|
|
89
|
+
- _layouts/home.html
|
|
104
90
|
- _layouts/page.html
|
|
105
91
|
- _layouts/photography.html
|
|
106
92
|
- _layouts/post.html
|