0
私はジーケルサイトを作っていて、すべてが上品で素敵でした。その後、ブログをドメインのルートに移動することに決めました。今はジキルが私の記事を正しく解析しないように見えます。すべての書式が投稿内容から削除されます。ヘッダー、強調表示、すべてが文字列として出力されます。私のレイアウトファイルのHtmlタグはそのまま残っており、その他のものは期待どおりに動作しています。rootのブログループが書式設定/解析を中断する - ジキールのサイト
これは、ブログのループをレンダリング私のindex.htmlです:
---
layout: main
title: my title
---
{% for post in site.posts %}
<article>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<time datetime="{{ post.date | date: "%Y-%m-%d" }}"><span>{{ post.date | date_to_string }}</span></time>
{{ post.content | postmorefilter: post.url, "Read the rest of this entry" }}
</article>
{% endfor %}
そして、これは私の記事のレイアウト(journal.html)です:
---
layout: main
---
<article>
<h2>{{page.title}}</h2>
{{ page.content }}
</article>
私のポストはlayout: journal
私はgereratedサイトを削除し、停止し、ジキルと他の多くのものを開始しました。
提案がありますか?