grey-energy-theme 0.0.0 → 0.0.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/.gitignore +10 -0
- data/404.md +5 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +70 -0
- data/_config.yml +37 -0
- data/_posts/2017-01-01-First-post.markdown +16 -0
- data/_posts/2017-01-02-Second-post.markdown +19 -0
- data/_posts/2017-01-03-Third-post.markdown +16 -0
- data/_posts/2017-12-04-Fourth-post.markdown +17 -0
- data/_posts/2017-12-05-Fifth-post.markdown +16 -0
- data/_posts/2017-12-06-Sixth-post.markdown +17 -0
- data/archive.html +24 -0
- data/grey-energy-theme.gemspec +19 -0
- data/index.html +7 -0
- data/manifest.json +46 -0
- data/scripts/Dockerfile +12 -0
- data/scripts/run_in_docker +17 -0
- metadata +18 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36122cf86eba8fdc6ca8183c3b1f5ca9ae6cdfbc
|
4
|
+
data.tar.gz: 23dcce8b6479236e769b414cd7c53a792acbc59f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c229bfe980b51122d3aba1d051763dba953d0d2ac455c81dbb625521c7049862fce4f83ef453301f848c17b54d7d2637889119d2aef9e4984c62907dc34b42cf
|
7
|
+
data.tar.gz: c1c066bf0d0b9fac6343b375f9cba45b9fa482bbdc7dbc1510c8dbeb8edc35e8f6155b87702be01076827fad13c19b99b26b87d16ebc19d722f2e48e97e4214a
|
data/.gitignore
ADDED
data/404.md
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
grey-energy-theme (0.0.0)
|
5
|
+
jekyll (~> 3.6)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
addressable (2.5.2)
|
11
|
+
public_suffix (>= 2.0.2, < 4.0)
|
12
|
+
colorator (1.1.0)
|
13
|
+
concurrent-ruby (1.0.5)
|
14
|
+
em-websocket (0.5.1)
|
15
|
+
eventmachine (>= 0.12.9)
|
16
|
+
http_parser.rb (~> 0.6.0)
|
17
|
+
eventmachine (1.2.5)
|
18
|
+
ffi (1.9.18)
|
19
|
+
forwardable-extended (2.6.0)
|
20
|
+
http_parser.rb (0.6.0)
|
21
|
+
i18n (0.9.1)
|
22
|
+
concurrent-ruby (~> 1.0)
|
23
|
+
jekyll (3.7.0)
|
24
|
+
addressable (~> 2.4)
|
25
|
+
colorator (~> 1.0)
|
26
|
+
em-websocket (~> 0.5)
|
27
|
+
i18n (~> 0.7)
|
28
|
+
jekyll-sass-converter (~> 1.0)
|
29
|
+
jekyll-watch (~> 2.0)
|
30
|
+
kramdown (~> 1.14)
|
31
|
+
liquid (~> 4.0)
|
32
|
+
mercenary (~> 0.3.3)
|
33
|
+
pathutil (~> 0.9)
|
34
|
+
rouge (>= 1.7, < 4)
|
35
|
+
safe_yaml (~> 1.0)
|
36
|
+
jekyll-sass-converter (1.5.1)
|
37
|
+
sass (~> 3.4)
|
38
|
+
jekyll-watch (2.0.0)
|
39
|
+
listen (~> 3.0)
|
40
|
+
kramdown (1.16.2)
|
41
|
+
liquid (4.0.0)
|
42
|
+
listen (3.1.5)
|
43
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
44
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
45
|
+
ruby_dep (~> 1.2)
|
46
|
+
mercenary (0.3.6)
|
47
|
+
pathutil (0.16.1)
|
48
|
+
forwardable-extended (~> 2.6)
|
49
|
+
public_suffix (3.0.1)
|
50
|
+
rb-fsevent (0.10.2)
|
51
|
+
rb-inotify (0.9.10)
|
52
|
+
ffi (>= 0.5.0, < 2)
|
53
|
+
rouge (3.1.0)
|
54
|
+
ruby_dep (1.5.0)
|
55
|
+
safe_yaml (1.0.4)
|
56
|
+
sass (3.5.5)
|
57
|
+
sass-listen (~> 4.0.0)
|
58
|
+
sass-listen (4.0.0)
|
59
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
60
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
61
|
+
|
62
|
+
PLATFORMS
|
63
|
+
ruby
|
64
|
+
|
65
|
+
DEPENDENCIES
|
66
|
+
bundler (~> 1.12)
|
67
|
+
grey-energy-theme!
|
68
|
+
|
69
|
+
BUNDLED WITH
|
70
|
+
1.16.1
|
data/_config.yml
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
title: My Name | Blog
|
2
|
+
short_name: Blog # this needs to be <= 12 characters
|
3
|
+
description: |
|
4
|
+
# My Name
|
5
|
+
|
6
|
+
This is the blog of an awesome Software Engineer.
|
7
|
+
|
8
|
+
This software engineer is an expert in typing fast and drinking coffee.
|
9
|
+
|
10
|
+
baseurl: "" # example: /blog
|
11
|
+
|
12
|
+
google_analyitics_id: # add id here
|
13
|
+
|
14
|
+
github_username: username # add github username
|
15
|
+
stackoverflow_username: 418274/username # copy your username from stack overflow like so: 418274/username
|
16
|
+
stackexchange_username: 000000/username # copy your username from stack exchange like so: 147389/username
|
17
|
+
medium_username: # add medium username without @
|
18
|
+
linkedin_username:
|
19
|
+
twitter_username: # add twitter username without @
|
20
|
+
facebook_username:
|
21
|
+
googleplus_username:
|
22
|
+
codepen_username:
|
23
|
+
angellist_username:
|
24
|
+
youtube_username:
|
25
|
+
dribbble_username:
|
26
|
+
bitbucket_username:
|
27
|
+
|
28
|
+
|
29
|
+
email: email@email.com # your-email@example.com
|
30
|
+
email-subject-line: "I've seen your awesome blog, let's talk" # Feel free to alter
|
31
|
+
|
32
|
+
|
33
|
+
# No need to alter the below
|
34
|
+
|
35
|
+
markdown: kramdown
|
36
|
+
latest_post_count: 4
|
37
|
+
date_format: "%Y-%0m-%0d"
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "First post"
|
4
|
+
date: 2017-01-01 12:00:00 +0000
|
5
|
+
tags: example-post
|
6
|
+
---
|
7
|
+
|
8
|
+
This is the first example post.
|
9
|
+
|
10
|
+
{% highlight bash %}
|
11
|
+
echo 123 > abc
|
12
|
+
{% endhighlight %}
|
13
|
+
|
14
|
+
This is a link to [Google][google].
|
15
|
+
|
16
|
+
[google]: https://www.google.com
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Second post"
|
4
|
+
date: 2017-01-02 13:00:00 +0000
|
5
|
+
tags: example-post
|
6
|
+
---
|
7
|
+
|
8
|
+
This is the second example post.
|
9
|
+
|
10
|
+
{% highlight bash %}
|
11
|
+
while true; do
|
12
|
+
sleep 1
|
13
|
+
echo "Second passed..."
|
14
|
+
done
|
15
|
+
{% endhighlight %}
|
16
|
+
|
17
|
+
This is a link to [Amazon][amazon].
|
18
|
+
|
19
|
+
[amazon]: https://www.amazon.com
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Third post"
|
4
|
+
date: 2017-01-03 14:00:00 +0000
|
5
|
+
tags: example-post
|
6
|
+
---
|
7
|
+
|
8
|
+
This is the third example post.
|
9
|
+
|
10
|
+
{% highlight bash %}
|
11
|
+
yes "Yap about it continuously..."
|
12
|
+
{% endhighlight %}
|
13
|
+
|
14
|
+
This is a link to [Facebook][facebook].
|
15
|
+
|
16
|
+
[facebook]: https://www.facebook.com
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Fourth post"
|
4
|
+
date: 2017-12-04 15:00:00 +0000
|
5
|
+
tags: example-post milestone
|
6
|
+
---
|
7
|
+
|
8
|
+
This is the fourth example post.
|
9
|
+
|
10
|
+
{% highlight bash %}
|
11
|
+
let "a = 0 + 1 + 1 + 2 + 3 + 5"
|
12
|
+
echo "a is $a"
|
13
|
+
{% endhighlight %}
|
14
|
+
|
15
|
+
This is a link to [HackerNews][hn].
|
16
|
+
|
17
|
+
[hn]: https://news.ycombinator.com/
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Fifth post"
|
4
|
+
date: 2017-12-05 16:00:00 +0000
|
5
|
+
tags: example-post milestone
|
6
|
+
---
|
7
|
+
|
8
|
+
This is the fifth example post.
|
9
|
+
|
10
|
+
{% highlight bash %}
|
11
|
+
tail -f /var/log/messages
|
12
|
+
{% endhighlight %}
|
13
|
+
|
14
|
+
This is a link to [Linkedin][linkedin].
|
15
|
+
|
16
|
+
[linkedin]: https://www.linkedin.com/
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: "Sixth post post post post post post post post post post post post post post"
|
4
|
+
date: 2017-12-06 17:00:00 +0000
|
5
|
+
tags: example-post
|
6
|
+
---
|
7
|
+
|
8
|
+
This is the sixth example post.
|
9
|
+
|
10
|
+
{% highlight bash %}
|
11
|
+
read -r line < file1.txt
|
12
|
+
echo "$line"
|
13
|
+
{% endhighlight %}
|
14
|
+
|
15
|
+
This is a link to [Stackoverflow][stackoverflow].
|
16
|
+
|
17
|
+
[stackoverflow]: https://stackoverflow.com/
|
data/archive.html
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="archive-content">
|
6
|
+
<!-- List all posts... -->
|
7
|
+
{% if site.posts.size > 0 %}
|
8
|
+
<h1 class="page-heading">Posts</h1>
|
9
|
+
<ul class="post-list">
|
10
|
+
{% for post in site.posts %}
|
11
|
+
<li>
|
12
|
+
{% assign date_format = site.date_format | default: "%b %-d, %Y" %}
|
13
|
+
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
14
|
+
|
15
|
+
<h2>
|
16
|
+
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
17
|
+
</h2>
|
18
|
+
</li>
|
19
|
+
{% endfor %}
|
20
|
+
</ul>
|
21
|
+
{% else %}
|
22
|
+
<p>Posts will be arriving soon...</p>
|
23
|
+
{% endif %}
|
24
|
+
</div>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = "grey-energy-theme"
|
3
|
+
spec.version = "0.0.1"
|
4
|
+
spec.authors = ["Natalie Marleny"]
|
5
|
+
spec.email = ["nataliemarleny@gmail.com"]
|
6
|
+
|
7
|
+
spec.summary = %q{Animated grey-colored theme for Jekyll.}
|
8
|
+
spec.homepage = "https://github.com/nataliemarleny/grey-energy-theme"
|
9
|
+
spec.license = "MIT"
|
10
|
+
|
11
|
+
spec.metadata["plugin_type"] = "theme"
|
12
|
+
|
13
|
+
spec.files = `git ls-files -z`.split("\x0").select do |f|
|
14
|
+
f.match(%r{^(|assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown|html)|$)))}i)
|
15
|
+
end
|
16
|
+
|
17
|
+
spec.add_runtime_dependency "jekyll", "~> 3.6"
|
18
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
19
|
+
end
|
data/index.html
ADDED
data/manifest.json
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
{
|
2
|
+
"name": "Awesome Blog",
|
3
|
+
"short_name": "Blog",
|
4
|
+
"theme_color": "#666666",
|
5
|
+
"background_color": "#fefefe",
|
6
|
+
"start-url": "",
|
7
|
+
"display": "fullscreen",
|
8
|
+
"icons": [
|
9
|
+
{
|
10
|
+
"src": "\/android-icon-36x36.png",
|
11
|
+
"sizes": "36x36",
|
12
|
+
"type": "image\/png",
|
13
|
+
"density": "0.75"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"src": "\/android-icon-48x48.png",
|
17
|
+
"sizes": "48x48",
|
18
|
+
"type": "image\/png",
|
19
|
+
"density": "1.0"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"src": "\/android-icon-72x72.png",
|
23
|
+
"sizes": "72x72",
|
24
|
+
"type": "image\/png",
|
25
|
+
"density": "1.5"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"src": "\/android-icon-96x96.png",
|
29
|
+
"sizes": "96x96",
|
30
|
+
"type": "image\/png",
|
31
|
+
"density": "2.0"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"src": "\/android-icon-144x144.png",
|
35
|
+
"sizes": "144x144",
|
36
|
+
"type": "image\/png",
|
37
|
+
"density": "3.0"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"src": "\/android-icon-192x192.png",
|
41
|
+
"sizes": "192x192",
|
42
|
+
"type": "image\/png",
|
43
|
+
"density": "4.0"
|
44
|
+
}
|
45
|
+
]
|
46
|
+
}
|
data/scripts/Dockerfile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -x
|
3
|
+
|
4
|
+
declare _scripts_dir
|
5
|
+
_scripts_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
6
|
+
|
7
|
+
# build Docker image
|
8
|
+
docker build -t grey-energy-theme:1.0 "$_scripts_dir"
|
9
|
+
|
10
|
+
# run Jekyll in the container
|
11
|
+
docker run \
|
12
|
+
-w /root/theme \
|
13
|
+
-v "$_scripts_dir/..:/root/theme" \
|
14
|
+
-it -p "${1:-4000}:${1:-4000}" \
|
15
|
+
grey-energy-theme:1.0 \
|
16
|
+
bash -c \
|
17
|
+
"bundle install && bundle exec jekyll serve -H 0.0.0.0 -P ${1:-4000}"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grey-energy-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Natalie Marleny
|
@@ -45,7 +45,12 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- 404.md
|
50
|
+
- Gemfile
|
51
|
+
- Gemfile.lock
|
48
52
|
- LICENSE.txt
|
53
|
+
- _config.yml
|
49
54
|
- _includes/footer.html
|
50
55
|
- _includes/head.html
|
51
56
|
- _includes/header.html
|
@@ -53,6 +58,12 @@ files:
|
|
53
58
|
- _layouts/home.html
|
54
59
|
- _layouts/page.html
|
55
60
|
- _layouts/post.html
|
61
|
+
- _posts/2017-01-01-First-post.markdown
|
62
|
+
- _posts/2017-01-02-Second-post.markdown
|
63
|
+
- _posts/2017-01-03-Third-post.markdown
|
64
|
+
- _posts/2017-12-04-Fourth-post.markdown
|
65
|
+
- _posts/2017-12-05-Fifth-post.markdown
|
66
|
+
- _posts/2017-12-06-Sixth-post.markdown
|
56
67
|
- _sass/_reset.scss
|
57
68
|
- _sass/archive.scss
|
58
69
|
- _sass/colors.scss
|
@@ -63,6 +74,7 @@ files:
|
|
63
74
|
- _sass/post.scss
|
64
75
|
- _sass/syntax-highlight.scss
|
65
76
|
- _sass/typography.scss
|
77
|
+
- archive.html
|
66
78
|
- assets/favicon.ico/android-icon-144x144.png
|
67
79
|
- assets/favicon.ico/android-icon-192x192.png
|
68
80
|
- assets/favicon.ico/android-icon-36x36.png
|
@@ -90,6 +102,11 @@ files:
|
|
90
102
|
- assets/favicon.ico/ms-icon-310x310.png
|
91
103
|
- assets/favicon.ico/ms-icon-70x70.png
|
92
104
|
- assets/main.scss
|
105
|
+
- grey-energy-theme.gemspec
|
106
|
+
- index.html
|
107
|
+
- manifest.json
|
108
|
+
- scripts/Dockerfile
|
109
|
+
- scripts/run_in_docker
|
93
110
|
homepage: https://github.com/nataliemarleny/grey-energy-theme
|
94
111
|
licenses:
|
95
112
|
- MIT
|