Skip to content

Commit cb74b69

Browse files
authored
Merge pull request #6 from OzGitelson/main
fix site?
2 parents 1f09a32 + bd9f0b2 commit cb74b69

File tree

12 files changed

+874
-36
lines changed

12 files changed

+874
-36
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ _site
33
.jekyll-cache
44
.jekyll-metadata
55
vendor
6-
Gemfile.lock
6+
Gemfile.lock
7+
legacy/*

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: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,28 @@ 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
@@ -54,14 +62,15 @@ header_pages:
5462
# Excluded items can be processed by explicitly listing the directories or
5563
# their entries' file path in the `include:` list.
5664
#
57-
# exclude:
58-
# - .sass-cache/
59-
# - .jekyll-cache/
60-
# - gemfiles/
61-
# - Gemfile
62-
# - Gemfile.lock
63-
# - node_modules/
64-
# - vendor/bundle/
65-
# - vendor/cache/
66-
# - vendor/gems/
67-
# - vendor/ruby/
65+
exclude:
66+
- .sass-cache/
67+
- .jekyll-cache/
68+
- gemfiles/
69+
- Gemfile
70+
- Gemfile.lock
71+
- node_modules/
72+
- vendor/bundle/
73+
- vendor/cache/
74+
- vendor/gems/
75+
- vendor/ruby/
76+
- 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 & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,30 @@
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" 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

88
{%- for entry in site.minima.social_links -%}
9-
{%- include social-item.html item = entry -%}
9+
<li>
10+
<a rel="me" href="{{ entry.url }}" target="_blank" title="{{ entry.title }}">
11+
<span class="grey fa-brands fa-{{ entry.icon }} fa-lg"></span>
12+
</a>
13+
</li>
1014
{%- endfor -%}
1115

12-
<li>
13-
<a rel="me" href="https://scholar.google.com/citations?user=LinR27sAAAAJ&hl=en" target="_blank" title="google scholar">
14-
<img src="assets/images/google-scholar.svg" alt="Google Scholar" class="svg-icon grey" />
15-
</a>
16-
</li>
17-
</ul>
16+
{% unless site.minima.hide_site_feed_link %}
17+
<li>
18+
<a href="{{ site.feed.path | default: 'feed.xml' | absolute_url }}" target="_blank" title="Subscribe to syndication feed">
19+
<svg class="svg-icon grey" viewbox="0 0 16 16">
20+
<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
21+
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
22+
13.806c0-1.21.983-2.195 2.194-2.195zM10.606
23+
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"
24+
/>
25+
</svg>
26+
</a>
27+
</li>
28+
{%- endunless %}
29+
</ul>
30+

_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.

0 commit comments

Comments
 (0)