-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Responsiveness with Wraps and No-Wraps
- Loading branch information
Showing
13 changed files
with
71 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: "About Me" | ||
title: "🙋♂️ About Me" | ||
date: 2024-03-28T15:00:00+00:00 | ||
draft: false | ||
layout: "terms" | ||
|
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
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,5 +1,9 @@ | ||
<div class="py-1">📝</div> | ||
{{ range .Params.authors }} | ||
<a href='{{ "/authors/" | relLangURL }}{{ . | urlize }}' | ||
class="border border-orange-400 p-1 hover:bg-orange-400 focus:bg-orange-400 text-center focus:text-color-white">{{ . }}</a> | ||
{{ end }} | ||
<div class="flex flex-wrap gap-2"> | ||
{{ range .Params.authors }} | ||
<a href='{{ "/authors/" | relLangURL }}{{ . | urlize }}' | ||
class="border border-orange-400 p-1 hover:bg-orange-400 focus:bg-orange-400 text-center focus:text-color-white"> | ||
{{ . }} | ||
</a> | ||
{{ end }} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<p class="py-1">🏷️</p> | ||
{{ range .Params.tags }} | ||
<a href='{{ "/tags/" | relLangURL }}{{ . | urlize }}' | ||
class="border border-sky-400 p-1 hover:bg-sky-400 focus:bg-sky-400 text-center">{{ . }}</a> | ||
{{ end }} | ||
<div class="flex flex-wrap gap-2"> | ||
{{ range .Params.tags }} | ||
<a href='{{ "/tags/" | relLangURL }}{{ . | urlize }}' | ||
class="border border-sky-400 p-1 hover:bg-sky-400 focus:bg-sky-400 text-center">{{ . }}</a> | ||
{{ end }} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
<div class="flex flex-col gap-8 pt-8"> | ||
<div class="flex flex-col gap-4 pt-8"> | ||
<div class="flex flex-row gap-4"> | ||
{{ if eq .Title "Tags" }} | ||
<p class="text-4xl">🏷️</p> | ||
<p class="text-3xl max-sm:text-2xl">🏷️</p> | ||
{{ else if eq .Title "Authors" }} | ||
<p class="text-4xl">👩💻</p> | ||
<p class="text-3xl max-sm:text-2xl">👩💻</p> | ||
{{ else }} | ||
<!-- Default behavior if the title is neither "tags" nor "authors" --> | ||
{{ end }} | ||
<h1 class="text-4xl font-bold">{{ .Title }}</h1> | ||
<h1 class="text-3xl max-sm:text-2xl font-bold">{{ .Title }}</h1> | ||
</div> | ||
<hr /> | ||
<div class="flex flex-row gap-4"> | ||
{{ range .Scratch.Get "taxonomy" }} | ||
<div> | ||
<a href="{{ .Page.Permalink }}" title="All pages with tag <i>{{ .Page.Title | lower }}</i>" | ||
class="border border-sky-400 p-1 hover:bg-sky-400 focus:bg-sky-400 text-center whitespace-nowrap">{{ .Page.Title | lower }} x | ||
{{ | ||
.Count }}</a> | ||
<div class="flex flex-col gap-8"> | ||
<hr /> | ||
<div class="flex flex-row gap-4 flex-wrap"> | ||
{{ range .Scratch.Get "taxonomy" }} | ||
<div> | ||
<a href="{{ .Page.Permalink }}" title="All pages with tag <i>{{ .Page.Title | lower }}</i>" | ||
class="border border-sky-400 p-1 hover:bg-sky-400 focus:bg-sky-400 text-center whitespace-nowrap">{{ .Page.Title | lower }} x | ||
{{ | ||
.Count }}</a> | ||
</div> | ||
{{ end }} | ||
</div> | ||
{{ end }} | ||
</div> | ||
{{ partial "footer_regular.html" .}} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
|
||
{{ partial "taxonomy.html" . }} | ||
|
||
{{ partial "footer_regular.html" .}} | ||
{{ end }} | ||
|