Skip to content

Commit 2a49c07

Browse files
committed
hopefully fix site
1 parent 0eb25a3 commit 2a49c07

File tree

13 files changed

+883
-30
lines changed

13 files changed

+883
-30
lines changed

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
permalink: /404.html
3-
layout: base
3+
layout: default
44
---
55

66
<style type="text/css" media="screen">

_config.yml

Lines changed: 28 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,34 @@ description: >- # this means to ignore newlines until "baseurl:"
2626
baseurl: "" # the subpath of your site, e.g. /blog
2727
url: "https://ozgitelson.com" # the base hostname & protocol for your site, e.g. http://example.com
2828
# twitter_username: jekyllrb
29-
# github_username: OzGitelson
29+
# github_username: jekyll
3030

3131
# Build settings
32-
# theme: minima
33-
remote_theme: jekyll/minima
32+
theme: minima
3433
minima:
35-
skin: dark
34+
hide_site_feed_link: True
3635
social_links:
37-
- { platform: github, user_url: "https://github.com/OzGitelson" }
38-
- { platform: linkedin, user_url: "https://linkedin.com/in/oz-gitelson/" }
36+
- title: GitHub
37+
icon: github
38+
url: "https://github.com/OzGitelson"
39+
- title: Linkedin
40+
icon: linkedin
41+
url: "https://linkedin.com/in/oz-gitelson/"
42+
- title: Google Scholar
43+
icon: google-scholar
44+
url: https://scholar.google.com/citations?user=LinR27sAAAAJ
45+
skin: dark
3946

4047
plugins:
4148
- jekyll-feed
4249

50+
4351
permalink: /:title
4452
header_pages:
4553
- publications.md
4654
- projects.md
55+
- resume.md
56+
4757

4858
# Exclude from processing.
4959
# The following items will not be processed, by default.
@@ -53,14 +63,15 @@ header_pages:
5363
# Excluded items can be processed by explicitly listing the directories or
5464
# their entries' file path in the `include:` list.
5565
#
56-
# exclude:
57-
# - .sass-cache/
58-
# - .jekyll-cache/
59-
# - gemfiles/
60-
# - Gemfile
61-
# - Gemfile.lock
62-
# - node_modules/
63-
# - vendor/bundle/
64-
# - vendor/cache/
65-
# - vendor/gems/
66-
# - vendor/ruby/
66+
exclude:
67+
- .sass-cache/
68+
- .jekyll-cache/
69+
- gemfiles/
70+
- Gemfile
71+
- Gemfile.lock
72+
- node_modules/
73+
- vendor/bundle/
74+
- vendor/cache/
75+
- vendor/gems/
76+
- vendor/ruby/
77+
- legacy/

_includes/custom-head.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<title>{site.title}|{page.title}</title>
2-
<link rel="icon" type="image/x-icon" href="assets/favicon.png">
1+
<link rel="icon" type="image/png" href="/assets/favicon.png">
2+
<title>{{site.title}}|{{page.title}}</title>

_includes/footer.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
<link id="fa-stylesheet" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@latest/css/all.min.css">
2+
3+
14
<footer class="site-footer h-card">
25
<data class="u-url" href="{{ "/" | relative_url }}"></data>
36

_includes/head.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
{%- seo -%}
6+
<link rel="stylesheet" href="/assets/style.css">
7+
{%- feed_meta -%}
8+
{%- if jekyll.environment == 'production' and site.google_analytics -%}
9+
{%- include google-analytics.html -%}
10+
{%- endif -%}
11+
12+
{%- include custom-head.html -%}
13+
</head>

_includes/header.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<header class="site-header" style="border-top: 0px;">
1+
<header class="site-header" role="banner" style="border-top: 0px;">
22

33
<div class="wrapper">
44
{%- assign default_paths = site.pages | map: "path" -%}
55
{%- assign page_paths = site.header_pages | default: default_paths -%}
6-
{%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
76
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
87

9-
{%- if titles_size > 0 -%}
8+
{%- if page_paths -%}
109
<nav class="site-nav">
1110
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
1211
<label for="nav-trigger">

_includes/social.html

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
<ul class="social-media-list">
22
<li>
3-
<a rel="me" href="mailto:{{site.email}}" target="_blank" title="email">
4-
<img src="assets/images/email.svg" alt="Email Icon" class="svg-icon grey" />
5-
</a>
3+
<a rel="me" href="mailto:{{site.email}}" target="_blank" title="Email">
4+
<span class="grey fa-solid fa-envelope fa-lg"></span>
5+
</a>
66
</li>
77
{%- for entry in site.minima.social_links -%}
8-
{%- include social-item.html item = entry -%}
8+
<li>
9+
<a rel="me" href="{{ entry.url }}" target="_blank" title="{{ entry.title }}">
10+
<span class="grey fa-brands fa-{{ entry.icon }} fa-lg"></span>
11+
</a>
12+
</li>
913
{%- endfor -%}
10-
</ul>
14+
15+
{% unless site.minima.hide_site_feed_link %}
16+
<li>
17+
<a href="{{ site.feed.path | default: 'feed.xml' | absolute_url }}" target="_blank" title="Subscribe to syndication feed">
18+
<svg class="svg-icon grey" viewbox="0 0 16 16">
19+
<path d="M12.8 16C12.8 8.978 7.022 3.2 0 3.2V0c8.777 0 16 7.223 16 16h-3.2zM2.194
20+
11.61c1.21 0 2.195.985 2.195 2.196 0 1.21-.99 2.194-2.2 2.194C.98 16 0 15.017 0
21+
13.806c0-1.21.983-2.195 2.194-2.195zM10.606
22+
16h-3.11c0-4.113-3.383-7.497-7.496-7.497v-3.11c5.818 0 10.606 4.79 10.606 10.607z"
23+
/>
24+
</svg>
25+
</a>
26+
</li>
27+
{%- endunless %}
28+
</ul>

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: base
2+
layout: default
33
---
44
<article class="post">
55
{% unless page.hide_header %}

_posts/2024-08-07-welcome-to-jekyll.markdown renamed to _posts/2025-04-10-welcome-to-jekyll.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Welcome to Jekyll!"
4-
date: 2024-08-07 18:59:09 -0400
4+
date: 2025-04-10 13:30:59 -0400
55
categories: jekyll update
66
---
77
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.

about.markdown

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
8+
9+
You can find the source code for Minima at GitHub:
10+
[jekyll][jekyll-organization] /
11+
[minima](https://github.com/jekyll/minima)
12+
13+
You can find the source code for Jekyll at GitHub:
14+
[jekyll][jekyll-organization] /
15+
[jekyll](https://github.com/jekyll/jekyll)
16+
17+
18+
[jekyll-organization]: https://github.com/jekyll

0 commit comments

Comments
 (0)