このテーマの特徴
このHTMLテンプレートは、ブログ記事のアイキャッチ部分をデザインするためのものです。主な特徴は以下の通りです。
1. カスタマイズしやすいデザイン:
- CSS変数:
--bg-main
、--bg-secondary
、--text-main
、--text-back
、--accent-color
、--accent-color-2
などのCSS変数を用いて、背景色、テキストカラー、アクセントカラーなどを簡単に変更できます。 - カテゴリによるデザイン変更:
body.category-日記
のように、カテゴリごとに背景色を変更するなど、記事のカテゴリーに合わせてデザインを調整できます。 - 柔軟なレイアウト:
flex
を使用して、ヘッダー、メインコンテンツ、カテゴリなどの要素を簡単に配置できます。
2. 見栄えの良さ:
- 傾斜とクリッピング:
main-wrapper::before
とmain-wrapper::after
に対して、skewY
とclip-path
を用いることで、アイキャッチに傾斜とクリッピングを適用し、視覚的に魅力的なデザインを実現しています。 - アクセントカラー: アクセントカラーを
--accent-color
と--accent-color-2
に設定することで、デザインにアクセントを加え、目を引く効果を生み出しています。 - フォント:
Noto Sans CJK JP
を使用することで、日本語の表示が美しく、読みやすいデザインになっています。
3. ブログ記事の内容に合わせたデザイン:
- ブログタイトル:
blog-title
要素でブログタイトルを表示し、記事のテーマを明確に示します。 - カテゴリ:
category
要素で記事のカテゴリーを表示し、読者に記事の内容を理解させます。 - 記事タイトル:
entry-title
要素で記事タイトルを表示し、記事の内容をより詳細に示します。 - 記事本文の表示:
main
要素内に記事本文を配置するためのスペースが用意されています。
4. SEO対策:
5. Xのシェア機能への配慮:
- シェア時のタイトル表示:
main-wrapper
のpadding-bottom
に空白を用意することで、Xのシェア機能を使った際にアイキャッチの下にタイトル要素が重ねて表示されることを考慮しています。
総括:
このHTMLテンプレートは、ブログ記事のアイキャッチ部分をデザインするための、カスタマイズしやすい、見栄えの良い、SEO対策を施したテンプレートです。必要に応じて、画像の表示、レスポンシブデザイン、詳細なデザインカスタマイズなどを追加することで、より洗練されたアイキャッチを作成できます。
ソースコード
<!DOCTYPE html> <html lang="{BlogLanguage}"> <head> <meta charset="utf-8"> <style> :root { --bg-main: #FFF; --bg-secondary: #003368; --text-main: #003368; --text-back: #d4e3f0; --accent-color: #FF5733; /* メインカラー例 */ --accent-color-2: #FFC300; /* 補色例 */ --content-rounded: 12px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--bg-secondary); 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-back); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 30px; line-height: 1.3; font-weight: bold; color: var(--text-main); } .category span:empty { display:none; } /* メインコンテンツの設定 */ .main-wrapper { flex: 1; width: 100%; display: flex; padding-bottom: 56px; /* Xのシェア時には、アイキャッチの下部に タイトル要素が重ねて表示されるため空白を用意しておくことを推奨します */ } .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; } /* アイキャッチのデザイン */ .main-wrapper::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--accent-color); /* メインカラー */ z-index: -1; transform: skewY(-5deg); clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); } .main-wrapper::after { content: ""; position: absolute; bottom: 0; right: 0; width: 100%; height: 100%; background-color: var(--accent-color-2); /* 補色 */ z-index: -1; transform: skewY(5deg); clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%); } </style> </head> <body class="category-{FirstCategory}"> <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>