Skip to content

Commit f54ea73

Browse files
committed
Use new template for the website
1 parent 6a93375 commit f54ea73

Some content is hidden

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

87 files changed

+2522
-990
lines changed

.gitignore

Lines changed: 17 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,22 @@
1-
# Ignore docs files
2-
_gh_pages
3-
_site
4-
.ruby-version
5-
.sass-cache
6-
.jekyll-cache
1+
# Files generated by Jekyll
2+
_site/
3+
.sass-cache/
4+
.jekyll-cache/
5+
.jekyll-metadata
76

8-
# Numerous always-ignore extensions
9-
*.diff
10-
*.err
11-
*.orig
12-
*.log
13-
*.rej
14-
*.swo
15-
*.swp
16-
*.zip
17-
*.vi
18-
*~
7+
# Files generated by Bundler
8+
.bundle/
9+
vendor/
10+
Gemfile.lock
1911

20-
# OS or Editor folders
12+
# Gems
13+
*.gem
14+
15+
# Files generated by OS
2116
.DS_Store
17+
.DS_Store?
2218
._*
19+
.Spotlight-V100
20+
.Trashes
21+
ehthumbs.db
2322
Thumbs.db
24-
.cache
25-
.project
26-
.settings
27-
.tmproj
28-
*.esproj
29-
nbproject
30-
*.sublime-project
31-
*.sublime-workspace
32-
.idea
33-
34-
# Komodo
35-
*.komodoproject
36-
.komodotools
37-
38-
# grunt-html-validation
39-
validation-status.json
40-
validation-report.json
41-
42-
# Folders to ignore
43-
node_modules

404.html

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
---
2-
layout: default
3-
title: "404: Page not found"
4-
permalink: 404.html
2+
layout: base
53
---
64

7-
<div class="page">
8-
<h1 class="page-title">404: Page not found</h1>
9-
<p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="{{ site.baseurl }}/">Head back home</a> to try finding it again.</p>
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
1024
</div>

CODE_OF_CONDUCT.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at [email protected]. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at [http://contributor-covenant.org/version/1/4][version]
72+
73+
[homepage]: http://contributor-covenant.org
74+
[version]: http://contributor-covenant.org/version/1/4/

Gemfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
# frozen_string_literal: true
2+
13
source "https://rubygems.org"
4+
gemspec
25

3-
gem "jekyll"
4-
gem "jekyll-gist"
5-
gem "jekyll-paginate"
6-
gem "jekyll-seo-tag"
6+
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
7+
gem "kramdown-parser-gfm" if ENV["JEKYLL_VERSION"] == "~> 3.9"

Gemfile.lock

Lines changed: 21 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1+
PATH
2+
remote: .
3+
specs:
4+
minima (3.0.0.dev)
5+
jekyll (>= 3.5, < 5.0)
6+
jekyll-feed (~> 0.9)
7+
jekyll-seo-tag (~> 2.1)
8+
19
GEM
210
remote: https://rubygems.org/
311
specs:
4-
addressable (2.8.4)
12+
addressable (2.8.5)
513
public_suffix (>= 2.0.2, < 6.0)
614
colorator (1.1.0)
715
concurrent-ruby (1.2.2)
816
em-websocket (0.5.3)
917
eventmachine (>= 0.12.9)
1018
http_parser.rb (~> 0)
1119
eventmachine (1.2.7)
12-
faraday (2.7.7)
13-
faraday-net_http (>= 2.0, < 3.1)
14-
ruby2_keywords (>= 0.0.4)
15-
faraday-net_http (3.0.2)
16-
ffi (1.15.5)
20+
ffi (1.16.3)
1721
forwardable-extended (2.6.0)
18-
google-protobuf (3.23.3-x86_64-darwin)
22+
google-protobuf (3.25.0-x86_64-darwin)
1923
http_parser.rb (0.8.0)
2024
i18n (1.14.1)
2125
concurrent-ruby (~> 1.0)
@@ -35,9 +39,8 @@ GEM
3539
safe_yaml (~> 1.0)
3640
terminal-table (>= 1.8, < 4.0)
3741
webrick (~> 1.7)
38-
jekyll-gist (1.5.0)
39-
octokit (~> 4.2)
40-
jekyll-paginate (1.1.0)
42+
jekyll-feed (0.17.0)
43+
jekyll (>= 3.7, < 5.0)
4144
jekyll-sass-converter (3.0.0)
4245
sass-embedded (~> 1.54)
4346
jekyll-seo-tag (2.8.0)
@@ -53,37 +56,28 @@ GEM
5356
rb-fsevent (~> 0.10, >= 0.10.3)
5457
rb-inotify (~> 0.9, >= 0.9.10)
5558
mercenary (0.4.0)
56-
octokit (4.25.1)
57-
faraday (>= 1, < 3)
58-
sawyer (~> 0.9)
5959
pathutil (0.16.2)
6060
forwardable-extended (~> 2.6)
61-
public_suffix (5.0.1)
61+
public_suffix (5.0.3)
6262
rb-fsevent (0.11.2)
6363
rb-inotify (0.10.1)
6464
ffi (~> 1.0)
65-
rexml (3.2.5)
66-
rouge (4.1.2)
67-
ruby2_keywords (0.0.5)
65+
rexml (3.2.6)
66+
rouge (4.2.0)
6867
safe_yaml (1.0.5)
69-
sass-embedded (1.63.4-x86_64-darwin)
68+
sass-embedded (1.69.5-x86_64-darwin)
7069
google-protobuf (~> 3.23)
71-
sawyer (0.9.2)
72-
addressable (>= 2.3.5)
73-
faraday (>= 0.17.3, < 3)
7470
terminal-table (3.0.2)
7571
unicode-display_width (>= 1.1.1, < 3)
76-
unicode-display_width (2.4.2)
72+
unicode-display_width (2.5.0)
7773
webrick (1.8.1)
7874

7975
PLATFORMS
8076
x86_64-darwin-22
8177

8278
DEPENDENCIES
83-
jekyll
84-
jekyll-gist
85-
jekyll-paginate
86-
jekyll-seo-tag
79+
bundler
80+
minima!
8781

8882
BUNDLED WITH
89-
2.4.14
83+
2.4.22

0 commit comments

Comments
 (0)