Skip to content

Commit d9cda7b

Browse files
committed
First commit
0 parents  commit d9cda7b

Some content is hidden

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

55 files changed

+1685
-0
lines changed

404.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

Gemfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
gem "jekyll", "~> 4.3.3"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
# gem "github-pages", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
end
20+
21+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22+
# and associated library.
23+
platforms :mingw, :x64_mingw, :mswin, :jruby do
24+
gem "tzinfo", ">= 1", "< 3"
25+
gem "tzinfo-data"
26+
end
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
30+
31+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
32+
# do not have a Java counterpart.
33+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

Gemfile.lock

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.3.3)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0)
11+
eventmachine (1.2.7)
12+
ffi (1.17.0)
13+
ffi (1.17.0-arm64-darwin)
14+
ffi (1.17.0-x86_64-darwin)
15+
forwardable-extended (2.6.0)
16+
google-protobuf (3.25.3)
17+
google-protobuf (3.25.3-arm64-darwin)
18+
google-protobuf (3.25.3-x86_64-darwin)
19+
google-protobuf (3.25.3-x86_64-linux)
20+
http_parser.rb (0.8.0)
21+
i18n (1.14.5)
22+
concurrent-ruby (~> 1.0)
23+
jekyll (4.3.3)
24+
addressable (~> 2.4)
25+
colorator (~> 1.0)
26+
em-websocket (~> 0.5)
27+
i18n (~> 1.0)
28+
jekyll-sass-converter (>= 2.0, < 4.0)
29+
jekyll-watch (~> 2.0)
30+
kramdown (~> 2.3, >= 2.3.1)
31+
kramdown-parser-gfm (~> 1.0)
32+
liquid (~> 4.0)
33+
mercenary (>= 0.3.6, < 0.5)
34+
pathutil (~> 0.9)
35+
rouge (>= 3.0, < 5.0)
36+
safe_yaml (~> 1.0)
37+
terminal-table (>= 1.8, < 4.0)
38+
webrick (~> 1.7)
39+
jekyll-feed (0.17.0)
40+
jekyll (>= 3.7, < 5.0)
41+
jekyll-sass-converter (3.0.0)
42+
sass-embedded (~> 1.54)
43+
jekyll-seo-tag (2.8.0)
44+
jekyll (>= 3.8, < 5.0)
45+
jekyll-watch (2.2.1)
46+
listen (~> 3.0)
47+
kramdown (2.4.0)
48+
rexml
49+
kramdown-parser-gfm (1.1.0)
50+
kramdown (~> 2.0)
51+
liquid (4.0.4)
52+
listen (3.9.0)
53+
rb-fsevent (~> 0.10, >= 0.10.3)
54+
rb-inotify (~> 0.9, >= 0.9.10)
55+
mercenary (0.4.0)
56+
minima (2.5.1)
57+
jekyll (>= 3.5, < 5.0)
58+
jekyll-feed (~> 0.9)
59+
jekyll-seo-tag (~> 2.1)
60+
pathutil (0.16.2)
61+
forwardable-extended (~> 2.6)
62+
public_suffix (6.0.0)
63+
rake (13.2.1)
64+
rb-fsevent (0.11.2)
65+
rb-inotify (0.11.1)
66+
ffi (~> 1.0)
67+
rexml (3.3.1)
68+
strscan
69+
rouge (4.3.0)
70+
safe_yaml (1.0.5)
71+
sass-embedded (1.69.5)
72+
google-protobuf (~> 3.23)
73+
rake (>= 13.0.0)
74+
sass-embedded (1.69.5-arm64-darwin)
75+
google-protobuf (~> 3.23)
76+
sass-embedded (1.69.5-x86_64-darwin)
77+
google-protobuf (~> 3.23)
78+
strscan (3.1.0)
79+
terminal-table (3.0.2)
80+
unicode-display_width (>= 1.1.1, < 3)
81+
unicode-display_width (2.5.0)
82+
webrick (1.8.1)
83+
84+
PLATFORMS
85+
arm64-darwin
86+
ruby
87+
x86_64-darwin
88+
x86_64-linux
89+
90+
DEPENDENCIES
91+
http_parser.rb (~> 0.6.0)
92+
jekyll (~> 4.3.3)
93+
jekyll-feed (~> 0.12)
94+
minima (~> 2.5)
95+
tzinfo (>= 1, < 3)
96+
tzinfo-data
97+
wdm (~> 0.1.1)
98+
99+
BUNDLED WITH
100+
2.5.14
21.7 KB
Loading
58.7 KB
Loading
86.8 KB
Loading
55.5 KB
Loading
80.7 KB
Loading
65.9 KB
Loading
81.1 KB
Loading

0 commit comments

Comments
 (0)