nitc :: CardList :: defaultinit
# A list of cards
class CardList
super StaticCard
# Cards contained in this list
var cards = new Array[StaticCard] is writable
redef fun rendering do
addn "<div id='{id}' class='card-list'>"
for card in cards do
addn card
end
addn "</div>"
end
end
src/doc/static/static_cards.nit:33,1--47,3