Initial commit: Rapport Website (Hugo + Hextra)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-26 11:52:03 +02:00
commit e007bdd4e7
480 changed files with 41697 additions and 0 deletions
@@ -0,0 +1,43 @@
---
title: 詳細
---
折りたたみ可能なコンテンツを表示するための組み込みコンポーネントです。
<!--more-->
## 例
{{< details title="詳細" >}}
これは詳細のコンテンツです。
Markdown は **サポートされています**
{{< /details >}}
{{< details title="クリックして表示" closed="true" >}}
これはデフォルトで非表示になります。
{{< /details >}}
## 使用方法
````markdown
{{</* details title="詳細" */>}}
これは詳細のコンテンツです。
Markdown は **サポートされています**。
{{</* /details */>}}
````
````markdown
{{</* details title="クリックして表示" closed="true" */>}}
これはデフォルトで非表示になります。
{{</* /details */>}}
````