我正在 Jekyll 中编写一个使用 Liquid 的网站。
我有一些我想看起来像这样的页面的头条:
---
title: Designing algorithms that scale horizontally
speaker: Luke Ehresman, CopperEgg
category: notes.mongodallas.talks
links:
- demo: http://www.github.com/copperegg/mongo-scaling-demo
layout: talknotes
---
在 Liquid 中,YAML 的链接部分如下所示:
[{'demo' => 'http://www.github.com/copperegg/mongo-scaling-demo' }]
我希望能够遍历数组,做这样的事情:
<a href="{{ link.value }}">{{ link.key }}</a>
但到目前为止,我的任何想法都让我失望了。