Skip to content

Commit be650c1

Browse files
authoredDec 11, 2020
Add files via upload
1 parent 63e1da1 commit be650c1

Some content is hidden

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

61 files changed

+5482
-0
lines changed
 

‎404.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
title: 404
4+
permalink: /404.html
5+
---
6+
<style>
7+
.newsletter, .footer {
8+
display:none;
9+
}
10+
</style>
11+
<div class="text-center">
12+
<h1 class="mt-5"><span class="badge badge-dark font-weight-normal">404</span></h1>
13+
<h1 class="display-1 mt-4 mb-4"> Page not found!</h1>
14+
<p>Please use the search bar from the bottom left or visit our <a href="{{site.baseurl}}/">homepage</a>!</p>
15+
</div>

‎Gemfile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
10+
# If you have any plugins, put them here!
11+
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
12+
group :jekyll_plugins do
13+
gem 'jekyll-feed'
14+
gem 'jekyll-sitemap'
15+
gem 'jekyll-paginate'
16+
gem 'jekyll-seo-tag'
17+
gem 'jekyll-archives'
18+
gem 'jekyll-figure'
19+
gem 'bootstrap', '~> 4.4.1'
20+
gem 'kramdown'
21+
gem 'rouge'
22+
end

0 commit comments

Comments
 (0)