Compare commits

..

2 Commits

Author SHA1 Message Date
e0fcefb3a3 Styling for mobile 2025-07-05 22:04:32 +02:00
b844dc9007 Small update 2025-07-04 17:53:43 +02:00
3 changed files with 26 additions and 3 deletions

View File

@ -182,6 +182,10 @@
<p class="date">2025-04-13</p> <p class="date">2025-04-13</p>
</header> </header>
<div class="header-container"> <div class="header-container">
<div class="mobile-image">
<img src="./picture.jpg" alt="A picture of me" class="header-image" />
<img src="./pfp.png" alt="My typical profile picture" class="header-image" />
</div>
<img src="./picture.jpg" alt="A picture of me" class="header-image left" /> <img src="./picture.jpg" alt="A picture of me" class="header-image left" />
<div class="header-details"> <div class="header-details">
<h1> <h1>
@ -226,8 +230,8 @@ href="https://www.asplos-conference.org/asplos2025/"><strong>ASPLOS/EuroSys20
<small>March 30 - April 3, 2025</small><br /> <small>March 30 - April 3, 2025</small><br />
I presented a talk titled <em>Modular Data and Parallelization I presented a talk titled <em>Modular Data and Parallelization
Abstractions for Programming Heterogeneous Systems</em> at <a Abstractions for Programming Heterogeneous Systems</em> at <a
href="https://eurodw25.github.io/">EuroDW25</a>, and stayed for the href="https://eurodw25.github.io/">EuroDW25</a> in Rotterdam (🇳🇱), and
full conference.<br /> stayed for the full conference.<br />
</li> </li>
<li><a <li><a
href="https://pliss.org/2025/"><strong>PLISS25</strong></a><br /> href="https://pliss.org/2025/"><strong>PLISS25</strong></a><br />

View File

@ -11,6 +11,10 @@ header-includes:
--- ---
<div class="header-container"> <div class="header-container">
<div class="mobile-image">
<img src="./picture.jpg" alt="A picture of me" class="header-image" />
<img src="./pfp.png" alt="My typical profile picture" class="header-image" />
</div>
<img src="./picture.jpg" alt="A picture of me" class="header-image left" /> <img src="./picture.jpg" alt="A picture of me" class="header-image left" />
<div class="header-details"> <div class="header-details">
<h1>Jonas Sys</h1> <h1>Jonas Sys</h1>
@ -38,7 +42,7 @@ header-includes:
- [**ASPLOS/EuroSys'20**](https://www.asplos-conference.org/asplos2025/) - [**ASPLOS/EuroSys'20**](https://www.asplos-conference.org/asplos2025/)
<small>March 30 - April 3, 2025</small> <small>March 30 - April 3, 2025</small>
I presented a talk titled *Modular Data and Parallelization Abstractions for Programming Heterogeneous Systems* at [EuroDW'25](https://eurodw25.github.io/), and stayed for the full conference. I presented a talk titled *Modular Data and Parallelization Abstractions for Programming Heterogeneous Systems* at [EuroDW'25](https://eurodw25.github.io/) in Rotterdam (🇳🇱), and stayed for the full conference.
- [**PLISS'25**](https://pliss.org/2025/) - [**PLISS'25**](https://pliss.org/2025/)
<small>May 26 - May 31, 2025</small> <small>May 26 - May 31, 2025</small>
I attended the summer school in Bertinoro (🇮🇹)! This was followed by a short trip to Firenze/Florence (🇮🇹), Muenchen/Munich (🇩🇪), and Ravenstein (🇳🇱). I attended the summer school in Bertinoro (🇮🇹)! This was followed by a short trip to Firenze/Florence (🇮🇹), Muenchen/Munich (🇩🇪), and Ravenstein (🇳🇱).

View File

@ -32,3 +32,18 @@ header {
vertical-align: middle; vertical-align: middle;
height: 1em; height: 1em;
} }
.mobile-image {
display: none;
}
@media(max-width: 700px) {
.mobile-image {
display: flex;
flex-direction: column;
}
.left, .right {
display: none;
}
}