1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-26 12:42:30 +03:00
guide/templates/item-title.widget
2016-09-03 21:49:55 +03:00

28 lines
733 B
Plaintext

Description
============================================================
Item title; used when rendering an item in HTML or for the feed. (Includes the Hackage link and so on.)
Required context:
* item.link
item.name
item.kind.hackageName (optional)
HTML
============================================================
{{# item.link }}
<a href="{{item.link}}" class="item-name">{{item.name}}</a>
{{/ item.link }}
{{^ item.link }}
<span class="item-name">{{item.name}}</span>
{{/ item.link }}
{{! if the item is on Hackage, let's provide a link }}
{{# item.kind.hackageName }}
{{ hackageLink = [|https://hackage.haskell.org/package/{{.}}|] }}
(<a href="{{hackageLink}}">Hackage</a>)
{{/ item.kind.hackageName }}