` は最も低いセクションレベルです。
+
+# H1
+
+## H2
+
+### H3
+
+#### H4
+
+##### H5
+
+###### H6
+
+## パラグラフ
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+## Blockquotes
+
+`blockquote` 要素は他のソースから引用された内容を表し、オプションとして引用元を `footer` 要素または `cite` 要素内に記述します。注釈や省略形などのインライン変更を記述することもできます。
+
+### Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use _Markdown syntax_ within a blockquote.
+
+### Blockquote with attribution
+
+> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1]
+
+[^1]: The above quote is excerpted from Rob Pike's [talk `about` nothing](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## 表
+
+表はMarkdownのコア仕様には含まれていませんが、Hugoはサポートしています。
+
+| 名前 | 年齢 |
+| ----- | --- |
+| Bob | 27 |
+| Alice | 23 |
+
+### 表中のMarkdown
+
+| Italics | Bold | Code |
+| --------- | -------- | ------ |
+| _italics_ | **bold** | `code` |
+
+## Code Blocks
+
+### Code block with backticks
+
+```html
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+```
+
+### Code block indented with four spaces
+
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+
+### Code block with Hugo's internal highlight shortcode
+
+{{< highlight html "linenos=table,hl_lines=4 7-9" >}}
+
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+{{< /highlight >}}
+
+## リスト
+
+### 順序付きリスト
+
+1. First item
+2. Second item
+3. Third item
+
+### 順序なしリスト
+
+- List item
+- Another item
+- And another item
+
+### ネストしたリスト
+
+- Fruit
+ - Apple
+ - Orange
+ - Banana
+- Dairy
+ - Milk
+ - Cheese
+
+## その他の要素 — abbr, sub, sup, kbd, mark
+
+GIFはビットマップ形式の画像です.
+
+H2O
+
+Xn + Yn = Zn
+
+CTRL+ALT+Deleteを押下してください。
+
+ほとんどのサンショウウオは夜行性で、昆虫やミミズなどの小さな生き物を狩る。
diff --git a/exampleSite/content/samples/mathematical-notation/index.ja.md b/exampleSite/content/samples/mathematical-notation/index.ja.md
new file mode 100644
index 00000000..c12d1341
--- /dev/null
+++ b/exampleSite/content/samples/mathematical-notation/index.ja.md
@@ -0,0 +1,46 @@
+---
+title: 数学的表記
+date: 2019-03-08
+description: Congoによる数学的表記の簡単なサンプル
+tags: ["sample", "katex", "maths", "shortcodes"]
+---
+
+記事中の数学的表記にKaTeXを使用することができます。
+
+
+
+{{< katex >}}
+
+Congoは、数学的表記を使用する場合にのみ、KaTeXアセットをプロジェクトにバンドルします。これを動作させるには、単に記事内に[`katex` ショートコード]({{< ref "docs/shortcodes#katex" >}})をインクルードしてください。そのページ上のKaTeX構文は自動的にレンダリングされます。
+
+使用可能な構文については、[supported TeX functions](https://katex.org/docs/supported.html)のオンラインリファレンスを参照してください。
+
+## インライン記法
+
+インライン記法は、式を `\\(` と `\\)` で囲むことで生成できます。
+
+**例:**
+
+```tex
+% KaTeX inline notation
+インライン記法: \\(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\\)
+```
+
+インライン記法: \\(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\\)
+
+## ブロック記法
+
+あるいは、 `$$` を使ってブロック記法で生成することもできます。これは式を独自のHTMLブロックとして出力します。
+
+**例:**
+
+```tex
+% KaTeX block notation
+$$
+ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
+$$
+```
+
+$$
+ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
+$$
diff --git a/exampleSite/content/samples/placeholder-text/index.ja.md b/exampleSite/content/samples/placeholder-text/index.ja.md
new file mode 100755
index 00000000..9f3f4208
--- /dev/null
+++ b/exampleSite/content/samples/placeholder-text/index.ja.md
@@ -0,0 +1,39 @@
+---
+title: "プレースホルダー"
+date: "2019-03-09"
+lastmod: "2022-01-24"
+draft: true
+description: "Lorem Ipsum Dolor Si Amet"
+tags: ["markdown", "text", "sample", "latin"]
+showDateUpdated: true
+xml: false
+---
+
+Lorem est tota propiore conpellat pectoribus de pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+1. Exierant elisi ambit vivere dedere
+2. Duce pollice
+3. Eris modo
+4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
+
+1. Comas hunc haec pietate fetum procerum dixit
+2. Post torum vates letum Tiresia
+3. Flumen querellas
+4. Arcanaque montibus omnes
+5. Quidem et
+
+## Vagus elidunt
+
+
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+### Mane refeci capiebant unda mulcebat
+
+Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, _oculos nomen_ non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
diff --git a/exampleSite/content/samples/rich-content/index.ja.md b/exampleSite/content/samples/rich-content/index.ja.md
new file mode 100755
index 00000000..814e9c36
--- /dev/null
+++ b/exampleSite/content/samples/rich-content/index.ja.md
@@ -0,0 +1,37 @@
+---
+title: "リッチコンテンツ"
+date: 2019-03-10
+description: "リッチコンテンツに関する簡単な説明"
+summary: "**リッチ** なコンテンツの _一例_"
+coverAlt: "いくつかの人気メディアのアイコンを描いたカバー画像の例。"
+coverCaption: "これはキャプション付きの `cover` 画像の例です。"
+tags: ["shortcodes", "privacy", "sample", "gist", "twitter", "youtube", "vimeo"]
+---
+
+Hugoには、リッチコンテンツのためのいくつかの[組み込みショートコード](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes)と、[プライバシー設定](https://gohugo.io/about/hugo-and-gdpr/)、そして様々なソーシャルメディアの埋め込みを静的に可能にする _simple shortcodes_ のセットが同梱されています。
+
+## YouTube
+
+以下は、組み込みの `youtube` ショートコードを使用した例です。
+
+{{< youtube ZJthWmvUzzc >}}
+
+## Twitter
+
+この例では `twitter_simple` ショートコードを使っています。 `user` と `id` の2つの名前付きパラメーターが必要です。
+
+{{< twitter_simple user="DesignReviewed" id="1085870671291310081" >}}
+
+`tweet` ショートコードを使えば、完全にマークアップされたTwitterカードを埋め込むこともできます。
+
+## Gist
+
+`gist` ショートコードを使うと、GitHubのGistを埋め込むことができます。ユーザー名とGistのIDというパラメーターが必要です。
+
+{{< gist jpanther a873e1219ffeaa80a926bbe8255f348e >}}
+
+## Vimeo
+
+`vimeo_simple` ショートコードでVimeoの動画を埋め込むことができます。
+
+{{< vimeo_simple 48912912 >}}
diff --git a/exampleSite/content/samples/rich-content/index.md b/exampleSite/content/samples/rich-content/index.md
index 4f750427..82f02c69 100755
--- a/exampleSite/content/samples/rich-content/index.md
+++ b/exampleSite/content/samples/rich-content/index.md
@@ -1,7 +1,7 @@
---
title: "Rich Content"
date: 2019-03-10
-description: "A brief description of Hugo Shortcodes"
+description: "A brief description of Rich Content"
summary: "This is an _example_ of a **rich** content summary."
coverAlt: "An example cover image depicting icons of some popular media organisations."
coverCaption: "This is an example cover image with a caption."
diff --git a/exampleSite/content/tags/_index.ja.md b/exampleSite/content/tags/_index.ja.md
new file mode 100644
index 00000000..538d9249
--- /dev/null
+++ b/exampleSite/content/tags/_index.ja.md
@@ -0,0 +1,9 @@
+---
+title: Tags
+---
+
+CongoはHugoのTaxonomiesを完全にサポートしており、どのようなTaxonomiesの設定にも適応します。Taxonomiesのリストは、用語リストの上に表示されるカスタムコンテンツもサポートしています。
+
+この領域は各Taxonomyに説明的なテキストを追加するために使用することができます。このコンセプトをさらに発展させる方法について、以下の[Tags/advanced]({{< ref "advanced" >}})も参照してください。
+
+---
diff --git a/exampleSite/content/tags/advanced/_index.ja.md b/exampleSite/content/tags/advanced/_index.ja.md
new file mode 100644
index 00000000..e26b8a0c
--- /dev/null
+++ b/exampleSite/content/tags/advanced/_index.ja.md
@@ -0,0 +1,7 @@
+---
+title: advanced
+---
+
+これは高度なタグです。Congoの他のリスティングページと同様に、個々のTaxonomy Termにカスタムコンテンツを追加することができ、Term Listの上部に表示されます。 :rocket:
+
+また、これらのコンテンツページを使用して、SEOやその他の目的で使用されるタイトルや説明文などのHugoのメタデータを定義することもできます。
diff --git a/exampleSite/content/users/index.ja.md b/exampleSite/content/users/index.ja.md
new file mode 100644
index 00000000..f37e50c0
--- /dev/null
+++ b/exampleSite/content/users/index.ja.md
@@ -0,0 +1,72 @@
+---
+title: "利用例"
+date: 2020-08-14
+draft: false
+description: "Congoの実用例。"
+slug: "users"
+tags: ["users", "sample"]
+showDate: false
+showAuthor: false
+showReadingTime: false
+showEdit: false
+---
+
+{{< lead >}}
+Congoを使用して構築された実際のウェブサイト。
+{{< /lead >}}
+
+以下は、Congoを使って構築されたウェブサイトのほんの一握りです。このテーマでできることの素晴らしさをご覧ください。
+
+| Website | Details |
+| ---------------------------------------------------------------------- | ------------------------------- |
+| [jamespanther.com](https://jamespanther.com) | Personal site - **Theme author**|
+| [antoinesoetewey.com](https://antoinesoetewey.com/) | Personal site |
+| [leif.io](https://leif.io/) | Personal site and Tech blog |
+| [dr460nf1r3.org](https://dr460nf1r3.org/) | Personal site and Blog |
+| [OCram85.com](https://ocram85.com) | Personal site and Blog |
+| [mackiser.github.io](https://mackiser.github.io) | Personal site and Blog |
+| [jamesmillner.dev](https://jamesmillner.dev) | Personal site and Blog |
+| [jeremic.ca](https://jeremic.ca) | Personal site and Blog |
+| [rohn.tech](https://rohn.tech) | Personal site |
+| [klimafreundlicher-kochen.de](https://www.klimafreundlicher-kochen.de) | Food blog (in German) |
+| [seyslee.github.io](https://seyslee.github.io) | Tech blog (in Korean) |
+| [datanalyze.be](https://datanalyze.be/) | Professional site |
+| [sneaky-potato.github.io](https://sneaky-potato.github.io/) | Professional site and Blog |
+| [kelset.dev](https://kelset.dev) | Personal site |
+| [docteurelsavancaster.com](https://docteurelsavancaster.com/) | Professional site |
+| [ruihao-li.github.io](https://ruihao-li.github.io/) | Personal site and Blog |
+| [phalanxhead.dev](https://phalanxhead.dev) | Personal site and Blog |
+| [Bible Multi Apps](https://hotlittlewhitedog.gitlab.io/biblemulti) | Personal site and Blog |
+| [Jh123x](https://jh123x.com/) | Personal site and Blog |
+| [sforzando LLC. and Inc.](https://sfz.dev/) | Corporate site and Blog |
+| [aidansmith.me](https://aidansmith.me/) | Personal Site |
+| [nunocoracao.com](https://nunocoracao.com) | Personal site and Blog |
+| [szegedkungfu.hu](https://balance-se.github.io/) | Sports association site |
+| [jcransom.com](https://www.jcransom.com/) | Personal Site and Blog |
+| [cbrincoveanu.com](https://www.cbrincoveanu.com/) | Personal site and Blog |
+| [medical-humanities](https://medical-humanities.org) | Academic site |
+| [boyersnet.com](https://boyersnet.com) | Personal site and Blog |
+| [major.io](https://major.io) | Personal site and Blog |
+| [bayas.dev](https://bayas.dev) | Personal site and Blog |
+| [顾宇的博客](https://www.guyu.me/) | Personal Blog (in Chinese) |
+| [cgutierr-zgz.github.io](https://cgutierr-zgz.github.io/) | Personal site and Tech blog |
+| [adam.sr](https://adam.sr) | Personal site and Blog |
+| [datadi.murgi.org](https://datadi.murgi.org) | Personal site and Blog |
+| [shim.web.id](https://shim.web.id) | Personal Blog (in Indonesian) |
+| [kpavlov.me](https://kpavlov.me) | Personal site and Blog |
+| [pfisterer.dev](https://pfisterer.dev) | Personal site and Blog |
+| [davidrothera.me](https://davidrothera.me) | Personal site and Blog |
+| [ethantroy.com](https://ethantroy.com) | Personal Site and Blog |
+| [sug.bitprism.net](https://sug.bitprism.net) | Personal Site and Blog |
+| [arjuns.me](https://arjuns.me) | Personal Site and Blog |
+| [statistix.be](https://statistix.be/) | Professional site |
+| [sathyabh.at](https://sathyabh.at) | Personal Site and Blog |
+| [leonidasv.com](https://leonidasv.com/) | Personal site and Blog |
+| [andrew-jones.com](https://andrew-jones.com/) | Personal site and tech blog |
+| [nikita.computer](https://nikita.computer/) | Personal site and tech blog |
+| [blog.dejavu.moe](https://blog.dejavu.moe/) | Personal blog and weekly issues |
+| [spiffyeight77.com](https://spiffyeight77.com/) | Personal blog |
+| [Tomy's Blog](https://blog.tomy.me) | Personal site and Blog |
+| [Beerjoa Blog](https://blog.beerjoa.dev) | Personal site and Blog |
+
+**Congoを使っていますか?** あなたのウェブサイトを加えるために[Pull Request](https://github.com/jpanther/congo/blob/dev/exampleSite/content/users/index.md)を投げてください。