31 lines
753 B
Plaintext
Raw Normal View History

2018-03-13 22:06:16 +00:00
component Quotes(quotes []*arn.Quote, nextIndex int, user *arn.User)
2017-12-03 21:33:24 +00:00
h1.page-title Quotes
QuotesTabs
2017-12-03 21:33:24 +00:00
.corner-buttons
if user != nil
if user.DraftIndex().QuoteID == ""
button.action(data-action="newObject", data-trigger="click", data-type="quote")
Icon("plus")
span Add quote
else
a.button(href="/quote/" + user.DraftIndex().QuoteID + "/edit")
2017-12-03 21:33:24 +00:00
Icon("pencil")
span Edit draft
#load-more-target.quotes
QuotesScrollable(quotes, user)
2018-03-13 22:06:16 +00:00
if nextIndex != -1
.buttons
2018-03-13 22:06:16 +00:00
LoadMore(nextIndex)
component QuotesScrollable(quotes []*arn.Quote, user *arn.User)
each quote in quotes
QuotePreview(quote, user)
component QuotesTabs
.tabs
Tab("Latest", "quote-left", "/quotes")
Tab("Best", "heart", "/quotes/best")