jekyll-theme-munky 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 74d7de5a20c03f3c41dea4f80729fcbf248c60b1
4
- data.tar.gz: 1ec3f786e0e9dd7befdcfcfb5ada4377f32479c0
3
+ metadata.gz: 4f758ffbea10de8a433ed4f0e9d5e0a2901dc82a
4
+ data.tar.gz: 388203e4eb110190fd42333bd023a7e5f00f0be3
5
5
  SHA512:
6
- metadata.gz: ec3faed503c0edd18750a59e4d8ada62c515c5ca7fc2601b6410acef31a6d8b314fc4deab8ffc97a786888749ba00f653c2bbdd5a89a9aec479e914ae16723e0
7
- data.tar.gz: 106bbcaab9d76e3d1ccf312d646fcf8852b9f8e8d75a89699d9cd6a7727d04d400b6df45a9822f63b69d2ddbbb57575fa9bd88c8a3b87112dc9d0f7eb688a011
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 munkye as a theme gem or as a fork, the easiest way to
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
- defaults:
61
- - scope:
62
- path: ""
63
- values:
64
- image: /assets/images/logo.png
65
- -
66
- scope:
67
- path: ""
68
- type: "posts"
69
- values:
70
- type: "post"
71
- -
72
- scope:
73
- path: ""
74
- type: "projects"
75
- values:
76
- type: "project"
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>
@@ -4,26 +4,14 @@
4
4
  </a>
5
5
  <nav role="navigation">
6
6
  <ul>
7
- <li>
8
- <a href="/" {% if page.type == "post" or page.title == "Blog" %} class="active" {% endif %}>
9
- Blog
10
- </a>
11
- </li>
12
- <li>
13
- <a href="/projects/" {% if page.type == "project" or page.title == "Projects" %} class="active" {% endif %}>
14
- Projects
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.0
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