-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
ec5ec8c
commit 5daa38d
Showing
9 changed files
with
109 additions
and
626 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
{{ with .Site.Author.links }} | ||
<div class="flex flex-wrap text-neutral-400 dark:text-neutral-500"> | ||
{{ range $links := . }} | ||
{{ range $name, $url := $links }} | ||
<a | ||
class="px-1 hover:text-primary-700 dark:hover:text-primary-400 mt-2" | ||
href="{{ $url | safeURL }}" | ||
target="_blank" | ||
aria-label="{{ $name | title }}" | ||
rel="me noopener noreferrer" | ||
><span class="inline-block text-4xl align-text-bottom">{{ partial "icon.html" $name }}</span></a | ||
> | ||
{{ end }} | ||
{{ end }} | ||
</div> | ||
{{ end }} |
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,27 @@ | ||
{{ $disableImageOptimization := .Site.Params.disableImageOptimization | default false }} | ||
<div class="flex author"> | ||
{{ with .Site.Author.image }} | ||
{{ $authorImage := resources.Get . }} | ||
{{ if $authorImage }} | ||
{{ if not $disableImageOptimization }} | ||
{{ $authorImage = $authorImage.Fill "192x192" }} | ||
{{ end }} | ||
<img class="!mt-0 !mb-0 h-24 w-24 rounded-full ltr:mr-4 rtl:ml-4" width="96" height="96" | ||
alt="{{ $.Site.Author.name | default " Author" }}" src="{{ $authorImage.RelPermalink }}" /> | ||
{{ end }} | ||
{{ end }} | ||
<div class="place-self-center"> | ||
{{ with .Site.Author.name | markdownify | emojify }} | ||
<div class="text-[0.6rem] uppercase leading-3 text-neutral-500 dark:text-neutral-400"> | ||
{{ i18n "author.byline_title" | markdownify | emojify }} | ||
</div> | ||
<div class="font-semibold leading-6 text-neutral-800 dark:text-neutral-300"> | ||
{{ . }} | ||
</div> | ||
{{ end }} | ||
{{ with .Site.Author.bio | markdownify | emojify }} | ||
<div class="text-sm text-neutral-700 dark:text-neutral-400">{{ . }}</div> | ||
{{ end }} | ||
<div class="text-2xl sm:text-lg">{{ partialCached "author-links.html" . }}</div> | ||
</div> | ||
</div> |
Empty file.
Oops, something went wrong.