gouy 0.0.4
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +47 -0
- data/_includes/archive.html +15 -0
- data/_includes/callout.html +1 -0
- data/_includes/custom/getting_started_series.html +19 -0
- data/_includes/custom/getting_started_series_next.html +10 -0
- data/_includes/custom/series_acme.html +19 -0
- data/_includes/custom/series_acme_next.html +30 -0
- data/_includes/custom/usermap.html +14 -0
- data/_includes/custom/usermapcomplex.html +91 -0
- data/_includes/disqus.html +25 -0
- data/_includes/feedback.html +13 -0
- data/_includes/footer.html +9 -0
- data/_includes/google_analytics.html +6 -0
- data/_includes/head.html +39 -0
- data/_includes/head_print.html +28 -0
- data/_includes/image.html +1 -0
- data/_includes/important.html +1 -0
- data/_includes/initialize_shuffle.html +130 -0
- data/_includes/inline_image.html +1 -0
- data/_includes/links.html +44 -0
- data/_includes/note.html +1 -0
- data/_includes/sidebar.html +58 -0
- data/_includes/taglogic.html +32 -0
- data/_includes/tip.html +1 -0
- data/_includes/toc.html +21 -0
- data/_includes/topnav.html +81 -0
- data/_includes/warning.html +1 -0
- data/_layouts/default.html +126 -0
- data/_layouts/default_print.html +25 -0
- data/_layouts/none.html +3 -0
- data/_layouts/page.html +68 -0
- data/_layouts/page_print.html +15 -0
- data/_layouts/post.html +39 -0
- data/licenses/LICENSE +21 -0
- data/licenses/LICENSE-BSD-NAVGOCO.txt +27 -0
- metadata +122 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
layout: default_print
|
3
|
+
comments: true
|
4
|
+
---
|
5
|
+
<div class="post-header">
|
6
|
+
<h1 class="post-title-main" id="{{page.permalink | replace: '/', '' }}">{{ page.title }}</h1>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<div class="post-content">
|
10
|
+
|
11
|
+
{% if page.summary %}
|
12
|
+
<div class="summary">{{page.summary}}</div>
|
13
|
+
{% endif %}
|
14
|
+
{{ content }}
|
15
|
+
</div>
|
data/_layouts/post.html
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
|
5
|
+
|
6
|
+
<header class="post-header">
|
7
|
+
<h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
|
8
|
+
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time> {% if page.author %}<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">/ {{ page.author }}</span></span>{% endif %}{% if page.tags != null %}/
|
9
|
+
{% assign projectTags = site.data.tags.allowed-tags %}
|
10
|
+
{% for tag in page.tags %}
|
11
|
+
{% if projectTags contains tag %}
|
12
|
+
<a href="{{ "tag_" | append: tag | append: ".html"}}">{{tag}}</a>{% unless forloop.last %}, {% endunless%}
|
13
|
+
{% endif %}
|
14
|
+
{% endfor %}
|
15
|
+
{% endif %}
|
16
|
+
|
17
|
+
</p>
|
18
|
+
|
19
|
+
|
20
|
+
</header>
|
21
|
+
|
22
|
+
<div class="post-content" itemprop="articleBody">
|
23
|
+
|
24
|
+
{% if page.summary %}
|
25
|
+
<div class="summary">{{page.summary}}</div>
|
26
|
+
{% endif %}
|
27
|
+
|
28
|
+
{{ content }}
|
29
|
+
</div>
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
</article>
|
34
|
+
|
35
|
+
{% include disqus.html %}
|
36
|
+
|
37
|
+
{{site.data.alerts.hr_shaded}}
|
38
|
+
|
39
|
+
{% include footer.html %}
|
data/licenses/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Tom Johnson
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,27 @@
|
|
1
|
+
/* This license pertains to the Navgoco jQuery component used for the sidebar. */
|
2
|
+
|
3
|
+
Copyright (c) 2013, Christodoulos Tsoulloftas, http://www.komposta.net
|
4
|
+
All rights reserved.
|
5
|
+
|
6
|
+
Redistribution and use in source and binary forms, with or without modification,
|
7
|
+
are permitted provided that the following conditions are met:
|
8
|
+
|
9
|
+
* Redistributions of source code must retain the above copyright notice,
|
10
|
+
this list of conditions and the following disclaimer.
|
11
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
13
|
+
and/or other materials provided with the distribution.
|
14
|
+
* Neither the name of the <Christodoulos Tsoulloftas> nor the names of its
|
15
|
+
contributors may be used to endorse or promote products derived from this
|
16
|
+
software without specific prior written permission.
|
17
|
+
|
18
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
21
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
22
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
23
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
25
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
26
|
+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
27
|
+
OF THE POSSIBILITY OF SUCH DAMAGE.
|
metadata
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gouy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Adel Lamallam
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-09-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.12'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description: Gouy is an easy to use jekyll theme.
|
56
|
+
email:
|
57
|
+
- lamallam@afroware.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/archive.html
|
65
|
+
- _includes/callout.html
|
66
|
+
- _includes/custom/getting_started_series.html
|
67
|
+
- _includes/custom/getting_started_series_next.html
|
68
|
+
- _includes/custom/series_acme.html
|
69
|
+
- _includes/custom/series_acme_next.html
|
70
|
+
- _includes/custom/usermap.html
|
71
|
+
- _includes/custom/usermapcomplex.html
|
72
|
+
- _includes/disqus.html
|
73
|
+
- _includes/feedback.html
|
74
|
+
- _includes/footer.html
|
75
|
+
- _includes/google_analytics.html
|
76
|
+
- _includes/head.html
|
77
|
+
- _includes/head_print.html
|
78
|
+
- _includes/image.html
|
79
|
+
- _includes/important.html
|
80
|
+
- _includes/initialize_shuffle.html
|
81
|
+
- _includes/inline_image.html
|
82
|
+
- _includes/links.html
|
83
|
+
- _includes/note.html
|
84
|
+
- _includes/sidebar.html
|
85
|
+
- _includes/taglogic.html
|
86
|
+
- _includes/tip.html
|
87
|
+
- _includes/toc.html
|
88
|
+
- _includes/topnav.html
|
89
|
+
- _includes/warning.html
|
90
|
+
- _layouts/default.html
|
91
|
+
- _layouts/default_print.html
|
92
|
+
- _layouts/none.html
|
93
|
+
- _layouts/page.html
|
94
|
+
- _layouts/page_print.html
|
95
|
+
- _layouts/post.html
|
96
|
+
- licenses/LICENSE
|
97
|
+
- licenses/LICENSE-BSD-NAVGOCO.txt
|
98
|
+
homepage: https://github.com/afroware/gouy
|
99
|
+
licenses:
|
100
|
+
- MIT
|
101
|
+
metadata: {}
|
102
|
+
post_install_message:
|
103
|
+
rdoc_options: []
|
104
|
+
require_paths:
|
105
|
+
- lib
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
requirements: []
|
117
|
+
rubyforge_project:
|
118
|
+
rubygems_version: 2.6.11
|
119
|
+
signing_key:
|
120
|
+
specification_version: 4
|
121
|
+
summary: A Jekyll Theme.
|
122
|
+
test_files: []
|