-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
269 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
--- | ||
layout: base | ||
--- | ||
<div class="content-width"> | ||
{% if page.title %} | ||
<h1>{{ page.title }}</h1> | ||
{% else %} | ||
<h1>About me</h1> | ||
{% endif %} | ||
|
||
{% if site.social %} | ||
<nav class="about-social"> | ||
{% if site.github_url %} | ||
<a href="{{ site.github_url }}" title="GitHub" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/github.svg#github" | relative_url }}" alt="GitHub"></use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.gitlab_url %} | ||
<a href="{{ site.gitlab_url }}" title="GitLab" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/gitlab.svg#gitlab" | relative_url }}" alt="GitLab"></use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.discord_url %} | ||
<a href="{{ site.discord_url }}" title="Discord" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/discord.svg#discord" | relative_url }}" alt="Discord"></use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.reddit_url %} | ||
<a href="{{ site.reddit_url }}" title="Reddit" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/reddit.svg#reddit" | relative_url }}" alt="Reddit"></use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.instagram_url %} | ||
<a href="{{ site.instagram_url }}" title="Instagram" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/instagram.svg#instagram" | relative_url }}" alt="Instagram"> | ||
</use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.linkedin_url %} | ||
<a href="{{ site.linkedin_url }}" title="LinkedIn" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/linkedin.svg#linkedin" | relative_url }}" alt="LinkedIn"> | ||
</use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.threads_url %} | ||
<a href="{{ site.threads_url }}" title="Threads" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/threads.svg#threads" | relative_url }}" alt="Threads"> | ||
</use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.x_url %} | ||
<a href="{{ site.x_url }}" title="X" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/x.svg#x" | relative_url }}" alt="X"> | ||
</use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
|
||
{% if site.telegram_url %} | ||
<a href="{{ site.telegram_url }}" title="Telegram" target="_blank" rel="noopener"> | ||
<svg class="about-social--icon"> | ||
<use href="{{ "/assets/icon/telegram.svg#telegram" | relative_url }}" alt="Telegram"> | ||
</use> | ||
</svg> | ||
</a> | ||
{% endif %} | ||
</nav> | ||
{% endif %} | ||
|
||
<div class="about"> | ||
<div class="about--img"> | ||
<img src="{{ site.about_image | relative_url }}" alt="About me"> | ||
</div> | ||
<div class="about--content"> | ||
{{ content }} | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
@import "components/post", "components/post-card", "components/post-preview"; | ||
@import "components/post", "components/post-card", "components/post-preview", "components/about.scss"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
.about { | ||
display: flex; | ||
flex-flow: row wrap; | ||
justify-content: space-between; | ||
|
||
margin-left: auto; | ||
margin-right: auto; | ||
|
||
|
||
.about--img { | ||
flex: 0 0 40%; | ||
|
||
height: fit-content; | ||
|
||
@media screen and (max-width: 500px){ | ||
flex: 0 0 100%; | ||
} | ||
|
||
img { | ||
width: 100%; | ||
height: auto; | ||
} | ||
border: 3px solid transparent; | ||
border-image: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary)) 1; | ||
} | ||
|
||
.about--content { | ||
flex: 0 0 60%; | ||
padding: 0 20px; | ||
|
||
@media screen and (min-width: 500px){ | ||
p { | ||
margin-block-start: 0; | ||
margin-block-end: 0; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.about-social { | ||
width: 100%; | ||
|
||
display: flex; | ||
flex-flow: row nowrap; | ||
justify-content: center; | ||
gap: 20px; | ||
|
||
a { | ||
display: flex; | ||
flex-flow: row nowrap; | ||
align-items: center; | ||
gap: 10px; | ||
text-decoration: none; | ||
color: var(--text-primary); | ||
transition: color 0.3s ease; | ||
|
||
&:hover { | ||
color: var(--accent-primary); | ||
} | ||
|
||
svg { | ||
aspect-ratio: 1/1; | ||
max-width: 2rem; | ||
max-height: 2rem; | ||
|
||
width: 100%; | ||
height: auto; | ||
|
||
display: inline-block; | ||
|
||
fill: var(--svg-fill); | ||
color: var(--svg-fill); | ||
object-fit: fill; | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
File renamed without changes.
File renamed without changes
Empty file.