Skip to content

Commit d7d362a

Browse files
committed
add new website
1 parent ecfe767 commit d7d362a

File tree

199 files changed

+114399
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+114399
-5
lines changed

404.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: default
3+
title: 404 - Page not found
4+
permalink: /404.html
5+
---
6+
7+
<div class="text-center">
8+
<h1>Oops! The incident wasnt picked up!</h1>
9+
<h1>Try again or Move along. (404 error)</h1>
10+
<br/>
11+
12+
<img src="{{ 'img/avatar-icon.png' | relative_url }}" />
13+
</div>

CHANGELOG.md

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# CHANGELOG
2+
3+
This file lists all non-trivial changes to Beautiful Jekyll.
4+
5+
I often make small changes to documentation, to the demo site, or to the general look-and-feel. These changes will not be listed here. Any other minor changes will also not be listed here.
6+
7+
**2018-12-24** Add support for Staticman comments (#440) (thanks @VincentTam)
8+
9+
**2018-10-19** Move Google Analytics to the head (#419) (thanks @jpvicari)
10+
11+
**2018-06-08** Add support for Facebook comments (#350) (thanks @npes87184)
12+
13+
**2018-02-22** Automatically generate sitemap (#323) (thanks @JosemyDuarte)
14+
15+
**2018-01-18** Add clickable tags to each post and a tags index page, works for GitHub sites (#307) (thanks @OCram85)
16+
17+
**2018-01-14** Redo Dockerfile (#302) (thanks @jennydaman)
18+
19+
**2018-01-06** More color personalization options (#297 and #299) (thanks @jennydaman)
20+
21+
**2018-01-05** Abstract the social networks logic (thanks @OCram85)
22+
23+
**2018-01-03** Avatar image no longer causes a ghost click (thanks @alefi87)
24+
25+
**2017-10-16** Add GitHub buttons to posts (#265) (thanks @yonicd)
26+
27+
**2017-09-04** Ability to change colour/image of navbar/footer/body
28+
29+
**2017-08-17** Add support for notification, error, and warning boxes in markdown (#227) (thanks @OCram85)
30+
31+
**2017-08-12** Add social buttons for twitch, yelp, and steam (#234) (thanks @TheRealBenForce)
32+
33+
**2017-03-30** Make the footer contact links friendly for screen readers (thanks @eugenius1)
34+
35+
**2017-03-30** Started a CHANGELOG file (thanks @eugenius1)
36+
37+
**2017-01-28** Add Subresource Integrity (SRI) support (#164) (thanks @tony-ho)
38+
39+
**2017-01-09** Add Google Tag Manager Integration (#157) (thanks @csarigoz)
40+
41+
**2017-01-06** Add options to configure HTML document title (#154) (thanks @tony-ho)
42+
43+
**2016-12-25** Allow dynamic images on each blog post (#143) (thanks @bbritten)
44+
45+
**2016-12-15** Support `title-img` config param to have image in the navbar instead of text
46+
47+
**2016-12-08** Add support for phone numbers in footer; fix #136
48+
49+
**2016-12-06** Update gemfile (#134) (thanks @stephentuso)
50+
51+
**2016-10-09** Add Docker deployment (#114) (thanks @mangar)
52+
53+
**2016-08-06** Add social share buttons for posts (thanks @rtlee9)
54+
55+
**2016-07-29** Add CSS styling to code chunks
56+
57+
**2016-07-27** Add clickable tags that lead to a tag page (doesn't work for GitHub hosted sites) (thanks @epwalsh)
58+
59+
**2016-07-21** Add support for twitter cards (sharing on Twitter will be better); fixes #70
60+
61+
**2016-03-18** Support full-width images in page headers; fixes #37
62+
63+
**2016-03-18** Support menus in navigation bar
64+
65+
**2016-02-07** Avatar is now conditional (thanks @hristoyankov)
66+
67+
**2016-02-02** Migrate (forced to...) to jekyll 3
68+
69+
**2016-01-22** Make sure not to include JQuery twice, fixes #29
70+
71+
**2015-11-19** Support external links in navigation bar; fixes #3
72+
73+
... Many small changes because the site was in its infancy
74+
75+
**2015-03-12** Beautiful Jekyll version 0.0000001 is released!

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.erdemo.io

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM jekyll/jekyll
2+
3+
COPY --chown=jekyll:jekyll Gemfile .
4+
COPY --chown=jekyll:jekyll Gemfile.lock .
5+
6+
RUN bundle install --quiet --clean
7+
8+
CMD ["jekyll", "serve"]

Gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source 'https://rubygems.org'
2+
3+
gem "github-pages", '197', group: :jekyll_plugins
4+
5+
# enable tzinfo-data for local build
6+
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
7+
gem 'jekyll-paginate'
8+
gem 'commonmarker'
9+
gem 'nokogiri'

Gemfile.lock

+256
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,256 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (4.2.10)
5+
i18n (~> 0.7)
6+
minitest (~> 5.1)
7+
thread_safe (~> 0.3, >= 0.3.4)
8+
tzinfo (~> 1.1)
9+
addressable (2.6.0)
10+
public_suffix (>= 2.0.2, < 4.0)
11+
coffee-script (2.4.1)
12+
coffee-script-source
13+
execjs
14+
coffee-script-source (1.11.1)
15+
colorator (1.1.0)
16+
commonmarker (0.17.13)
17+
ruby-enum (~> 0.5)
18+
concurrent-ruby (1.1.5)
19+
dnsruby (1.61.2)
20+
addressable (~> 2.5)
21+
em-websocket (0.5.1)
22+
eventmachine (>= 0.12.9)
23+
http_parser.rb (~> 0.6.0)
24+
ethon (0.12.0)
25+
ffi (>= 1.3.0)
26+
eventmachine (1.2.7)
27+
eventmachine (1.2.7-x64-mingw32)
28+
execjs (2.7.0)
29+
faraday (0.15.4)
30+
multipart-post (>= 1.2, < 3)
31+
ffi (1.11.1)
32+
ffi (1.11.1-x64-mingw32)
33+
forwardable-extended (2.6.0)
34+
gemoji (3.0.1)
35+
github-pages (197)
36+
activesupport (= 4.2.10)
37+
github-pages-health-check (= 1.16.1)
38+
jekyll (= 3.7.4)
39+
jekyll-avatar (= 0.6.0)
40+
jekyll-coffeescript (= 1.1.1)
41+
jekyll-commonmark-ghpages (= 0.1.5)
42+
jekyll-default-layout (= 0.1.4)
43+
jekyll-feed (= 0.11.0)
44+
jekyll-gist (= 1.5.0)
45+
jekyll-github-metadata (= 2.12.1)
46+
jekyll-mentions (= 1.4.1)
47+
jekyll-optional-front-matter (= 0.3.0)
48+
jekyll-paginate (= 1.1.0)
49+
jekyll-readme-index (= 0.2.0)
50+
jekyll-redirect-from (= 0.14.0)
51+
jekyll-relative-links (= 0.6.0)
52+
jekyll-remote-theme (= 0.3.1)
53+
jekyll-sass-converter (= 1.5.2)
54+
jekyll-seo-tag (= 2.5.0)
55+
jekyll-sitemap (= 1.2.0)
56+
jekyll-swiss (= 0.4.0)
57+
jekyll-theme-architect (= 0.1.1)
58+
jekyll-theme-cayman (= 0.1.1)
59+
jekyll-theme-dinky (= 0.1.1)
60+
jekyll-theme-hacker (= 0.1.1)
61+
jekyll-theme-leap-day (= 0.1.1)
62+
jekyll-theme-merlot (= 0.1.1)
63+
jekyll-theme-midnight (= 0.1.1)
64+
jekyll-theme-minimal (= 0.1.1)
65+
jekyll-theme-modernist (= 0.1.1)
66+
jekyll-theme-primer (= 0.5.3)
67+
jekyll-theme-slate (= 0.1.1)
68+
jekyll-theme-tactile (= 0.1.1)
69+
jekyll-theme-time-machine (= 0.1.1)
70+
jekyll-titles-from-headings (= 0.5.1)
71+
jemoji (= 0.10.2)
72+
kramdown (= 1.17.0)
73+
liquid (= 4.0.0)
74+
listen (= 3.1.5)
75+
mercenary (~> 0.3)
76+
minima (= 2.5.0)
77+
nokogiri (>= 1.8.5, < 2.0)
78+
rouge (= 2.2.1)
79+
terminal-table (~> 1.4)
80+
github-pages-health-check (1.16.1)
81+
addressable (~> 2.3)
82+
dnsruby (~> 1.60)
83+
octokit (~> 4.0)
84+
public_suffix (~> 3.0)
85+
typhoeus (~> 1.3)
86+
html-pipeline (2.12.0)
87+
activesupport (>= 2)
88+
nokogiri (>= 1.4)
89+
http_parser.rb (0.6.0)
90+
i18n (0.9.5)
91+
concurrent-ruby (~> 1.0)
92+
jekyll (3.7.4)
93+
addressable (~> 2.4)
94+
colorator (~> 1.0)
95+
em-websocket (~> 0.5)
96+
i18n (~> 0.7)
97+
jekyll-sass-converter (~> 1.0)
98+
jekyll-watch (~> 2.0)
99+
kramdown (~> 1.14)
100+
liquid (~> 4.0)
101+
mercenary (~> 0.3.3)
102+
pathutil (~> 0.9)
103+
rouge (>= 1.7, < 4)
104+
safe_yaml (~> 1.0)
105+
jekyll-avatar (0.6.0)
106+
jekyll (~> 3.0)
107+
jekyll-coffeescript (1.1.1)
108+
coffee-script (~> 2.2)
109+
coffee-script-source (~> 1.11.1)
110+
jekyll-commonmark (1.3.1)
111+
commonmarker (~> 0.14)
112+
jekyll (>= 3.7, < 5.0)
113+
jekyll-commonmark-ghpages (0.1.5)
114+
commonmarker (~> 0.17.6)
115+
jekyll-commonmark (~> 1)
116+
rouge (~> 2)
117+
jekyll-default-layout (0.1.4)
118+
jekyll (~> 3.0)
119+
jekyll-feed (0.11.0)
120+
jekyll (~> 3.3)
121+
jekyll-gist (1.5.0)
122+
octokit (~> 4.2)
123+
jekyll-github-metadata (2.12.1)
124+
jekyll (~> 3.4)
125+
octokit (~> 4.0, != 4.4.0)
126+
jekyll-mentions (1.4.1)
127+
html-pipeline (~> 2.3)
128+
jekyll (~> 3.0)
129+
jekyll-optional-front-matter (0.3.0)
130+
jekyll (~> 3.0)
131+
jekyll-paginate (1.1.0)
132+
jekyll-readme-index (0.2.0)
133+
jekyll (~> 3.0)
134+
jekyll-redirect-from (0.14.0)
135+
jekyll (~> 3.3)
136+
jekyll-relative-links (0.6.0)
137+
jekyll (~> 3.3)
138+
jekyll-remote-theme (0.3.1)
139+
jekyll (~> 3.5)
140+
rubyzip (>= 1.2.1, < 3.0)
141+
jekyll-sass-converter (1.5.2)
142+
sass (~> 3.4)
143+
jekyll-seo-tag (2.5.0)
144+
jekyll (~> 3.3)
145+
jekyll-sitemap (1.2.0)
146+
jekyll (~> 3.3)
147+
jekyll-swiss (0.4.0)
148+
jekyll-theme-architect (0.1.1)
149+
jekyll (~> 3.5)
150+
jekyll-seo-tag (~> 2.0)
151+
jekyll-theme-cayman (0.1.1)
152+
jekyll (~> 3.5)
153+
jekyll-seo-tag (~> 2.0)
154+
jekyll-theme-dinky (0.1.1)
155+
jekyll (~> 3.5)
156+
jekyll-seo-tag (~> 2.0)
157+
jekyll-theme-hacker (0.1.1)
158+
jekyll (~> 3.5)
159+
jekyll-seo-tag (~> 2.0)
160+
jekyll-theme-leap-day (0.1.1)
161+
jekyll (~> 3.5)
162+
jekyll-seo-tag (~> 2.0)
163+
jekyll-theme-merlot (0.1.1)
164+
jekyll (~> 3.5)
165+
jekyll-seo-tag (~> 2.0)
166+
jekyll-theme-midnight (0.1.1)
167+
jekyll (~> 3.5)
168+
jekyll-seo-tag (~> 2.0)
169+
jekyll-theme-minimal (0.1.1)
170+
jekyll (~> 3.5)
171+
jekyll-seo-tag (~> 2.0)
172+
jekyll-theme-modernist (0.1.1)
173+
jekyll (~> 3.5)
174+
jekyll-seo-tag (~> 2.0)
175+
jekyll-theme-primer (0.5.3)
176+
jekyll (~> 3.5)
177+
jekyll-github-metadata (~> 2.9)
178+
jekyll-seo-tag (~> 2.0)
179+
jekyll-theme-slate (0.1.1)
180+
jekyll (~> 3.5)
181+
jekyll-seo-tag (~> 2.0)
182+
jekyll-theme-tactile (0.1.1)
183+
jekyll (~> 3.5)
184+
jekyll-seo-tag (~> 2.0)
185+
jekyll-theme-time-machine (0.1.1)
186+
jekyll (~> 3.5)
187+
jekyll-seo-tag (~> 2.0)
188+
jekyll-titles-from-headings (0.5.1)
189+
jekyll (~> 3.3)
190+
jekyll-watch (2.2.1)
191+
listen (~> 3.0)
192+
jemoji (0.10.2)
193+
gemoji (~> 3.0)
194+
html-pipeline (~> 2.2)
195+
jekyll (~> 3.0)
196+
kramdown (1.17.0)
197+
liquid (4.0.0)
198+
listen (3.1.5)
199+
rb-fsevent (~> 0.9, >= 0.9.4)
200+
rb-inotify (~> 0.9, >= 0.9.7)
201+
ruby_dep (~> 1.2)
202+
mercenary (0.3.6)
203+
mini_portile2 (2.4.0)
204+
minima (2.5.0)
205+
jekyll (~> 3.5)
206+
jekyll-feed (~> 0.9)
207+
jekyll-seo-tag (~> 2.1)
208+
minitest (5.11.3)
209+
multipart-post (2.1.1)
210+
nokogiri (1.10.4)
211+
mini_portile2 (~> 2.4.0)
212+
nokogiri (1.10.4-x64-mingw32)
213+
mini_portile2 (~> 2.4.0)
214+
octokit (4.14.0)
215+
sawyer (~> 0.8.0, >= 0.5.3)
216+
pathutil (0.16.2)
217+
forwardable-extended (~> 2.6)
218+
public_suffix (3.1.1)
219+
rb-fsevent (0.10.3)
220+
rb-inotify (0.10.0)
221+
ffi (~> 1.0)
222+
rouge (2.2.1)
223+
ruby-enum (0.7.2)
224+
i18n
225+
ruby_dep (1.5.0)
226+
rubyzip (1.2.3)
227+
safe_yaml (1.0.5)
228+
sass (3.7.4)
229+
sass-listen (~> 4.0.0)
230+
sass-listen (4.0.0)
231+
rb-fsevent (~> 0.9, >= 0.9.4)
232+
rb-inotify (~> 0.9, >= 0.9.7)
233+
sawyer (0.8.2)
234+
addressable (>= 2.3.5)
235+
faraday (> 0.8, < 2.0)
236+
terminal-table (1.8.0)
237+
unicode-display_width (~> 1.1, >= 1.1.1)
238+
thread_safe (0.3.6)
239+
typhoeus (1.3.1)
240+
ethon (>= 0.9.0)
241+
tzinfo (1.2.5)
242+
thread_safe (~> 0.1)
243+
unicode-display_width (1.6.0)
244+
245+
PLATFORMS
246+
ruby
247+
x64-mingw32
248+
249+
DEPENDENCIES
250+
commonmarker
251+
github-pages (= 197)
252+
jekyll-paginate
253+
nokogiri
254+
255+
BUNDLED WITH
256+
1.17.2

LICENSE

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015-2018 Dean Attali
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.
22+
23+
24+
25+
staticman integration
26+
=================================================================================
27+
28+
The MIT License (MIT)
29+
30+
Copyright (c) 2013-2018 Michael Rose

0 commit comments

Comments
 (0)