Actions

Module

Difference between revisions of "Infobox MainChapter"

From ThornsWiki

 
Line 4: Line 4:
 
local capiunto = require 'capiunto'
 
local capiunto = require 'capiunto'
 
return capiunto.create( {
 
return capiunto.create( {
top = tostring(mw.title.getCurrentTitle()),
+
top = 'Chapter Quick Facts',
topStyle = 'background:#5f5543;color:#FFF;font-family:Metamorphous, serif;line-height:1.25em;',
+
topStyle = 'background:#5f5543;color:#FFF;font-family:Metamorphous, serif;line-height:1.25em; text-weight:normal;',
 
} )
 
} )
 
:addImage(
 
:addImage(
Line 14: Line 14:
 
:addRow('Status', frame.args["status"])
 
:addRow('Status', frame.args["status"])
 
:addRow('Activity', frame.args["activity"])
 
:addRow('Activity', frame.args["activity"])
:addHeader('Follow the Story')
+
:addRow('Location(s)', frame.args["locations"])
:addRow('Thread Tag', frame.args["tag"])
+
:addHeader('Follow Along')
 +
:addRow('Thread List', frame.args["tag"])
 
:addHeader('Moderator Information')
 
:addHeader('Moderator Information')
 
:addRow('Contact', frame.args["admin"])
 
:addRow('Contact', frame.args["admin"])
 
+
 
end
 
end
  
 
return p
 
return p

Latest revision as of 12:23, 28 November 2018

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

local p = {}
 
function p.default(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		top = 'Chapter Quick Facts',
		topStyle = 'background:#5f5543;color:#FFF;font-family:Metamorphous, serif;line-height:1.25em; text-weight:normal;',
	} )
	:addImage(
		string.format('[[File:%s|250px]]', frame.args["image"]), -- featured image
		frame.args["caption"] -- caption
	)
	:addHeader('Storyline Information')
	:addRow('Status', frame.args["status"])
	:addRow('Activity', frame.args["activity"])
	:addRow('Location(s)', frame.args["locations"])
	:addHeader('Follow Along')
	:addRow('Thread List', frame.args["tag"])
	:addHeader('Moderator Information')
	:addRow('Contact', frame.args["admin"])
	
end

return p