👌 Applied review changes

This commit is contained in:
Scott
2018-02-24 13:11:12 +01:00
parent 9653da7ba0
commit b234877a12
8 changed files with 14 additions and 17 deletions

View File

@ -5,14 +5,14 @@ component Quote(quote *arn.Quote)
component QuoteContent(quote *arn.Quote)
.quote-content
a.quotation.ajax(href="/quote/" + quote.ID)
a.quotation.ajax(href=quote.Link())
blockquote
p
q= quote.Description
if quote.Character() != nil
footer.quote-character
span= "by"
a.ajax(href="/character/" + quote.Character().ID)= quote.Character().Name
a.ajax(href=quote.Character().Link())= quote.Character().Name
CharacterSmall(quote.Character())
component QuoteFooter(quote *arn.Quote)