2013-09-01 44 views
1

我是新來的夾層,我設法安裝了我的自定義引導主題,只需將模板和靜態文件複製到我的django應用程序的親戚文件夾中即可。使用bootstrap自定義主題和夾層獲取博客條目

假設在我的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> 

一些博客條目我如何獲取我的博客文章,我在管理頁面以前插入?

感謝

回答

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/