Skip to content

Commit 6bd8ab0

Browse files
committed
Update website content
1 parent cb28d0f commit 6bd8ab0

25 files changed

+1366
-1
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.2"
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: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.5)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.2.3)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.3.0.dev.1)
12+
ffi (1.16.3)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (1.14.1)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.3.2)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (>= 2.0, < 4.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.3, >= 2.3.1)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (>= 4.0, < 6)
27+
mercenary (>= 0.3.6, < 0.5)
28+
pathutil (~> 0.9)
29+
rouge (>= 3.0, < 5.0)
30+
terminal-table (>= 1.8, < 4.0)
31+
webrick (~> 1.7)
32+
jekyll-feed (0.17.0)
33+
jekyll (>= 3.7, < 5.0)
34+
jekyll-sass-converter (2.2.0)
35+
sassc (> 2.0.1, < 3.0)
36+
jekyll-seo-tag (2.8.0)
37+
jekyll (>= 3.8, < 5.0)
38+
jekyll-watch (2.2.1)
39+
listen (~> 3.0)
40+
kramdown (2.4.0)
41+
rexml
42+
kramdown-parser-gfm (1.1.0)
43+
kramdown (~> 2.0)
44+
liquid (5.4.0)
45+
listen (3.9.0)
46+
rb-inotify (~> 0.9, >= 0.9.10)
47+
mercenary (0.4.0)
48+
minima (2.5.1)
49+
jekyll (>= 3.5, < 5.0)
50+
jekyll-feed (~> 0.9)
51+
jekyll-seo-tag (~> 2.1)
52+
pathutil (0.16.1)
53+
forwardable-extended (~> 2.6)
54+
public_suffix (4.0.6)
55+
rb-inotify (0.10.1)
56+
ffi (~> 1.0)
57+
rexml (3.2.5)
58+
rouge (4.2.0)
59+
sassc (2.4.0)
60+
ffi (~> 1.9)
61+
terminal-table (3.0.2)
62+
unicode-display_width (>= 1.1.1, < 3)
63+
unicode-display_width (1.6.1)
64+
webrick (1.8.1)
65+
66+
PLATFORMS
67+
x86_64-linux-gnu
68+
69+
DEPENDENCIES
70+
http_parser.rb (~> 0.6.0)
71+
jekyll (~> 4.3.2)
72+
jekyll-feed (~> 0.12)
73+
minima (~> 2.5)
74+
tzinfo (>= 1, < 3)
75+
tzinfo-data
76+
wdm (~> 0.1.1)
77+
78+
BUNDLED WITH
79+
2.4.20

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

_config.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
#
11+
# If you need help with YAML syntax, here are some quick references for you:
12+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13+
# https://learnxinyminutes.com/docs/yaml/
14+
#
15+
# Site settings
16+
# These are used to personalize your new site. If you look in the HTML files,
17+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18+
# You can create any custom variable you would like, and they will be accessible
19+
# in the templates via {{ site.myvariable }}.
20+
21+
title: Thomas Rauter
22+
23+
description: >-
24+
The personal website of Thomas Rauter
25+
baseurl: "" # the subpath of your site, e.g. /blog
26+
url: "https://Thomas-Rauter.github.io" # GitHub Pages URL
27+
github_username: Thomas-Rauter
28+
29+
# Build settings
30+
theme: minima
31+
plugins:
32+
- jekyll-feed
33+
34+
# Exclude from processing.
35+
# The following items will not be processed, by default.
36+
# Any item listed under the `exclude:` key here will be automatically added to
37+
# the internal "default list".
38+
#
39+
# Excluded items can be processed by explicitly listing the directories or
40+
# their entries' file path in the `include:` list.
41+
#
42+
# exclude:
43+
# - .sass-cache/
44+
# - .jekyll-cache/
45+
# - gemfiles/
46+
# - Gemfile
47+
# - Gemfile.lock
48+
# - node_modules/
49+
# - vendor/bundle/
50+
# - vendor/cache/
51+
# - vendor/gems/
52+
# - vendor/ruby/
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll!"
4+
date: 2024-12-30 15:19:24 +0100
5+
categories: jekyll update
6+
---
7+
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8+
9+
Jekyll requires blog post files to be named according to the following format:
10+
11+
`YEAR-MONTH-DAY-title.MARKUP`
12+
13+
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
14+
15+
Jekyll also offers powerful support for code snippets:
16+
17+
{% highlight ruby %}
18+
def print_hi(name)
19+
puts "Hi, #{name}"
20+
end
21+
print_hi('Tom')
22+
#=> prints 'Hi, Tom' to STDOUT.
23+
{% endhighlight %}
24+
25+
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
26+
27+
[jekyll-docs]: https://jekyllrb.com/docs/home
28+
[jekyll-gh]: https://github.com/jekyll/jekyll
29+
[jekyll-talk]: https://talk.jekyllrb.com/

