Skip to content

Commit 9035657

Browse files
Fix CSS paths and replace blog homepage with custom welcome page
1 parent 98d0b36 commit 9035657

File tree

3 files changed

+29
-36
lines changed

3 files changed

+29
-36
lines changed

_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ author:
1111
markdown: kramdown
1212
permalink: /:title/
1313

14-
# Pagination for the homepage
15-
paginate: 5
16-
paginate_path: "/page:num/"
14+
# Pagination disabled - using custom homepage
15+
# paginate: 5
16+
# paginate_path: "/page:num/"

_includes/head.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
</title>
1616

1717
<!-- CSS -->
18-
<link rel="stylesheet" href="{{ site.baseurl }}public/css/poole.css">
19-
<link rel="stylesheet" href="{{ site.baseurl }}public/css/syntax.css">
20-
<link rel="stylesheet" href="{{ site.baseurl }}public/css/hyde.css">
21-
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
18+
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/poole.css">
19+
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/syntax.css">
20+
<link rel="stylesheet" href="{{ site.baseurl }}/public/css/hyde.css">
21+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
2222

2323
<!-- Icons -->
24-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}public/apple-touch-icon-144-precomposed.png">
25-
<link rel="shortcut icon" href="{{ site.baseurl }}public/favicon.ico">
24+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/public/apple-touch-icon-144-precomposed.png">
25+
<link rel="shortcut icon" href="{{ site.baseurl }}/public/favicon.ico">
2626

2727
<!-- RSS -->
2828
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">

index.html

Lines changed: 20 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,28 @@
33
title: Home
44
---
55

6-
<div class="posts">
7-
{% for post in paginator.posts %}
8-
<div class="post">
9-
<h1 class="post-title">
10-
<a href="{{ post.url }}">
11-
{{ post.title }}
12-
</a>
13-
</h1>
6+
<div class="page">
7+
<h1>Welcome to My Research Portfolio</h1>
8+
9+
<p>I am Taehwa Hong, a Ph.D. candidate at Seoul National University specializing in <strong>physics-based simulation</strong> and <strong>data generation for robotic learning</strong>.</p>
1410

15-
<span class="post-date">{{ post.date | date_to_string }}</span>
11+
<h2>Research Focus</h2>
12+
<p>My research addresses the <strong>fidelity-tractability trade-off</strong> in simulating complex physical interactions, particularly involving deformable structures and contact dynamics. I develop abstraction methodologies to create foundational simulation tools for training physically intelligent robots.</p>
13+
14+
<h2>Quick Links</h2>
15+
<ul class="quick-links">
16+
<li><a href="{{ site.baseurl }}/about/">Learn more about my background →</a></li>
17+
<li><a href="{{ site.baseurl }}/research/">Explore my research projects →</a></li>
18+
<li><a href="{{ site.baseurl }}/publications/">View my publications →</a></li>
19+
<li><a href="https://github.com/ndolphin-github">Visit my GitHub profile →</a></li>
20+
</ul>
1621

17-
{{ post.content }}
22+
<h2>Latest Updates</h2>
23+
{% for post in site.posts limit:3 %}
24+
<div class="post-preview">
25+
<h3><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
26+
<span class="post-date">{{ post.date | date_to_string }}</span>
27+
<p>{{ post.excerpt }}</p>
1828
</div>
1929
{% endfor %}
20-
</div>
21-
22-
<div class="pagination">
23-
{% if paginator.next_page %}
24-
<a class="pagination-item older" href="{{ site.baseurl }}page{{paginator.next_page}}">Older</a>
25-
{% else %}
26-
<span class="pagination-item older">Older</span>
27-
{% endif %}
28-
{% if paginator.previous_page %}
29-
{% if paginator.page == 2 %}
30-
<a class="pagination-item newer" href="{{ site.baseurl }}">Newer</a>
31-
{% else %}
32-
<a class="pagination-item newer" href="{{ site.baseurl }}page{{paginator.previous_page}}">Newer</a>
33-
{% endif %}
34-
{% else %}
35-
<span class="pagination-item newer">Newer</span>
36-
{% endif %}
3730
</div>

0 commit comments

Comments
 (0)