私はメザニンを初めて使用します。djangoアプリのrelativesフォルダーにテンプレートと静的ファイルをコピーするだけで、カスタムブートストラップテーマをインストールできました。
私のindex.htmlに、次のようなブログエントリがあると仮定します
<h2>Other Entries</h2>
<article>
<h3>Blog Post 1</h3>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.... <a href="#">Read more</a></p>
</article>
<article>
<h3>Blog Post 2</h3>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.... <a href="#">Read more</a></p>
</article>
<article>
<h3>Blog Post 3</h3>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.... <a href="#">Read more</a></p>
</article>
以前に管理ページに挿入したブログ エントリを取得するにはどうすればよいですか?
ありがとう