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
2 changes: 2 additions & 0 deletions src/_includes/bio.njk
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
</head>
<body class="min-h-screen scroll-smooth bg-[var(--bg-page)] text-[var(--text-main)] transition-colors duration-300">

{% include "github-ribbon.njk" %}

{% include "header.njk" %}

<main class="max-w-5xl mx-auto px-4 py-12">
Expand Down
16 changes: 16 additions & 0 deletions src/_includes/github-ribbon.njk
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<a
href="{{ build.repoUrl }}"
Comment thread
BaseMax marked this conversation as resolved.
target="_blank"
rel="noopener noreferrer"
class="fixed top-0 left-0 z-[200] block w-[88px] h-[88px] sm:w-[112px] sm:h-[112px] overflow-hidden"
>
<img
loading="eager"
decoding="async"
width="112"
height="112"
src="/assets/img/github-fork-me.png"
alt="Fork this project on GitHub"
class="h-full w-full"
>
</a>
Binary file added src/assets/img/github-fork-me.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/games.njk
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ permalink: /games/
</head>
<body class="min-h-screen scroll-smooth bg-[var(--bg-page)] text-[var(--text-main)] transition-colors duration-300">

{% include "github-ribbon.njk" %}

{% include "header.njk" %}

<main class="max-w-5xl mx-auto px-4 py-12">
Expand Down
2 changes: 2 additions & 0 deletions src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ layout: false
</head>
<body class="min-h-screen scroll-smooth bg-[var(--bg-page)] text-[var(--text-main)] transition-colors duration-300">

{% include "github-ribbon.njk" %}

{% include "header.njk" %}

<main class="max-w-7xl mx-auto px-4 py-12">
Expand Down
Loading