使用Docpad和Jade列出帖子

时间:2013-05-22 08:05:19

标签: pug docpad

我尝试从博客目录中的另一个目录中列出我的博客文章内容,它只输出.jade文件的玉内容而不是呈现的HTML内容。

博客目录 - > travel.html.jade,travel dir - > fristtrip.html.jade。

以下是来自 docpad.coffee

的我的收藏
blog: (database) ->
      database.findAllLive({pageOrder: $exists: true}, [pageOrder:1,title:1])
travel: (travel) ->
      travel.findAllLive({relativeOutDirPath:'blog/travel'},[date:-1])

博客目录

中的 travel.html.jade 文件
---
title: all of my trips
layout: page
tags: ['intro','page']
pageOrder: 1
dynamic: true
---

h2 All of my trips

nav.linklist
  each doc in getCollection('travel').toJSON()
    li
      h3 
        a(href=doc.url)= doc.title
      // =doc.contentRenderedWithouthLayout
      !=doc.content     //problem come here
      span= doc.date.toDateString()

输出HTML博客页面

All of my trips

My first trip 
p | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.  
p | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 
p | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum....

请注意我的firsttrip.html.jade中的p标记,而不是呈现的HTML内容

我尝试使用此链接https://github.com/bevry/docpad/issues/167解决。我使用了!{doc.contentRendered} !{doc.contentRenderedWithoutLayout} 但它没有放任何东西

顺便说一下,我有另外两个问题?

如何限制输出内容,例如:每个帖子250个字符?

如何对旅游页面进行分页,因为我有这么多帖子?

1 个答案:

答案 0 :(得分:0)

这对我来说很好:

text(render="jade")
  != doc.content