Skip to content

Commit 6b7f193

Browse files
committed
Update about page.
1 parent 5c7be64 commit 6b7f193

2 files changed

Lines changed: 52 additions & 40 deletions

File tree

_layouts/about.liquid

Lines changed: 46 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,44 +2,59 @@
22
layout: default
33
---
44
<div class="post">
5-
<header class="post-header">
6-
<h1 class="post-title">
7-
{% if site.title == 'blank' %}
8-
<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }}
9-
{{ site.last_name }}
10-
{% else %}
11-
{{ site.title }}
12-
{% endif %}
13-
</h1>
14-
<p class="desc">{{ page.subtitle }}</p>
15-
</header>
16-
175
<article>
186
{% if page.profile %}
19-
<div class="profile float-{% if page.profile.align == 'left' %}left{% else %}right{% endif %}">
20-
{% if page.profile.image %}
21-
{% assign profile_image_path = page.profile.image | prepend: 'assets/img/' %}
22-
{% if page.profile.image_circular %}
23-
{% assign profile_image_class = 'img-fluid z-depth-1 rounded-circle' %}
7+
<header class="post-header">
8+
<h1 class="post-title">
9+
{% if site.title == 'blank' %}
10+
<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }}
11+
{{ site.last_name }}
2412
{% else %}
25-
{% assign profile_image_class = 'img-fluid z-depth-1
26-
rounded' %}
13+
{{ site.title }}
14+
{% endif %}
15+
</h1>
16+
</header>
17+
<div class="row">
18+
<div class="col-md-9">
19+
{% if page.subtitle %}
20+
<p class="desc">{{ page.subtitle }}</p>
21+
{% endif %}
22+
<div class="clearfix">{{ content }}</div>
23+
</div>
24+
<div class="col-md-3">
25+
{% if page.profile.image %}
26+
{% assign profile_image_path = page.profile.image | prepend: 'assets/img/' %}
27+
{% if page.profile.image_circular %}
28+
{% assign profile_image_class = 'img-fluid z-depth-1 rounded-circle' %}
29+
{% else %}
30+
{% assign profile_image_class = 'img-fluid z-depth-1 rounded' %}
31+
{% endif %}
32+
{% capture sizes %}(min-width: {{ site.max_width }}) {{ site.max_width | minus: 30 | times: 0.2}}px, (min-width: 576px)
33+
25vw, 90vw"{% endcapture %}
34+
{%
35+
include figure.liquid loading="eager" path=profile_image_path class=profile_image_class sizes=sizes alt=page.profile.image
36+
cache_bust=true
37+
%}
38+
{% endif %}
39+
{% if page.profile.more_info %}
40+
<div class="more-info">{{ page.profile.more_info }}</div>
2741
{% endif %}
28-
{% capture sizes %}(min-width: {{ site.max_width }}) {{ site.max_width | minus: 30 | times: 0.3}}px, (min-width: 576px)
29-
30vw, 95vw"{% endcapture %}
30-
{%
31-
include figure.liquid loading="eager" path=profile_image_path class=profile_image_class sizes=sizes alt=page.profile.image
32-
cache_bust=true
33-
%}
34-
{% endif %}
35-
{% if page.profile.more_info %}
36-
<div class="more-info">{{ page.profile.more_info }}</div>
37-
{% endif %}
42+
</div>
3843
</div>
44+
{% else %}
45+
<header class="post-header">
46+
<h1 class="post-title">
47+
{% if site.title == 'blank' %}
48+
<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }}
49+
{{ site.last_name }}
50+
{% else %}
51+
{{ site.title }}
52+
{% endif %}
53+
</h1>
54+
</header>
55+
<div class="clearfix">{{ content }}</div>
3956
{% endif %}
4057

41-
<div class="clearfix">{{ content }}</div>
42-
4358
<!-- News -->
4459
{% if page.announcements and page.announcements.enabled %}
4560
<h2>

_pages/about.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@ title: about
44
permalink: /
55
subtitle: |+
66
<div class="alert alert-info" role="alert">
7-
<i class="fas fa-briefcase"></i>&nbsp;&nbsp;&nbsp;<b>Continuous Optimization Research Lead at the <a href="https://iol.zib.de/opt">IOL Lab</a> of <a href="https://www.zib.de/">Zuse Institute Berlin</a></b><br>
7+
<i class="fas fa-briefcase"></i>&nbsp;&nbsp;&nbsp;<b>Continuous Optimization Research Lead in the <a href="https://iol.zib.de/opt">IOL Lab</a> at <a href="https://www.zib.de/">Zuse Institute Berlin</a></b><br>
88
<i class="fas fa-graduation-cap"></i>&nbsp;&nbsp;<b>3rd-year PhD candidate in Mathematics at <a href="https://www.tu.berlin/en/math">TU Berlin</a></b><br>
99
<i class="fas fa-graduation-cap"></i>&nbsp;&nbsp;<b>Advisor: <a href="http://www.pokutta.com/">Prof. Dr. Sebastian Pokutta</a></b>
1010
</div>
1111
12-
# <div class="alert alert-success" role="alert">
13-
# <i class="fas fa-flask"></i> <b>We are hiring!</b> We are seeking motivated PhD students to work on first-order methods and continuous optimization. Reach out or directly apply <a href="http://iol.zib.de/openings" class="alert-link">here</a>!
14-
# </div>
15-
1612
profile:
17-
align: right
13+
align: left
1814
image: DF7224_Hendrych_1b.jpg
1915
image_circular: false # crops the image to make it circular
2016
selected_papers: true # includes a list of papers marked as "selected={true}"
@@ -31,6 +27,7 @@ social: true # includes social icons at the bottom of the page
3127
# limit: 3 # leave blank to include all the blog posts
3228
---
3329

34-
I am a PhD candidate at Sebastian Pokutta's [IOL Lab](https://iol.zib.de) at the [Zuse Institute Berlin](https://www.zib.de) and lead of the IOL.Opt area focusing in first-order optimization. My research interests are Frank-Wolfe methods, mixed-integer convex optimization and optimal experiment design.
35-
36-
In my free time, I love to read both fiction (fantasy, crime, horror) and non-fiction (mathematics, psychology, history, biographies). I am part of a women's choir and like to try out new art supplies.
30+
I am a PhD candidate at the [Interactive Learning and Optimization (IOL) Lab](https://iol.zib.de) led by [Sebastian Pokutta](https://www.pokutta.com) hosted at the [Zuse Institute Berlin](https://www.zib.de) and [Technical University Berlin](https://www.tu.berlin) and I lead research area on the continuous optimization [IOL.Opt](https://iol.zib.de/research/iol-opt.html).
31+
My research focuses on first-order optimization methods, mainly Frank-Wolfe methods, for both continuous as well as discrete problems.
32+
In particular, I am interested in problems with combinatorial structure, for example, Optimal Design of Experiments and Network Design.
33+
Part of my work is the development and further improvement of the [FrankWolfe.jl](https://github.com/ZIB-IOL/FrankWolfe.jl) and [Boscia.jl](https://github.com/ZIB-IOL/Boscia.jl) repositories.

0 commit comments

Comments
 (0)