site_fursona_refs/tpl/cardbody.haml

53 lines
1.6 KiB
Plaintext

%dl.cardlisting
%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'
%dt.cardTags
%span.tags
%i.fa.fa-tags{'aria-hidden': 'true'}
Tags:
%dd.cardTags.extraLineSpacing
- for tagkey in info['tags']
- with tag=tags[tagkey]
- include 'tag.html'
- if info['link']
%dt.cardLink
%span.link
%i.fa.fa-link{'aria-hidden': 'true'}
Link:
%dd.cardLink
%a{'href': '{{info["link"]}}', 'target': '_blank', 'rel': 'noreferrer'}
= info['link']
- if info['notes']
%dt.cardNotes
%span.tags
%i.fa.fa-sticky-note{'aria-hidden': 'true'}
Notes:
%dd.cardNotes.markdown
= info['notes']|markdown