我是mezzanine的新手,我设法安装我的自定义引导主题,只是在我的django应用程序中的亲戚文件夹中复制模板和静态文件。
假设我的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>
如何获取我之前在管理页面中插入的博客条目?
由于
答案 0 :(得分:3)
在模板顶部放置:
{% load blog_tags %}
然后,无论您希望博客帖子显示在哪里,都会显示如下内容
{% blog_recent_posts as recent_posts %}
{% for blog_post in recent_posts %}
<h3>{{ blog_post.title }}</h3>
{{ blog_post.description_from_content|truncatewords_html:10|safe }}
<a href="{{ blog_post.get_absolute_url }}">Read more</a>
</article>
{% endfor %}
无耻插头: 我正在编写一系列博客文章,介绍我如何为Mezzanine创建主题的过程。看看,http://bitofpixels.com/blog/mezzatheming-creating-mezzanine-themes-part-1-basehtml/