user/config/site.yamlへ追記
author:
name: ocarina
email: gravatar登録のメールアドレス
metadata:
description: '絵が描けるボタン恐怖症インフラエンジニアです。'
user/themes/quark/templates/partials/sidebar.html.twig
他のサイドバーのコードの上に追加
{# 1. プロフィールセクション(新規追加) #}
<div class="sidebar-content">
<div class="author-profile" style="text-align: center; margin-bottom: 1.5rem;">
{% set email_hash = site.author.email|lower|trim|md5 %}
<img src="https://www.gravatar.com/avatar/{{ email_hash }}?s=120&d=identicon" style="border-radius: 50%; width: 80px; height: 80px; margin-bottom: 10px;">
<h4 style="margin-bottom: 5px;">{{ site.author.name }}</h4>
<p style="font-size: 0.85rem; line-height: 1.4; color: #666;">
{{ grav.config.site.metadata.description }}
</p>
</div>
</div>
<hr style="opacity: 0.2; margin: 1rem 0;">
./bin/grav clearcache --all