writers-zone 0.1.5 → 0.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 +3 -3
- data/_includes/footer.html +4 -9
- data/_includes/head.html +6 -13
- data/_includes/header.html +15 -13
- data/_includes/pagination/pages.html +2 -2
- data/_includes/pagination/posts.html +2 -2
- data/_layouts/home.html +7 -2
- data/_layouts/search.html +1 -1
- data/assets/main.scss +39 -0
- data/demo/Gemfile +9 -13
- data/demo/_config.yml +17 -17
- data/demo/search.json +2 -2
- metadata +25 -26
- data/demo/css/main.scss +0 -16
- data/demo/feed.xml +0 -30
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff9a927dec12877c521198964e55619c0778a333
|
|
4
|
+
data.tar.gz: a6f500903a5ef2670071d2e1ae2770a560ab0b72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4a6366fb04be5d7c297bb716d0b4afb403797e5aa4f300e2eaca475200c7aecce937b08f9ec9bc63a3dcd28b64f6c87e04ebde5a99664474f5040badced03d4
|
|
7
|
+
data.tar.gz: 62bf251d788746576dd8ee1558eafbf7193c7f4921d00f208a9c79133f41879f076c64405ccad9a1794e804db759fcd7376be7a0f9415ca5cc826c67a10e33e3
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# writers-zone
|
|
2
2
|
|
|
3
|
-
Gem Theme for [Jekyll
|
|
4
|
-
[minima
|
|
5
|
-
[Parker Moore](https://github.com/parkr) with some plugins installed.
|
|
3
|
+
Gem Theme for [Jekyll](https://jekyllrb.com/) based on the (official theme
|
|
4
|
+
[minima](https://github.com/jekyll/minima) by
|
|
5
|
+
[Parker Moore](https://github.com/parkr)) with some plugins installed.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
data/_includes/footer.html
CHANGED
|
@@ -12,13 +12,15 @@
|
|
|
12
12
|
{% if site.author %}
|
|
13
13
|
{% include icons/icon.html icon-name='person' %}{{ site.author | escape }}
|
|
14
14
|
{% else %}
|
|
15
|
-
{{ site.title | escape }}
|
|
15
|
+
{% include icons/icon.html icon-name='globe' %}{{ site.title | escape }}
|
|
16
16
|
{% endif %}
|
|
17
|
-
|
|
17
|
+
</li>
|
|
18
|
+
{% if site.email %}
|
|
18
19
|
<li>
|
|
19
20
|
{% include icons/icon.html icon-name='mail' %}
|
|
20
21
|
<a href="mailto:{{ site.email }}">{{ site.email }}</a>
|
|
21
22
|
</li>
|
|
23
|
+
{% endif %}
|
|
22
24
|
</ul>
|
|
23
25
|
|
|
24
26
|
<ul class="social-media-list">
|
|
@@ -48,13 +50,6 @@
|
|
|
48
50
|
|
|
49
51
|
<section class="footer-description">
|
|
50
52
|
<p>{{ site.description | escape }}</p>
|
|
51
|
-
<p class="rss-subscribe">
|
|
52
|
-
{% include icons/icon.html icon-name='rss' %}
|
|
53
|
-
via
|
|
54
|
-
<a href="{{ "/atom.xml" | prepend: site.baseurl }}" title="Atom">Atom</a>
|
|
55
|
-
or
|
|
56
|
-
<a href="{{ "/feed.xml" | prepend: site.baseurl }}" title="RSS">RSS</a>
|
|
57
|
-
</p>
|
|
58
53
|
</section>
|
|
59
54
|
|
|
60
55
|
</section>
|
data/_includes/head.html
CHANGED
|
@@ -3,22 +3,15 @@
|
|
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
4
4
|
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
|
|
5
5
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
{% assign custom_url = site.url | append: site.baseurl %}
|
|
10
|
-
{% assign full_base_url = custom_url | default: site.github.url %}
|
|
6
|
+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
|
7
|
+
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
|
8
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
|
11
9
|
|
|
12
|
-
{% seo %}
|
|
10
|
+
{% raw %}<!-- {% seo %} -->{% endraw %}
|
|
13
11
|
|
|
14
|
-
|
|
15
|
-
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | prepend: full_base_url }}">
|
|
16
|
-
{% feed_meta %}
|
|
17
|
-
<!-- Feeds -->
|
|
12
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
|
18
13
|
|
|
19
|
-
|
|
20
|
-
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: full_base_url }}">
|
|
21
|
-
<!-- Styles -->
|
|
14
|
+
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
|
22
15
|
|
|
23
16
|
{% if jekyll.environment == 'production' and site.google_analytics %}
|
|
24
17
|
{% include google-analytics.html %}
|
data/_includes/header.html
CHANGED
|
@@ -3,9 +3,8 @@
|
|
|
3
3
|
<div class="wrapper">
|
|
4
4
|
|
|
5
5
|
<div class="header-layout">
|
|
6
|
-
|
|
7
|
-
{
|
|
8
|
-
<a class="site-title" href="{{ full_base_url }}/" title="{{ site.title }}">{{ site.title | escape }}</a>
|
|
6
|
+
|
|
7
|
+
<a class="site-title" href="{{ "/" | relative_url}}" title="{{ site.title }}">{{ site.title | escape }}</a>
|
|
9
8
|
|
|
10
9
|
<nav class="site-nav">
|
|
11
10
|
<input id="menu-icon" type="checkbox">
|
|
@@ -20,18 +19,21 @@
|
|
|
20
19
|
<ul class="site-menu">
|
|
21
20
|
{% for my_page in site.pages %}
|
|
22
21
|
{% if my_page.title %}
|
|
23
|
-
<li
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
{%
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
22
|
+
<li>
|
|
23
|
+
<a
|
|
24
|
+
class="page-link"
|
|
25
|
+
href="{{ my_page.url | relative_url }}"
|
|
26
|
+
title="{{ my_page.title }}">
|
|
27
|
+
{% if my_page.icon %}
|
|
28
|
+
{% include icons/icon.html icon-name=my_page.icon class='text-top c-color' %}
|
|
29
|
+
{% endif %}
|
|
30
|
+
{{ my_page.title | escape }}
|
|
31
|
+
</a>
|
|
32
|
+
</li>
|
|
32
33
|
{% endif %}
|
|
33
34
|
{% endfor %}
|
|
34
|
-
|
|
35
|
+
</ul>
|
|
36
|
+
|
|
35
37
|
</nav>
|
|
36
38
|
|
|
37
39
|
</div>
|
|
@@ -6,13 +6,13 @@ http://jekyllrb.com/docs/pagination/#render-the-paginated-posts
|
|
|
6
6
|
<div class="wrapper">
|
|
7
7
|
<div class="pagination-pages">
|
|
8
8
|
{% if paginator.previous_page %}
|
|
9
|
-
<a class="previous-pages" href="{{ paginator.previous_page_path |
|
|
9
|
+
<a class="previous-pages" href="{{ paginator.previous_page_path | relative_url }}" title="Previous">« Previous</a>
|
|
10
10
|
{% else %}
|
|
11
11
|
<span class="previous-pages">« Previous</span>
|
|
12
12
|
{% endif %}
|
|
13
13
|
<span class="page-number">{{ paginator.page }} of {{ paginator.total_pages }}</span>
|
|
14
14
|
{% if paginator.next_page %}
|
|
15
|
-
<a class="next-pages" href="{{ paginator.next_page_path |
|
|
15
|
+
<a class="next-pages" href="{{ paginator.next_page_path | relative_url }}" title="Next">Next »</a>
|
|
16
16
|
{% else %}
|
|
17
17
|
<span class="next-pages">Next »</span>
|
|
18
18
|
{% endif %}
|
|
@@ -7,12 +7,12 @@ http://www.sigmainfy.com/blog/how-to-add-jekyll-pagination-next-previous-post-li
|
|
|
7
7
|
|
|
8
8
|
<div class="pagination-posts">
|
|
9
9
|
{% if page.previous.url %}
|
|
10
|
-
<a class="previous-posts" href="{{ page.previous.url |
|
|
10
|
+
<a class="previous-posts" href="{{ page.previous.url | relative_url }}" title="{{ page.previous.title }}">« {{ page.previous.title | truncate: 45 }}</a>
|
|
11
11
|
{% else %}
|
|
12
12
|
<span>« ...</span>
|
|
13
13
|
{% endif %}
|
|
14
14
|
{% if page.next.url %}
|
|
15
|
-
<a class="next-posts" href="{{ page.next.url |
|
|
15
|
+
<a class="next-posts" href="{{ page.next.url | relative_url }}" title="{{ page.next.title }}">{{ page.next.title | truncate: 45 }} »</a>
|
|
16
16
|
{% else %}
|
|
17
17
|
<span>... »</span>
|
|
18
18
|
{% endif %}
|
data/_layouts/home.html
CHANGED
|
@@ -6,6 +6,8 @@ layout: default
|
|
|
6
6
|
|
|
7
7
|
<h1 class="page-heading">Posts</h1>
|
|
8
8
|
|
|
9
|
+
{{ content }}
|
|
10
|
+
|
|
9
11
|
<ul class="post-list">
|
|
10
12
|
{% for post in paginator.posts %}
|
|
11
13
|
<li>
|
|
@@ -13,11 +15,12 @@ layout: default
|
|
|
13
15
|
{% include icons/icon.html icon-name='calendar' %}
|
|
14
16
|
{{ post.date | date: "%b %-d, %Y" }}
|
|
15
17
|
</span>
|
|
18
|
+
|
|
16
19
|
<h2>
|
|
17
20
|
<a
|
|
18
21
|
class="post-link"
|
|
19
|
-
href="{{ post.url |
|
|
20
|
-
title="{{ post.
|
|
22
|
+
href="{{ post.url | relative_url }}"
|
|
23
|
+
title="{{ post.tile }}">
|
|
21
24
|
{{ post.title | escape }}
|
|
22
25
|
</a>
|
|
23
26
|
</h2>
|
|
@@ -25,4 +28,6 @@ layout: default
|
|
|
25
28
|
{% endfor %}
|
|
26
29
|
</ul>
|
|
27
30
|
|
|
31
|
+
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}" title="Atom Feed">via RSS</a></p>
|
|
32
|
+
|
|
28
33
|
</div>
|
data/_layouts/search.html
CHANGED
|
@@ -18,7 +18,7 @@ layout: default
|
|
|
18
18
|
SimpleJekyllSearch({
|
|
19
19
|
searchInput: document.getElementById('search-input'),
|
|
20
20
|
resultsContainer: document.getElementById('results-container'),
|
|
21
|
-
json: '{{
|
|
21
|
+
json: '{{ "/search.json" | relative_url }}',
|
|
22
22
|
searchResultTemplate: '<li class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="10" height="16" viewBox="0 0 10 16"><path d="M10 8L4 3v3H0v4h4v3z"/></svg><a href="{url}" title="{title}">{title}</a></li>',
|
|
23
23
|
noResultsText: 'No results found',
|
|
24
24
|
limit: 10,
|
data/assets/main.scss
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
|
3
|
+
---
|
|
4
|
+
@charset "utf-8";
|
|
5
|
+
|
|
6
|
+
// Our variables
|
|
7
|
+
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
8
|
+
$base-font-size: 16px;
|
|
9
|
+
$base-font-weight: 400;
|
|
10
|
+
$small-font-size: $base-font-size * 0.875;
|
|
11
|
+
$base-line-height: 1.5;
|
|
12
|
+
|
|
13
|
+
$spacing-unit: 30px;
|
|
14
|
+
|
|
15
|
+
$text-color: #111;
|
|
16
|
+
$background-color: #fdfdfd;
|
|
17
|
+
$brand-color: #2a7ae2;
|
|
18
|
+
|
|
19
|
+
$grey-color: #828282;
|
|
20
|
+
$grey-color-light: lighten($grey-color, 40%);
|
|
21
|
+
$grey-color-dark: darken($grey-color, 25%);
|
|
22
|
+
|
|
23
|
+
// Width of the content area
|
|
24
|
+
$content-width: 800px;
|
|
25
|
+
|
|
26
|
+
$on-palm: 600px;
|
|
27
|
+
$on-laptop: 800px;
|
|
28
|
+
|
|
29
|
+
// Minima also includes a mixin for defining media queries.
|
|
30
|
+
// Use media queries like this:
|
|
31
|
+
// @include media-query($on-palm) {
|
|
32
|
+
// .wrapper {
|
|
33
|
+
// padding-right: $spacing-unit / 2;
|
|
34
|
+
// padding-left: $spacing-unit / 2;
|
|
35
|
+
// }
|
|
36
|
+
// }
|
|
37
|
+
|
|
38
|
+
// Import partials from the `minima` theme.
|
|
39
|
+
@import "writers-zone";
|
data/demo/Gemfile
CHANGED
|
@@ -9,24 +9,20 @@ ruby RUBY_VERSION
|
|
|
9
9
|
#
|
|
10
10
|
# This will help ensure the proper Jekyll version is running.
|
|
11
11
|
# Happy Jekylling!
|
|
12
|
-
gem "jekyll", "~> 3.
|
|
12
|
+
gem "jekyll", "~> 3.3"
|
|
13
13
|
|
|
14
14
|
# This is the default theme for new Jekyll sites. You may change this to anything you like.
|
|
15
|
-
gem "writers-zone", "~> 0.
|
|
16
|
-
|
|
17
|
-
## Plugins
|
|
18
|
-
|
|
19
|
-
gem "jekyll-feed", "~> 0.7"
|
|
20
|
-
gem "jekyll-gist", "~> 1.4"
|
|
21
|
-
gem "jekyll-paginate", "~> 1.1"
|
|
22
|
-
gem "jekyll-seo-tag", "~> 2.0"
|
|
23
|
-
gem "jekyll-sitemap", "~> 0.11"
|
|
15
|
+
gem "writers-zone", "~> 0.2"
|
|
24
16
|
|
|
25
17
|
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
|
26
18
|
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
|
27
19
|
# gem "github-pages", group: :jekyll_plugins
|
|
28
20
|
|
|
29
21
|
# If you have any plugins, put them here!
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
22
|
+
group :jekyll_plugins do
|
|
23
|
+
gem "jekyll-feed", "~> 0.8"
|
|
24
|
+
gem "jekyll-gist", "~> 1.4"
|
|
25
|
+
gem "jekyll-paginate", "~> 1.1"
|
|
26
|
+
gem "jekyll-seo-tag", "~> 2.0"
|
|
27
|
+
gem "jekyll-sitemap", "~> 0.12"
|
|
28
|
+
end
|
data/demo/_config.yml
CHANGED
|
@@ -6,37 +6,41 @@
|
|
|
6
6
|
# feature for the data you need to update frequently.
|
|
7
7
|
#
|
|
8
8
|
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
|
9
|
-
# 'jekyll serve'. If you change this file, please restart the server process.
|
|
9
|
+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
|
10
10
|
|
|
11
11
|
# Site settings
|
|
12
12
|
# These are used to personalize your new site. If you look in the HTML files,
|
|
13
13
|
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
|
14
14
|
# You can create any custom variable you would like, and they will be accessible
|
|
15
15
|
# in the templates via {{ site.myvariable }}.
|
|
16
|
-
|
|
17
|
-
# Site
|
|
18
|
-
title: Test
|
|
16
|
+
title: Writers Zone
|
|
19
17
|
description: > # this means to ignore newlines until "baseurl:"
|
|
20
|
-
Gem Theme for Jekyll
|
|
21
|
-
|
|
18
|
+
Gem Theme for Jekyll based on the
|
|
19
|
+
(official theme minima by Parker Moore)
|
|
20
|
+
with some plugins installed.
|
|
22
21
|
baseurl: "" # the subpath of your site, e.g. /blog
|
|
23
|
-
url: "
|
|
22
|
+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
|
24
23
|
|
|
25
|
-
#
|
|
24
|
+
#Author
|
|
26
25
|
author: StartZeroGnu
|
|
27
26
|
email: test@email.com
|
|
28
27
|
twitter_username: testTwitter
|
|
29
28
|
github_username: testGitHub
|
|
30
29
|
|
|
30
|
+
# Build settings
|
|
31
|
+
markdown: kramdown
|
|
32
|
+
|
|
33
|
+
theme: writers-zone
|
|
34
|
+
|
|
31
35
|
exclude:
|
|
32
36
|
- Gemfile
|
|
33
37
|
- Gemfile.lock
|
|
34
38
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
39
|
+
collections:
|
|
40
|
+
posts:
|
|
41
|
+
permalink: /blog/posts/:title
|
|
38
42
|
|
|
39
|
-
#
|
|
43
|
+
#Plugins
|
|
40
44
|
gems:
|
|
41
45
|
- jekyll-feed
|
|
42
46
|
- jekyll-gist
|
|
@@ -44,17 +48,13 @@ gems:
|
|
|
44
48
|
- jekyll-seo-tag
|
|
45
49
|
- jekyll-sitemap
|
|
46
50
|
|
|
47
|
-
# Feed
|
|
48
|
-
feed:
|
|
49
|
-
path: atom.xml
|
|
50
|
-
|
|
51
51
|
# Gist
|
|
52
52
|
gist:
|
|
53
53
|
noscript: false
|
|
54
54
|
|
|
55
55
|
# Paginate
|
|
56
56
|
paginate: 3
|
|
57
|
-
paginate_path: /page:num/
|
|
57
|
+
paginate_path: /blog/page:num/
|
|
58
58
|
|
|
59
59
|
# SEO (basic config)
|
|
60
60
|
#
|
data/demo/search.json
CHANGED
|
@@ -7,7 +7,7 @@ layout: null
|
|
|
7
7
|
"title" : "{{ post.title | escape }}",
|
|
8
8
|
"category" : "{{ post.category }}",
|
|
9
9
|
"tags" : "{{ post.tags | join: ', ' }}",
|
|
10
|
-
"url" : "{{
|
|
10
|
+
"url" : "{{ post.url | relative_url }}",
|
|
11
11
|
"date" : "{{ post.date }}",
|
|
12
12
|
"content" : {{ post.content | jsonify }}
|
|
13
13
|
} {% unless forloop.last %},{% endunless %}
|
|
@@ -19,7 +19,7 @@ layout: null
|
|
|
19
19
|
"title" : "{{ page.title | escape }}",
|
|
20
20
|
"category" : "{{ page.category }}",
|
|
21
21
|
"tags" : "{{ page.tags | join: ', ' }}",
|
|
22
|
-
"url" : "{{
|
|
22
|
+
"url" : "{{ page.url | relative_url }}",
|
|
23
23
|
"date" : "{{ page.date }}",
|
|
24
24
|
"content" : {{ page.content | jsonify }}
|
|
25
25
|
{% endif %}
|
metadata
CHANGED
|
@@ -1,57 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: writers-zone
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- StartZeroGnu
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: rake
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '11.3'
|
|
20
|
-
type: :development
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '11.3'
|
|
27
13
|
- !ruby/object:Gem::Dependency
|
|
28
14
|
name: jekyll
|
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
|
30
16
|
requirements:
|
|
31
17
|
- - "~>"
|
|
32
18
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '3.
|
|
19
|
+
version: '3.3'
|
|
34
20
|
type: :runtime
|
|
35
21
|
prerelease: false
|
|
36
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
23
|
requirements:
|
|
38
24
|
- - "~>"
|
|
39
25
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '3.
|
|
26
|
+
version: '3.3'
|
|
41
27
|
- !ruby/object:Gem::Dependency
|
|
42
28
|
name: jekyll-feed
|
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
|
44
30
|
requirements:
|
|
45
31
|
- - "~>"
|
|
46
32
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '0.
|
|
33
|
+
version: '0.8'
|
|
48
34
|
type: :runtime
|
|
49
35
|
prerelease: false
|
|
50
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
37
|
requirements:
|
|
52
38
|
- - "~>"
|
|
53
39
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '0.
|
|
40
|
+
version: '0.8'
|
|
55
41
|
- !ruby/object:Gem::Dependency
|
|
56
42
|
name: jekyll-gist
|
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,14 +86,28 @@ dependencies:
|
|
|
100
86
|
requirements:
|
|
101
87
|
- - "~>"
|
|
102
88
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '0.
|
|
89
|
+
version: '0.12'
|
|
104
90
|
type: :runtime
|
|
105
91
|
prerelease: false
|
|
106
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
93
|
requirements:
|
|
108
94
|
- - "~>"
|
|
109
95
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '0.
|
|
96
|
+
version: '0.12'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rake
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '11.3'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '11.3'
|
|
111
111
|
description:
|
|
112
112
|
email:
|
|
113
113
|
- startzerognu@gmail.com
|
|
@@ -327,6 +327,7 @@ files:
|
|
|
327
327
|
- _sass/vendor/_normalize.scss
|
|
328
328
|
- _sass/vendor/_syntax-highlighting.scss
|
|
329
329
|
- _sass/writers-zone.scss
|
|
330
|
+
- assets/main.scss
|
|
330
331
|
- demo/Gemfile
|
|
331
332
|
- demo/_config.yml
|
|
332
333
|
- demo/_posts/2016-05-20-my-example-post.md
|
|
@@ -335,8 +336,6 @@ files:
|
|
|
335
336
|
- demo/_posts/2016-09-21-welcome-to-jekyll.markdown
|
|
336
337
|
- demo/_posts/2016-09-30-jekyll-gist-demo.md
|
|
337
338
|
- demo/about.md
|
|
338
|
-
- demo/css/main.scss
|
|
339
|
-
- demo/feed.xml
|
|
340
339
|
- demo/index.html
|
|
341
340
|
- demo/search.json
|
|
342
341
|
- demo/search.md
|
|
@@ -364,6 +363,6 @@ rubyforge_project:
|
|
|
364
363
|
rubygems_version: 2.5.1
|
|
365
364
|
signing_key:
|
|
366
365
|
specification_version: 4
|
|
367
|
-
summary: Gem Theme for Jekyll
|
|
368
|
-
|
|
366
|
+
summary: Gem Theme for Jekyll based on the official theme minima with some plugins
|
|
367
|
+
installed.
|
|
369
368
|
test_files: []
|
data/demo/css/main.scss
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
# Only the main Sass file needs front matter (the dashes are enough)
|
|
3
|
-
---
|
|
4
|
-
@charset "utf-8";
|
|
5
|
-
|
|
6
|
-
// Theme
|
|
7
|
-
$text-color: #111;
|
|
8
|
-
$background-color: #fdfdfd;
|
|
9
|
-
$brand-color: #2a7ae2;
|
|
10
|
-
|
|
11
|
-
$grey-color: #828282;
|
|
12
|
-
$grey-color-light: lighten($grey-color, 40%);
|
|
13
|
-
$grey-color-dark: darken($grey-color, 25%);
|
|
14
|
-
|
|
15
|
-
// Import partials
|
|
16
|
-
@import "writers-zone";
|
data/demo/feed.xml
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
layout: null
|
|
3
|
-
---
|
|
4
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
5
|
-
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
6
|
-
<channel>
|
|
7
|
-
<title>{{ site.title | xml_escape }}</title>
|
|
8
|
-
<description>{{ site.description | xml_escape }}</description>
|
|
9
|
-
<link>{{ site.url }}{{ site.baseurl }}/</link>
|
|
10
|
-
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
|
|
11
|
-
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
|
|
12
|
-
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
|
|
13
|
-
<generator>Jekyll v{{ jekyll.version }}</generator>
|
|
14
|
-
{% for post in site.posts limit:10 %}
|
|
15
|
-
<item>
|
|
16
|
-
<title>{{ post.title | xml_escape }}</title>
|
|
17
|
-
<description>{{ post.content | xml_escape }}</description>
|
|
18
|
-
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
|
|
19
|
-
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
|
|
20
|
-
<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
|
|
21
|
-
{% for tag in post.tags %}
|
|
22
|
-
<category>{{ tag | xml_escape }}</category>
|
|
23
|
-
{% endfor %}
|
|
24
|
-
{% for cat in post.categories %}
|
|
25
|
-
<category>{{ cat | xml_escape }}</category>
|
|
26
|
-
{% endfor %}
|
|
27
|
-
</item>
|
|
28
|
-
{% endfor %}
|
|
29
|
-
</channel>
|
|
30
|
-
</rss>
|