Module:SkillList: Difference between revisions

From Eco - English Wiki
[unchecked revision][unchecked revision]
No edit summary
No edit summary
Line 6: Line 6:
     -- load lists
     -- load lists
     local skillData = require( "Module:SkillData" )
     local skillData = require( "Module:SkillData" )
local skillList = ''
local skillList = '<div class="col-lg-12"><Center><h2 class="title">Skills</h2></Center></div>'


return skillList
return skillList
end
end


return p
return p

Revision as of 06:35, 9 December 2024

This module provides the back end functionality of the Template:SkillList.

If the template is passed, this module creates a list using details from the following Modules:


local p = {}

-- Main entry point for the Module
function p.main()
   	
    -- load lists
    local skillData = require( "Module:SkillData" )
	local skillList = '<div class="col-lg-12"><Center><h2 class="title">Skills</h2></Center></div>'

	
		
		return skillList
end

return p