jekyll-theme-basically-basic 1.1.0 → 1.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/CHANGELOG.md +4 -1
- data/README.md +713 -713
- data/_includes/contact-list.html +2 -2
- data/_includes/cv/skills.html +20 -20
- data/_layouts/default.html +1 -1
- data/_layouts/home.html +1 -1
- data/_sass/basically-basic.scss +1 -1
- data/assets/javascripts/main.js +1 -1
- metadata +2 -2
data/_includes/contact-list.html
CHANGED
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
{% endif %}
|
|
18
18
|
|
|
19
19
|
<li>
|
|
20
|
-
{% if site.
|
|
20
|
+
{% if site.plugins contains 'jekyll-feed' %}
|
|
21
21
|
<a href="{{ site.feed.path | default: 'feed.xml' | relative_url }}" title="Atom Feed">
|
|
22
22
|
<span class="icon icon--rss">{% include icon-rss.svg %}</span>
|
|
23
23
|
<span class="label">{{ site.data.theme.t.subscribe | default: 'Subscribe' }}</span>
|
|
24
24
|
</a>
|
|
25
25
|
{% endif %}
|
|
26
26
|
</li>
|
|
27
|
-
</ul>
|
|
27
|
+
</ul>
|
data/_includes/cv/skills.html
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
{% if cv.skills
|
|
2
|
-
<div id="skills" class="entry">
|
|
3
|
-
<header class="entry-header">
|
|
4
|
-
<h3 class="entry-title">Skills</h3>
|
|
5
|
-
</header>
|
|
6
|
-
|
|
7
|
-
<div class="entry-content">
|
|
8
|
-
{% for s in cv.skills %}
|
|
9
|
-
<div class="taxonomy">
|
|
10
|
-
{% if s.name %}
|
|
11
|
-
<h4 class="title">{{ s.name }}</h4>
|
|
12
|
-
{% endif %}
|
|
13
|
-
{% if s.keywords %}
|
|
14
|
-
<span class="keywords">{{ s.keywords | array_to_sentence_string }}</span>
|
|
15
|
-
{% endif %}
|
|
16
|
-
</div>
|
|
17
|
-
{% endfor %}
|
|
18
|
-
</div>
|
|
19
|
-
</div>
|
|
20
|
-
{% endif %}
|
|
1
|
+
{% if cv.skills %}
|
|
2
|
+
<div id="skills" class="entry">
|
|
3
|
+
<header class="entry-header">
|
|
4
|
+
<h3 class="entry-title">Skills</h3>
|
|
5
|
+
</header>
|
|
6
|
+
|
|
7
|
+
<div class="entry-content">
|
|
8
|
+
{% for s in cv.skills %}
|
|
9
|
+
<div class="taxonomy">
|
|
10
|
+
{% if s.name %}
|
|
11
|
+
<h4 class="title">{{ s.name }}</h4>
|
|
12
|
+
{% endif %}
|
|
13
|
+
{% if s.keywords %}
|
|
14
|
+
<span class="keywords">{{ s.keywords | array_to_sentence_string }}</span>
|
|
15
|
+
{% endif %}
|
|
16
|
+
</div>
|
|
17
|
+
{% endfor %}
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
{% endif %}
|
data/_layouts/default.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<!--
|
|
3
|
-
Basically Basic Jekyll Theme 1.1.
|
|
3
|
+
Basically Basic Jekyll Theme 1.1.1
|
|
4
4
|
Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
|
|
5
5
|
Free for personal and commercial use under the MIT license
|
|
6
6
|
https://github.com/mmistakes/jekyll-basically-theme/blob/master/LICENSE.md
|
data/_layouts/home.html
CHANGED
|
@@ -13,7 +13,7 @@ layout: default
|
|
|
13
13
|
<h2>{{ site.data.theme.t.posts | default: 'Posts' }}{% if paginator.page > 1 %}{{ site.data.theme.t.page | default: 'Page' | prepend: ' - ' | append: ' ' }}{{ paginator.page }} {{ site.data.theme.t.of | default: 'of' }} {{ paginator.total_pages }}{% endif %}</h2>
|
|
14
14
|
</header>
|
|
15
15
|
<div class="entries">
|
|
16
|
-
{% if site.
|
|
16
|
+
{% if site.plugins contains 'jekyll-paginate' and page.paginate %}
|
|
17
17
|
{% comment %}
|
|
18
18
|
Add paginator.posts loop if jekyll-paginate plugin is enabled
|
|
19
19
|
and page.paginate == true
|
data/_sass/basically-basic.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Basically Basic Jekyll Theme 1.1.
|
|
2
|
+
* Basically Basic Jekyll Theme 1.1.1
|
|
3
3
|
* Copyright 2017 Michael Rose - mademistakes | @mmistakes
|
|
4
4
|
* Free for personal and commercial use under the MIT license
|
|
5
5
|
* https://github.com/mmistakes/jekyll-theme-basically-basic/blob/master/LICENSE.md
|
data/assets/javascripts/main.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
---
|
|
3
3
|
|
|
4
4
|
/*!
|
|
5
|
-
* Basically Basic Jekyll Theme 1.1.
|
|
5
|
+
* Basically Basic Jekyll Theme 1.1.1
|
|
6
6
|
* Copyright 2017 Michael Rose - mademistakes | @mmistakes
|
|
7
7
|
* Free for personal and commercial use under the MIT license
|
|
8
8
|
* https://github.com/mmistakes/jekyll-basically-theme/blob/master/LICENSE.md
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-basically-basic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Rose
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|