site_fursona_refs/tpl/cardbody.haml
2019-12-28 00:04:19 -03:00

39 lines
1010 B
Plaintext

.title
%span
%i.fa.fa-header{'aria-hidden': 'true'}
Title:
= info['name']
.date
%span
%i.fa.fa-calendar-check-o{'aria-hidden': 'true'}
Completed on:
- with dt=info['date']
- include 'datefmt.html'
.artist
%span
%i.fa.fa-paint-brush{'aria-hidden': 'true'}
Artist:
- with artistkey=info['artist']
- with artist=artists[artistkey]
- include 'artist.html'
.technology
%span
%i.fa.fa-wrench{'aria-hidden': 'true'}
Technology:
- with tagkey=info['technology']
- with tag=tags[tagkey]
- include 'tag.html'
.tags
%span
%i.fa.fa-tags{'aria-hidden': 'true'}
Tags:
- for tagkey in info['tags']
- with tag=tags[tagkey]
- include 'tag.html'
- if info['link']
.link
%span
%i.fa.fa-link{'aria-hidden': 'true'}
Link:
%a{'href': '{{info["link"]}}', 'target': '_blank'}
= info['link']