Skip to content

Commit 4a38216

Browse files
committed
into 2025 baby!
1 parent 4e47f79 commit 4a38216

File tree

9 files changed

+1337
-1
lines changed

9 files changed

+1337
-1
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Jekyll build output
2+
_site/
3+
.sass-cache/
4+
.jekyll-cache/
5+
.jekyll-metadata
6+
7+
# Ruby dependencies
8+
.bundle/
9+
vendor/
10+
vendor/bundle/
11+
Gemfile.lock
12+
13+
# OS generated files
14+
.DS_Store
15+
.DS_Store?
16+
._*
17+
.Spotlight-V100
18+
.Trashes
19+
ehthumbs.db
20+
Thumbs.db
21+
22+
# IDE and editor files
23+
.idea/
24+
.vscode/
25+
*.swp
26+
*.swo
27+
*~
28+
29+
# Logs and databases
30+
*.log
31+
*.sqlite3
32+
33+
# Environment files
34+
.env
35+
.env.*
36+
!.env.example
37+
38+
# Temporary files
39+
*.tmp
40+
*.temp

Gemfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll", "~> 4.3.2"
4+
gem "minima", "~> 2.5"
5+
6+
group :jekyll_plugins do
7+
gem "jekyll-feed", "~> 0.12"
8+
gem "jekyll-seo-tag", "~> 2.8"
9+
end
10+
11+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
12+
# and associated library.
13+
platforms :mingw, :x64_mingw, :mswin, :jruby do
14+
gem "tzinfo", ">= 1", "< 3"
15+
gem "tzinfo-data"
16+
end
17+
18+
# Performance-booster for watching directories on Windows
19+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
20+
21+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
22+
# do not have a Java counterpart.
23+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

_config.yml

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,34 @@
1-
theme: jekyll-theme-cayman
1+
title: Dave van Duivenbode
2+
description: Head of Platform | Engineer passionate about building scalable and efficient systems
3+
url: "https://sefiris.github.io"
4+
baseurl: ""
5+
6+
# Build settings
7+
markdown: kramdown
8+
theme: minima
9+
plugins:
10+
- jekyll-feed
11+
- jekyll-seo-tag
12+
13+
# Personal information
14+
name: Dave van Duivenbode
15+
role: Head of Platform
16+
location: Utrecht, The Netherlands
17+
18+
linkedin: https://www.linkedin.com/in/dave-van-duivenbode-49813399/
19+
github: https://github.com/Sefiris
20+
21+
# Defaults
22+
defaults:
23+
-
24+
scope:
25+
path: ""
26+
type: "posts"
27+
values:
28+
layout: "post"
29+
-
30+
scope:
31+
path: ""
32+
type: "pages"
33+
values:
34+
layout: "page"

_layouts/default.html

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>{{ site.title }} - {{ page.title }}</title>
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
10+
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
11+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
12+
</head>
13+
<body>
14+
<header class="site-header">
15+
<div class="container">
16+
<nav class="main-nav">
17+
<a href="{{ '/' | relative_url }}" class="logo">{{ site.title }}</a>
18+
<ul class="nav-links">
19+
<li><a href="{{ '/' | relative_url }}">Home</a></li>
20+
<li><a href="{{ '/experience' | relative_url }}">Experience</a></li>
21+
<li><a href="{{ '/projects' | relative_url }}">Projects</a></li>
22+
<li><a href="{{ '/skills' | relative_url }}">Skills</a></li>
23+
</ul>
24+
</nav>
25+
</div>
26+
</header>
27+
28+
<main class="site-content">
29+
<div class="container">
30+
{{ content }}
31+
</div>
32+
</main>
33+
34+
<footer class="site-footer">
35+
<div class="container">
36+
<div class="social-links">
37+
<a href="{{ site.github }}" target="_blank"><i class="fab fa-github"></i></a>
38+
<a href="{{ site.linkedin }}" target="_blank"><i class="fab fa-linkedin"></i></a>
39+
<a href="mailto:{{ site.email }}"><i class="fas fa-envelope"></i></a>
40+
</div>
41+
<p>&copy; {{ site.time | date: '%Y' }} {{ site.name }}. All rights reserved.</p>
42+
</div>
43+
</footer>
44+
</body>
45+
</html>

0 commit comments

Comments
 (0)