Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Configures Module:Card to produce the Default card type. Invoking this module directly is not supported.


local Card = require('Module:Card')

return Card.main({
    block = 'card-default',
    styles = 'Template:Card/Default/styles.css',
    slots = {
        Card.slots.media({iconSize = 128, imageSize = 200}),
        Card.slots.title(),
        Card.slots.description(),
        Card.slots.interaction(),
    },
    modifiers = {
        Card.modifiers.titleOnly(),
    },
})