_site/404.html

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html>
2+
<html lang="en"><head>
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.8.0 -->
6+
<title>Thomas Rauter | The personal website of Thomas Rauter</title>
7+
<meta name="generator" content="Jekyll v4.3.2" />
8+
<meta property="og:title" content="Thomas Rauter" />
9+
<meta property="og:locale" content="en_US" />
10+
<meta name="description" content="The personal website of Thomas Rauter" />
11+
<meta property="og:description" content="The personal website of Thomas Rauter" />
12+
<link rel="canonical" href="http://localhost:4000/404.html" />
13+
<meta property="og:url" content="http://localhost:4000/404.html" />
14+
<meta property="og:site_name" content="Thomas Rauter" />
15+
<meta property="og:type" content="website" />
16+
<meta name="twitter:card" content="summary" />
17+
<meta property="twitter:title" content="Thomas Rauter" />
18+
<script type="application/ld+json">
19+
{"@context":"https://schema.org","@type":"WebPage","description":"The personal website of Thomas Rauter","headline":"Thomas Rauter","url":"http://localhost:4000/404.html"}</script>
20+
<!-- End Jekyll SEO tag -->
21+
<link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Thomas Rauter" /></head>
22+
<body><header class="site-header" role="banner">
23+
24+
<div class="wrapper"><a class="site-title" rel="author" href="/">Thomas Rauter</a><nav class="site-nav">
25+
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
26+
<label for="nav-trigger">
27+
<span class="menu-icon">
28+
<svg viewBox="0 0 18 15" width="18px" height="15px">
29+
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
30+
</svg>
31+
</span>
32+
</label>
33+
34+
<div class="trigger"><a class="page-link" href="/about.html">About Me</a><a class="page-link" href="/contributions-to-open-source.html">Contributions to Open Source Projects</a><a class="page-link" href="/data-science-challenges.html">Data Science Challenges</a><a class="page-link" href="/data-science-ebooks.html">Data Science Ebooks</a><a class="page-link" href="/">Home</a><a class="page-link" href="/software-packages.html">Software Packages</a></div>
35+
</nav></div>
36+
</header>
37+
<main class="page-content" aria-label="Content">
38+
<div class="wrapper">
39+
<style type="text/css" media="screen">
40+
.container {
41+
margin: 10px auto;
42+
max-width: 600px;
43+
text-align: center;
44+
}
45+
h1 {
46+
margin: 30px 0;
47+
font-size: 4em;
48+
line-height: 1;
49+
letter-spacing: -1px;
50+
}
51+
</style>
52+
53+
<div class="container">
54+
<h1>404</h1>
55+
56+
<p><strong>Page not found :(</strong></p>
57+
<p>The requested page could not be found.</p>
58+
</div>
59+
60+
</div>
61+
</main><footer class="site-footer h-card">
62+
<data class="u-url" href="/"></data>
63+
64+
<div class="wrapper">
65+
66+
<h2 class="footer-heading">Thomas Rauter</h2>
67+
68+
<div class="footer-col-wrapper">
69+
<div class="footer-col footer-col-1">
70+
<ul class="contact-list">
71+
<li class="p-name">Thomas Rauter</li><li><a class="u-email" href="mailto:[email protected]">[email protected]</a></li></ul>
72+
</div>
73+
74+
<div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/Thomas-Rauter"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">Thomas-Rauter</span></a></li></ul>
75+
</div>
76+
77+
<div class="footer-col footer-col-3">
78+
<p>The personal website of Thomas Rauter</p>
79+
</div>
80+
</div>
81+
82+
</div>
83+
84+
</footer>
85+
</body>
86+
87+
</html>

0 commit comments

Comments
 (0)