「テンプレート:小売・店舗ジャンルページ」の版間の差分
提供: 川西図鑑
その他の操作
ページの作成:「<templatestyles src="検索結果カード/styles.css" /> <templatestyles src="飲食店一覧ページ/styles.css" /> {{パンくずリスト|1=小売・店舗検索|2={{{genre}}}}} <div class="search-intro"> <p> 川西市で人気の<strong>{{{genre}}}</strong>を一覧でご紹介しています。 </p> <p> 下の検索フォームを使えば、さらに条件を絞り込んで探すこともできます。 </p> </div> == 検索条件 == <!-- 検…」 |
編集の要約なし |
||
| (同じ利用者による、間の4版が非表示) | |||
| 12行目: | 12行目: | ||
== 検索条件 == | == 検索条件 == | ||
<!-- 検索ボックス --> | <!-- 検索ボックス --> | ||
{{検索UI/ | {{検索UI/小売・店舗|action=/wiki/小売・店舗検索}} | ||
<html> | <html> | ||
<script> | <script> | ||
| 47行目: | 47行目: | ||
}); | }); | ||
form.action = '/wiki/ | form.action = '/wiki/小売・店舗検索'; | ||
const titleEl = document.querySelector('.mw-page-title-main'); | const titleEl = document.querySelector('.mw-page-title-main'); | ||
const genre = titleEl ? titleEl.textContent.trim() : ' | const genre = titleEl ? titleEl.textContent.trim() : '小売・店舗'; | ||
// タイトル生成 | // タイトル生成 | ||
let title = ` | let title = `川西市でおすすめの${genre}をご紹介! | 川西図鑑`; | ||
// タイトル更新 | // タイトル更新 | ||
document.title = title; | document.title = title; | ||
| 70行目: | 70行目: | ||
// description生成 | // description生成 | ||
let desc = `「川西図鑑」では、兵庫県川西市で人気の${genre} | let desc = `「川西図鑑」では、兵庫県川西市で人気の${genre}を ${count}掲載中。営業時間、アクセス、写真、地図などの詳細情報をまとめています。複数の条件で絞り込みができ、地元でおすすめのお店が見つかります。`; | ||
let meta = document.querySelector("meta[name='description']"); | let meta = document.querySelector("meta[name='description']"); | ||