1

レイアウトで front matter を使用する際に問題があります。レイアウトに必要なデータを作成せずに、ページの前付けを表示するだけです。

コードは次のとおりです。

/src/_includes/layouts/base.html

---
rightLinks : [
        {
            "icon": "mail_outline",
            "href": "https://google.com"
        }
    ]
---
<!DOCTYPE html>
<html lang="es-AR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>{{ title }}</title>
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
      rel="stylesheet">
  <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700;1,900&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="/css/global.css">
</head>
<body>
  <!-- top-nav try to use rightLinks data from this layout -->
  {% include "partials/top-nav.html" %}
  {% include "partials/main-nav.html" %}
  <main tabindex="-1" id="main-content">{% block content %}{% endblock %}</main>
</body>
</html>

/src/_includes/layouts/home.html

{% extends "layouts/base.html" %} 
{% block content %}

<section class="hero is-black is-fullheight-with-navbar hero-home">
  <div class="hero-body">
    <div class="container">
      <div>
        <h1 class="title text-black text-huge">
          Nexus Materiales Eléctricos
        </h1>
        <h2 class="subtitle is-4">
          Somos mayoristas en insúmos eléctricos de calidad.
        </h2>
      </div>
      <div class="mt-6">
        <a href="/marcas" class="button is-rounded is-large is-dark is-uppercase text-semi-black">
          ver marcas
        </a>
      </div>
    </div>
  </div>
</section>

<section class="section has-background-white">
  <h2 class="title">Nuestras marcas destacadas</h2>
  <h3 class="subtitle">Calidad y seguridad</h3>
</section>

{% endblock %}

/src/index.md

---
title: 'Hello World!'
layout: 'layouts/home'
---

視覚的な結果として、実際の文字列が上部に表示されます。 ここに画像の説明を入力

イレブンティはなぜか前付を飛ばしているように思えます。

これが私の Eleventy 構成ファイルです。

module.exports = function(config) {
    config.addWatchTarget("./src/sass/");
    config.addPassthroughCopy('./src/images')

    // Return your Object options:
    return {
        dir: {
            input: "src",
            output: "dist"
        },
        markdownTemplateEngine: 'njk',
        dataTemplateEngine: 'njk',
        htmlTemplateEngine: 'njk',
    }
  };

誰かが私になぜこれが起こっているのか説明できますか、どうすればこれを解決できますか? ありがとう

4

1 に答える 1