我的文件夹结构如下
index.html
post/
post1.html
post2.html
pages/
about.html
interior.html
exterior.html
gallery.html
post.html //listing blog post
contact.html
interior/
in1.html
in2.html
...
in5.html
exterior/
ex1.html
ex2.html
...
ex7.html
gallery/
img1,2,3,4
我的菜单结构是这样的
主页 | 关于我们 | 内饰 | 外观 | 画廊 | 帖子 | 接触
我通过列出页面集合来创建菜单,没关系!
.navigation
nav
ul.nav.topnav
li.dropdown.active
a(href='/')
| Home
each doc in getCollection('pages').toJSON()
- clazz = (document.url === doc.url) ? 'active' : null
li.dropdown(typeof="sioc:Page", about=doc.url, class=clazz)
a(href=doc.url, property="dc:title")= doc.title
如何通过列出内部/外部文件夹中的页面来为内部和外部添加子菜单项
预先感谢!