writers-zone 0.1.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.
data/demo/index.html ADDED
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+
7
+ <h1 class="page-heading">Posts</h1>
8
+
9
+ <ul class="post-list">
10
+ {% for post in paginator.posts %}
11
+ <li>
12
+ <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
13
+
14
+ <h2>
15
+ <a class="post-link" href="{{ post.url | prepend: site.baseurl }}" title="{{ post.title }}">{{ post.title | escape }}</a>
16
+ </h2>
17
+ </li>
18
+ {% endfor %}
19
+ </ul>
20
+
21
+ <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}" title="Feed RSS">via RSS</a></p>
22
+
23
+ </div>
data/demo/search.json ADDED
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: null
3
+ ---
4
+ [
5
+ {% for post in site.posts %}
6
+ {
7
+ "title" : "{{ post.title | escape }}",
8
+ "category" : "{{ post.category }}",
9
+ "tags" : "{{ post.tags | join: ', ' }}",
10
+ "url" : "{{ site.baseurl }}{{ post.url }}",
11
+ "date" : "{{ post.date }}",
12
+ "content" : {{ post.content | jsonify }}
13
+ } {% unless forloop.last %},{% endunless %}
14
+ {% endfor %}
15
+ ,
16
+ {% for page in site.pages %}
17
+ {
18
+ {% if page.title != nil %}
19
+ "title" : "{{ page.title | escape }}",
20
+ "category" : "{{ page.category }}",
21
+ "tags" : "{{ page.tags | join: ', ' }}",
22
+ "url" : "{{ site.baseurl }}{{ page.url }}",
23
+ "date" : "{{ page.date }}",
24
+ "content" : {{ page.content | jsonify }}
25
+ {% endif %}
26
+ } {% unless forloop.last %},{% endunless %}
27
+ {% endfor %}
28
+ ]
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: writers-zone
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - StartZeroGnu
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-10-03 00:00:00.000000000 Z
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
+ - !ruby/object:Gem::Dependency
28
+ name: github-pages
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description:
42
+ email:
43
+ - startzerognu@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE.txt
49
+ - README.md
50
+ - _includes/disqus_comments.html
51
+ - _includes/footer.html
52
+ - _includes/google-analytics.html
53
+ - _includes/head.html
54
+ - _includes/header.html
55
+ - _includes/icon-github.html
56
+ - _includes/icon-github.svg
57
+ - _includes/icon-twitter.html
58
+ - _includes/icon-twitter.svg
59
+ - _includes/pagination/pages.html
60
+ - _includes/pagination/posts.html
61
+ - _includes/search/search-box.html
62
+ - _includes/search/search-config.html
63
+ - _includes/search/search-js.min.html
64
+ - _layouts/default.html
65
+ - _layouts/page.html
66
+ - _layouts/post.html
67
+ - _sass/writers-zone.scss
68
+ - _sass/writers-zone/_base.scss
69
+ - _sass/writers-zone/_layout.scss
70
+ - _sass/writers-zone/_plugins.scss
71
+ - _sass/writers-zone/_syntax-highlighting.scss
72
+ - demo/Gemfile
73
+ - demo/_config.yml
74
+ - demo/_posts/2016-09-21-welcome-to-jekyll.markdown
75
+ - demo/_posts/2016-09-30-jekyll-gist-demo.md
76
+ - demo/about.md
77
+ - demo/css/main.scss
78
+ - demo/feed.xml
79
+ - demo/index.html
80
+ - demo/search.json
81
+ homepage: https://github.com/StartZeroGnu/writers-zone
82
+ licenses:
83
+ - MIT
84
+ metadata:
85
+ plugin_type: theme
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 2.5.1
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: Gem Theme for Jekyll (3.2.1) based on the official theme minima (1.2)
106
+ test_files: []