我是夹层的新手,我设法安装了我的自定义引导主题,只是在我的 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>
如何获取我之前在管理页面中插入的博客条目?
谢谢