diff options
| -rw-r--r-- | SHORTCODES.md | 2 | ||||
| -rw-r--r-- | themes/danix-xyz-hacker/layouts/repository/list.html | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/SHORTCODES.md b/SHORTCODES.md index a7e86c8..7164fe6 100644 --- a/SHORTCODES.md +++ b/SHORTCODES.md @@ -17,7 +17,7 @@ Display an avatar from Gravatar based on an email address hash. This shortcode r | Parameter | Required | Description | |-----------|----------|-------------| | email | Yes | Email address for Gravatar lookup | -| size | No | Avatar size in pixels (default: 256) | +| size | No | Avatar size in pixels (default: 256). Internally converted to integer for correct Gravatar API formatting. | | alt | No | Alt text for accessibility (default: "User avatar") | | class | No | Custom CSS classes (default: "w-32 h-32 rounded-full") | diff --git a/themes/danix-xyz-hacker/layouts/repository/list.html b/themes/danix-xyz-hacker/layouts/repository/list.html index 2ed6b5f..0ce88c1 100644 --- a/themes/danix-xyz-hacker/layouts/repository/list.html +++ b/themes/danix-xyz-hacker/layouts/repository/list.html @@ -1,6 +1,5 @@ {{ define "main" }} -<main class="min-h-screen px-4 py-12"> - <article class="mx-auto px-4 py-12 max-w-4xl border border-border glow-accent rounded-lg bg-bg p-8"> +<div class="mx-auto px-4 py-12 max-w-5xl bg-bg"> <!-- Breadcrumb --> {{ partial "breadcrumb.html" . }} @@ -72,6 +71,5 @@ {{ end }} </div> </section> - </article> -</main> +</div> {{ end }} |
