Module:SkillList

From Eco - English Wiki
Revision as of 06:35, 9 December 2024 by StalEF (talk | contribs)

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