Actions

Module

Infobox PlayerStoryline

From ThornsWiki

Revision as of 12:06, 28 November 2018 by Thornswiki (talk | contribs)

Documentation for this module may be created at Module:Infobox PlayerStoryline/doc

local p = {}
 
function p.default(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		top = tostring(mw.title.getCurrentTitle()),
		topStyle = 'background:#5f5543;color:#FFF;font-family:Metamorphous, serif;line-height:1.25em;',
	} )

	:addRow('Status', frame.args["status"])
	:addRow('Activity', frame.args["activity"])
	:addRow('Location(s)', frame.args["locations"])
	:addHeader('Follow the Story')
	:addRow('Forum Link', frame.args["tag"])
	
end

return p