bigger pfp

This commit is contained in:
Jack Burkhardt 2024-06-17 16:46:27 -05:00
parent 0a91156191
commit 0fe05ff676
No known key found for this signature in database
GPG key ID: 6D85393112E449E6
4 changed files with 4 additions and 4 deletions

View file

@ -139,7 +139,7 @@
"list": {
"prefix": ["BFS-list", "HSC-list", "list"],
"body": [
"{{< list limit=\"${1:5}\"${2| , title=\"Recent\"|}${3| , where=\"Type\"|}${4| ,value=\"article\"|} >}}",
"{{< list limit=\"${1:5}\"${2| , title=\"Recent projects\"|}${3| , where=\"Type\"|}${4| ,value=\"article\"|} >}}",
"{{/* The where and value values are used in the following query where .Site.RegularPages $where $value in the code of the shortcode. See Hugo Docs: https://gohugo.io/variables/page/ */}} $0",
],
"description": "Display a list of recent articles. Blowfish list Shortcode. Documentation: https://blowfish.page/docs/shortcodes/#list ",

View file

@ -68,7 +68,7 @@ sharing:
twitter: "Tweet on Twitter"
shortcode:
recent_articles: "Recent"
recent_articles: "Recent projects"
recent:
show_more: "Show More"

View file

@ -39,7 +39,7 @@
{{ if not $disableImageOptimization }}
{{ $authorImage = $authorImage.Fill "288x288" }}
{{ end }}
<img class="mb-2 rounded-full h-36 w-36" width="144" height="144"
<img class="mb-2 rounded-full h-200 w-200" width="250" height="250"
alt="{{ $.Site.Author.name | default " Author" }}" src="{{ $authorImage.RelPermalink }}" />
{{ end }}
{{ end }}

View file

@ -14,7 +14,7 @@
{{ if not $disableImageOptimization }}
{{ $authorImage = $authorImage.Fill "288x288" }}
{{ end }}
<img class="mb-2 rounded-full h-36 w-36" width="144" height="144" alt="{{ $.Site.Author.name | default " Author" }}"
<img class="mb-2 rounded-full h-100 w-100" width="144" height="144" alt="{{ $.Site.Author.name | default " Author" }}"
src="{{ $authorImage.RelPermalink }}" />
{{ end }}
{{ end }}