Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion about.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ title: About
permalink: /about/
---

![my_image]({{ site.url}}{{ site.baseurl }}/assets/images/my_profile_picture.jpg)
<img class="profile-photo" src="{{ site.url }}{{ site.baseurl }}/assets/images/my_profile_picture.jpg" alt="Jaysinh Shukla">



I am **Jaysinh Shukla**, a Software Engineer at Amazon. For more than ten years I have
Expand Down
Binary file modified assets/images/my_profile_picture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions assets/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
# Only the main Sass file needs front matter (the dashes are enough)
---

@import "minima";

// The About page portrait. `cover` keeps the face centred whatever aspect
// ratio the source photo has, so the circle never squashes it.
.profile-photo {
display: block;
margin: 0 auto $spacing-unit;
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
}
Loading