Skip to content

Commit d2ca676

Browse files
committed
converted to jekyll
1 parent 77d71a1 commit d2ca676

File tree

2,877 files changed

+363868
-130
lines changed

Some content is hidden

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

2,877 files changed

+363868
-130
lines changed

.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_PATH: "vendor/bundle"

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
# vendor
6+
17
.DS_Store
28

9+
Gemfile.lock

404.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
permalink: /404.html
3+
layout: page
4+
---
5+
6+
Page not found

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.4.1"
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", :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]

LICENSE

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Dr. Sefer Bora Lisesivdin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
---
24+
Biscuit is derived from Solo Theme with the MIT License (MIT)
25+
Solo - Copyright (c) 2015 Shu Uesugi
26+
More: https://github.com/chibicode/solo/blob/gh-pages/LICENSE

_config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Site settings
2+
title: Arthur Borem
3+
tag_text: Arthur Borem
4+
description: Arthur Borem is a final-year CS PhD at UChicago studying privacy and data subject rights.
5+
# baseurl: "/blog" # the subpath of your site, e.g. /blog
6+
url: "https://arthurborem.com"
7+
8+
plugins:
9+
- jekyll-seo-tag
10+
11+
# Build settings
12+
markdown: kramdown
13+
exclude: ["README.md"]
14+
sass:
15+
style: compressed

_includes/head.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<link
2+
rel="stylesheet"
3+
href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"
4+
integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
5+
crossorigin="anonymous"
6+
/>

_includes/new_window_fix.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<script>
2+
//open external links in a new window
3+
function external_new_window() {
4+
for(var c = document.getElementsByTagName("a"), a = 0;a < c.length;a++) {
5+
var b = c[a];
6+
if(b.getAttribute("href") && b.hostname !== location.hostname) {
7+
b.target = "_blank";
8+
b.rel = "noopener";
9+
}
10+
}
11+
}
12+
//open PDF links in a new window
13+
function pdf_new_window ()
14+
{
15+
if (!document.getElementsByTagName) return false;
16+
var links = document.getElementsByTagName("a");
17+
for (var eleLink=0; eleLink < links.length; eleLink ++) {
18+
if ((links[eleLink].href.indexOf('.pdf') !== -1)||(links[eleLink].href.indexOf('.doc') !== -1)||(links[eleLink].href.indexOf('.docx') !== -1)) {
19+
links[eleLink].onclick =
20+
function() {
21+
window.open(this.href);
22+
return false;
23+
}
24+
}
25+
}
26+
}
27+
pdf_new_window();
28+
external_new_window();
29+
</script>
30+

_includes/scripts.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<div id="footer">
2+
<center>
3+
<small> This page was adapted from the <a href="https://sblisesivdin.github.io/biscuit">Biscuit</a> Jekyll theme</small>
4+
</center>
5+
</div>

_layouts/default.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="description" content="{{ site.description }}">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>{{ site.title }}</title>
9+
<link rel="stylesheet" href="css/main.css">
10+
{% include head.html %}
11+
</head>
12+
<body>
13+
<div class="container">
14+
{{ content }}
15+
</div>
16+
{% include scripts.html %}
17+
{% include new_window_fix.html %}
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)