Jump to content

Module:Sandbox

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by BigGreenCahuna (talk | contribs) at 22:51, 10 August 2014. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- Placeholder only! Do not add code.
-- Reviving the evil Banana test
local p = {}
 
function p.hello( frame )
	local args=frame.args
	local Message = "Minions love bananas!"

	if args[1] == "1"
	then 
		Message = "Cahuna"  
    else  
		Message = args[1]
	end
    return '<div><table border=0 cellspacing=0 cellpadding=0 width=100% style="background-color:#FFFFFF;"><tr><td width=100%><div id="siteSub">Bob</div><div id="contentSub">&nbsp;&nbsp; Color <font style="color:#0000FF;">Blue</font></div><font style="color:#0000FF;">'..Message..'</font></div>'   
end
 
return p