浏览代码

Fix #5 handle standard "author: name" in YAML

master
父节点
当前提交
4a12c185a5
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. +1
    -3
      inst/bulma/bulma.html

+ 1
- 3
inst/bulma/bulma.html 查看文件

@@ -105,15 +105,13 @@ $endif$ <!-- bulma.hero_links -->
$for(author)$
<div class="level-item has-text-centered">
<div>
$if(author.name)$
<p class="title is-5">
$if(author.url)$
<a href="$author.url$">$author.name$</a>
$else$
$author.name$
$if(author.name)$$author.name$$else$$author$$endif$
$endif$
</p>
$endif$
$if(author.extra)$
<p class="subtitle is-6">
$for(author.extra)$$author.extra$$sep$<br>$endfor$

正在加载...
取消
保存