Skip to content

Commit

Permalink
edit site
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyun Woo Kim authored and Hyun Woo Kim committed Dec 6, 2024
1 parent 415c9f4 commit ef306fb
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
19 changes: 17 additions & 2 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
<h1 class="page-heading">{{ page.title }}</h1>
{% endif %}

<!-- Profile Section -->
<!-- Profile Section -->
<!-- Profile Section -->
<section class="section" id="profile">
<div class="container is-max-desktop">
<h2>About Me</h2>
<hr />
<div class="profile-block columns">
<!-- Profile Picture -->
<div class="column is-narrow">
Expand Down Expand Up @@ -54,6 +53,7 @@ <h2>About Me</h2>
<section class="section" id="research">
<div class="container is-max-desktop">
<h2>Research</h2>
<hr />
{% for publication in site.data.publications %}
<div class="publication-block columns">
<!-- Publication Image -->
Expand Down Expand Up @@ -123,4 +123,19 @@ <h3 class="publication-title">
<br />
</div>
</section>

<!-- Services Section -->
<section class="section" id="services">
<div class="container is-max-desktop">
<h2>Services</h2>
<hr />
<div class="services-list">
{% for service in site.data.service %}
<div class="service-item">
<strong>{{ service.role }}</strong> at <em>{{ service.venue }}</em>
</div>
{% endfor %}
</div>
</div>
</section>
</div>
21 changes: 21 additions & 0 deletions _sass/minima/custom-variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,25 @@
.icon-link-box:link,
.icon-link-box:hover {
color: #000 !important; /* Ensures links do not turn blue */
}


h2 {
margin-bottom: 0.5em;
}

hr {
border: none;
border-top: 2px solid #ccc;
margin-bottom: 1em;
}

.services-list {
margin-top: 1em;
}

.service-item {
margin-bottom: 0.5em;
font-size: 1em;
color: #333;
}

0 comments on commit ef306fb

Please sign in to comment.