Skip to content

Commit 3b9e338

Browse files
committed
changes
1 parent cf4f852 commit 3b9e338

3 files changed

Lines changed: 36 additions & 16 deletions

File tree

Gemfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ source "https://rubygems.org"
1010
gem "jekyll", "~> 4.3"
1111
# This is the default theme for new Jekyll sites. You may change this to anything you like.
1212
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`.
13+
# For GitHub Pages deployment:
14+
# GitHub Pages uses its own Jekyll version, so you don't need to change this for deployment.
15+
# For local testing, keep using "jekyll" gem. GitHub Pages will build with its own version.
16+
# If you want to match GitHub Pages exactly locally, uncomment below and comment out "jekyll" above:
1517
# gem "github-pages", group: :jekyll_plugins
1618
# If you have any plugins, put them here!
1719
group :jekyll_plugins do

_config.yml

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,50 @@
11
title: Characteristic Mapping Method for Kinetic Equations (CROKE)
2-
position: <a href=" https://anr.fr/Projet-ANR-25-
3-
CE46-2339">Project ANR-25-CE46-2339</a>
2+
position: <a href="https://anr.fr/Projet-ANR-25-CE46-2339">Project ANR-25-CE46-2339</a>
43
affiliation: 2026 - 2030
54
email: philipp.krah@cea.fr
65
description:
76
keywords: Computational Physics, Numerical Analysis
87
google_scholar:
98
github_link: https://github.com/CharacteristicMappingMethod
10-
avatar: ./assets/img/arton1807.jpg
11-
favicon: ./assets/img/arton1807.jpg
12-
favicon_dark: ./assets/img/arton1807.jpg
13-
canonical: https://minimal-light.yyliu.net/
9+
avatar: /assets/img/arton1807.jpg
10+
favicon: /assets/img/arton1807.jpg
11+
favicon_dark: /assets/img/arton1807.jpg
12+
# GitHub Pages Configuration:
13+
# - If repository is "username.github.io" or "orgname.github.io" (user/org page):
14+
# baseurl: ""
15+
# url: "https://username.github.io" or "https://orgname.github.io"
16+
# - If repository is a project page (e.g., "project-name"):
17+
# baseurl: "/project-name"
18+
# url: "https://username.github.io" or "https://orgname.github.io"
19+
#
20+
# IMPORTANT: Update the values below based on your actual GitHub Pages setup!
21+
baseurl: "" # Empty for user/org pages, or "/repo-name" for project pages
22+
url: "https://philipp137.github.io" # Your GitHub Pages URL (update if different)
23+
24+
canonical: "https://philipp137.github.io" # Update with your actual GitHub Pages URL
1425
remote_theme: yaoyao-liu/minimal-light
15-
baseurl: "/characteristicmappingmethod.github.io" # the subpath of your site, e.g. /blog
16-
url: "" # the base hostname & protocol for your site, e.g. http://example.com
1726
github_username: philipp137
1827

1928
# Build settings
20-
#theme: minima
2129
plugins:
2230
- jekyll-feed
2331

2432
defaults:
33+
# Posts use "post" layout
2534
-
2635
scope:
2736
path: ""
37+
type: "posts"
2838
values:
2939
layout: "post"
40+
# Pages in root use "page" layout (except index.markdown which specifies its own)
41+
-
42+
scope:
43+
path: ""
44+
type: "pages"
45+
values:
46+
layout: "page"
47+
# Note: index.markdown explicitly specifies layout: homepage, so it won't be overridden
3048
# Exclude from processing.
3149
# The following items will not be processed, by default.
3250
# Any item listed under the `exclude:` key here will be automatically added to

_layouts/homepage.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@
1414
<link rel="canonical" href="{{ site.canonical }}"/>
1515
{% endif %}
1616

17-
<link rel="icon" media="(prefers-color-scheme:dark)" href="{{ site.favicon_dark }}" type="image/png" />
18-
<link rel="icon" media="(prefers-color-scheme:light)" href="{{ site.favicon }}" type="image/png" />
19-
<script src="./assets/js/favicon-switcher.js" type="application/javascript"></script>
17+
<link rel="icon" media="(prefers-color-scheme:dark)" href="{{ site.favicon_dark | relative_url }}" type="image/png" />
18+
<link rel="icon" media="(prefers-color-scheme:light)" href="{{ site.favicon | relative_url }}" type="image/png" />
19+
<script src="{{ '/assets/js/favicon-switcher.js' | relative_url }}" type="application/javascript"></script>
2020

2121
<link rel=stylesheet href=https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.6/css/academicons.min.css integrity="sha256-uFVgMKfistnJAfoCUQigIl+JfUaP47GrRKjf6CTPVmw=" crossorigin=anonymous>
2222
<link rel=stylesheet href=https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css integrity="sha256-+N4/V/SbAFiW1MPBCXnfnP9QSN3+Keu+NlB+0ev/YKQ=" crossorigin=anonymous>
2323

24-
<link rel="stylesheet" href="./assets/css/style.css">
24+
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
2525
</head>
2626
<body>
2727
<div class="wrapper">
2828
<header>
2929

3030
{% if site.avatar %}
31-
<a class="image avatar"><img src="{{site.avatar}}" alt="avatar" onContextMenu="return false" /></a>
31+
<a class="image avatar"><img src="{{site.avatar | relative_url}}" alt="avatar" onContextMenu="return false" /></a>
3232
{% endif %}
3333

3434
<h1>{{ site.title }}</h1>

0 commit comments

Comments
 (0)