このテーマの特徴
このHTMLテンプレートは、ブログ記事のアイキャッチ画像として使用できる、スタイリッシュで視覚的に魅力的なデザインとなっています。以下に、テンプレートの特徴を詳しく説明します。
1. カスタマイズ可能なデザイン
- 背景とグラデーション: 背景には画像を設定し、その上にグラデーションを重ねることで、視覚的な奥行きと洗練された雰囲気を演出しています。背景画像は自由に変更でき、グラデーションの色も
--bg-gradient-start
と--bg-gradient-end
を調整することでカスタマイズ可能です。 - カラーテーマ: テンプレートは、
--bg-main
,--text-main
,--text-sub
などの変数を用いて、色を簡単に変更できます。これにより、ブログのテーマや記事の内容に合わせて色調を調整することができます。 - カテゴリによるカスタマイズ:
body.category-日記
のように、カテゴリ名でスタイルを指定することが可能です。これにより、特定のカテゴリの記事に異なる背景色やデザインを適用できます。 - コンテンツの丸み:
--content-rounded
変数で、コンテンツエリアの角の丸みを調整できます。
2. 見やすく整理されたレイアウト
- ヘッダー: ブログタイトル、アイコン、カテゴリを表示するヘッダーは、中央揃えでバランス良く配置されています。
- メインコンテンツ: メインコンテンツは、左側に配置され、記事のタイトルが大きく表示されます。
- フォント:
Noto Sans CJK JP
を使用することで、日本語に最適化された読みやすいフォントを採用しています。 - 行間:
line-height: 1.4
を設定することで、行間を調整し、読みやすさを向上させています。
3. SEO に配慮した構造
- HTML構造: 適切な HTML タグを使用することで、SEO に有利な構造となっています。
- メタデータ:
<meta charset="utf-8">
と<html lang="{BlogLanguage}">
を設定することで、ブラウザへの適切な情報を提供しています。
まとめ
この HTML テンプレートは、カスタマイズ可能なデザイン、見やすく整理されたレイアウト、SEO に配慮した構造、モバイル対応など、ブログ記事のアイキャッチ画像として使用するために必要な要素を備えています。ブログのテーマや記事の内容に合わせてカスタマイズすることで、より魅力的なアイキャッチ画像を作成することができます。
ソースコード
<!DOCTYPE html> <html lang="{BlogLanguage}"> <head> <meta charset="utf-8"> <style> :root { --bg-main: #f5f5f5; /* 明るいグレー */ --bg-gradient-start: #667eea; /* グラデーション開始色 */ --bg-gradient-end: #778beb; /* グラデーション終了色 */ --text-main: #222; /* 黒に近いグレー */ --text-sub: #555; /* グレー */ --content-rounded: 12px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--bg-main); color: var(--text-main); font-weight: normal; font-family: 'Noto Sans CJK JP'; min-height: 100vh; display: flex; flex-direction: column; padding: 24px 24px; line-height: 1.4; word-break: break-word; } /* カテゴリによるカスタマイズ */ body.category-日記 { background-color: #fff; } body > div { background-color: var(--bg-main); } body > div:first-child { border-radius: var(--content-rounded) var(--content-rounded) 0 0; } body > div:last-child { border-radius: 0 0 var(--content-rounded) var(--content-rounded); } /* ヘッダの設定 */ .header { width: 100%; display: flex; justify-content: center; align-items: center; padding-top: 18px; } .header > :first-child { margin-left: 24px; } .header > :last-child { margin-right: 24px; } .header .base { display: flex; flex-direction: row; align-items: center; } .icon > svg, .icon > img { border-radius: 50%; width: 64px; margin-right: 12px; } .blog-title { max-width: 60%; } .blog-title .title { font-size: 48px; font-weight: bold; color: var(--text-main); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .spacer { flex-grow: 1; } .category { display: flex; justify-content: center; gap: 15px; max-width: 25%; } .category span { display: block; box-sizing: border-box; padding: 2px 12px; border-radius: 8px; background-color: var(--text-sub); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 30px; line-height: 1.3; font-weight: bold; color: var(--bg-main); } .category span:empty { display:none; } /* メインコンテンツの設定 */ .main-wrapper { flex: 1; width: 100%; display:flex; padding-bottom: 56px; } .main { width: 75%; display: flex; flex-direction: column; justify-content: center; margin: 20px auto 8px; overflow: hidden; text-align: center; } .entry-title { display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap : break-word; word-break: auto-phrase; color: var(--text-main); font-size: 56px; line-height: 1.3; font-weight: bold; } /* 背景画像とグラデーション */ .background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background-image: url("https://www.freepik.com/free-vector/abstract-futuristic-background-with-glowing-lines-dark-blue-color-gradient_14466433.htm"); /* 例としてフリー素材のURLを指定 */ background-size: cover; background-position: center; background-repeat: no-repeat; filter: blur(8px); /* ぼかし効果 */ } .gradient-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end)); opacity: 0.7; /* 透明度 */ } </style> </head> <body class="category-{FirstCategory}"> <div class="background"></div> <div class="gradient-overlay"></div> <div class="header"> <div class="icon"> <svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"> <path d="M45,90A45,45,0,1,1,90,45,45.05,45.05,0,0,1,45,90ZM45,5.723A39.278,39.278,0,1,0,84.281,45,39.322,39.322,0,0,0,45,5.723Z" fill="#333"></path> <path d="M50.241,22.78a63.54,63.54,0,0,1-4.22-11.3V43.349a2.938,2.938,0,1,1-1.879-.051V11.442A63.6,63.6,0,0,1,39.914,22.78a115.111,115.111,0,0,1-7.739,13.113l2.746,37.579s2.61,2.913,10.151,2.916h.01c7.54,0,10.151-2.916,10.151-2.916l2.746-37.579A115.02,115.02,0,0,1,50.241,22.78Z" fill="#333"></path> </svg> </div> <div class="blog-title"> <div class="title">{BlogTitle}</div> </div> <div class="spacer"></div> <div class="category"> <span>{FirstCategory}</span> </div> </div> <div class="main-wrapper"> <div class="main"> <div class="entry-title">{Title}</div> </div> </div> </body> </html>