From d56735f9bd754bfceee58bc9a2fc39054e5a6e6f Mon Sep 17 00:00:00 2001 From: Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com> Date: Mon, 21 Sep 2026 14:25:05 +0900 Subject: astro.config.mjs: 年度グループの先頭リンクを「一覧」にする MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 年度グループの中の先頭項目が、グループ名と同じ「令和8年度」になっていたため 「一覧」に改めた。一般質問・委員会・請願の各一覧と同じ表記にそろえた。 --- astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index b11ffe5..c71827b 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -299,7 +299,7 @@ function year(dir, label, months) { "3gatu": "3月定例会", }; const items = []; - items.push({ label: `${label}`, link: `ippan-situmon/${dir}/` }); + items.push({ label: "一覧", link: `ippan-situmon/${dir}/` }); for (const m of months) { items.push({ label: MONTHS[m], -- cgit v1.3.1