ブログ記事を彩る洗練されたアイキャッチテンプレート

image0

このテーマの特徴

このHTMLテンプレートは、ブログ記事のアイキャッチをデザインするためのものです。以下に、テンプレートの特徴を詳しく説明します。

1. カスタマイズ可能なデザイン:

  • カラーテーマ: --bg-main, --bg-secondary, --text-main, --text-back, --accent-color, --border-colorといったCSS変数を用いることで、背景色、文字色、アクセントカラーなどを簡単に変更できます。
  • フォント: 'Noto Sans CJK JP', serif により、日本語に対応した明瞭な書体を使用しています。
  • レイアウト: flex を使用して、ヘッダー、コンテンツ、カテゴリなどを柔軟に配置できます。
  • 丸み: border-radius を使って、コンテンツ部分に丸みをつけ、優しい印象を与えています。
  • 影: box-shadow を使うことで、コンテンツに奥行きを与え、視覚的に強調しています。

2. ブログ情報表示:

  • ブログタイトル: {BlogTitle} にブログのタイトルを記述します。
  • ブログアイコン: icon セクションに、ブログのアイコンとなるSVG画像を挿入できます。
  • カテゴリ: {FirstCategory} に最初のカテゴリ名が表示されます。bodyclass 属性に category-{FirstCategory} を追加することで、カテゴリ別に背景色を変更することもできます。

3. 記事情報表示:

  • 記事タイトル: {Title} に記事のタイトルを表示します。
  • 複数行対応: entry-title のスタイルは、長いタイトルでも複数行にわたって表示し、かつ途中で "..." で省略されるように設定されています。

4. その他の特徴:

  • レスポンシブデザイン: box-sizing: border-box により、デバイス幅に合わせてレイアウトが自動調整されます。
  • 可読性向上: 適切なフォントサイズ、行間、文字間隔を設定し、読みやすいように配慮しています。
  • アクセシビリティ: alt 属性を使用して、画像の代替テキストを提供しています。

5. 使用例:

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="utf-8">
    <title>私のブログ</title>
    <style>
      /* ... (CSSコード) ... */
    </style>
  </head>
  <body class="category-日記">
    <div class="header">
      <div class="icon">
        <!-- SVGアイコンを挿入 -->
      </div>
      <div class="blog-title">
        <div class="title">私のブログ</div>
      </div>
      <div class="spacer"></div>
      <div class="category">
        <span>日記</span>
      </div>
    </div>
    <div class="main-wrapper">
      <div class="main">
        <div class="entry-title">今日の夕飯はカレーでした!</div>
      </div>
    </div>
  </body>
</html>

このテンプレートをベースに、ブログのデザインに合わせてカスタマイズすることで、魅力的なアイキャッチを作成できます。

ソースコード

<!DOCTYPE html>
<html lang="{BlogLanguage}">
  <head>
    <meta charset="utf-8">
    <style>
      :root {
        --bg-main: #FFF;
        --bg-secondary: #F0E68C; /* マスタードイエロー */
        --text-main: #333;
        --text-back: #F5F5F5; 
        --accent-color: #707070; /* グレー */
        --border-color: #D3B565; /* テラコッタ */
        --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', serif; /* serifフォントを追加 */
        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);
        border: 4px solid var(--border-color); /* テラコッタの枠線を追加 */
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1); /* 影を追加 */
      }
      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%;
        text-align: left; /* 左寄せ */
      }
      .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%;
        text-align: right; /* 右寄せ */
      }
      .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(--accent-color); /* グレーの文字色 */
      }
      .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: left; /* 左寄せ */
      }
      .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;
      }
    </style>
  </head>
  <body class="category-{FirstCategory}">
    <div class="header">
      <div class="icon">
        <!-- SVGかbase64化した画像のみ挿入することが可能です -->
        <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>