site_fursona_refs/tpl/cardbody.haml

53 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-06-25 06:20:44 +00:00
%dl.cardlisting
2019-12-28 14:10:02 +00:00
%dt
%span.title
%i.fa.fa-header{'aria-hidden': 'true'}
Title:
%dd.noticeablyLargerText
= info['name']
%dt
%span.date
%i.fa.fa-calendar-check-o{'aria-hidden': 'true'}
Completed on:
%dd
- with dt=info['date']
- include 'datefmt.html'
%dt
%span.artist
%i.fa.fa-paint-brush{'aria-hidden': 'true'}
Artist:
%dd.extraLineSpacing
- with artistkey=info['artist']
- with artist=artists[artistkey]
- include 'artist.html'
%dt
%span.technology
%i.fa.fa-wrench{'aria-hidden': 'true'}
Technology:
%dd.extraLineSpacing
- with tagkey=info['technology']
- with tag=tags[tagkey]
- include 'tag.html'
2020-06-25 23:54:52 +00:00
%dt.cardTags
2019-12-28 14:10:02 +00:00
%span.tags
%i.fa.fa-tags{'aria-hidden': 'true'}
Tags:
2020-06-25 23:54:52 +00:00
%dd.cardTags.extraLineSpacing
2019-12-28 14:10:02 +00:00
- for tagkey in info['tags']
- with tag=tags[tagkey]
- include 'tag.html'
- if info['link']
2020-06-25 23:54:52 +00:00
%dt.cardLink
2019-12-28 14:10:02 +00:00
%span.link
%i.fa.fa-link{'aria-hidden': 'true'}
Link:
2020-06-25 23:54:52 +00:00
%dd.cardLink
2019-12-28 16:55:36 +00:00
%a{'href': '{{info["link"]}}', 'target': '_blank', 'rel': 'noreferrer'}
2020-06-25 06:20:44 +00:00
= info['link']
- if info['notes']
2020-06-25 23:54:52 +00:00
%dt.cardNotes
2020-06-25 06:20:44 +00:00
%span.tags
%i.fa.fa-sticky-note{'aria-hidden': 'true'}
Notes:
2020-06-25 23:54:52 +00:00
%dd.cardNotes.markdown
2020-06-25 06:20:44 +00:00
= info['notes']|markdown