Module:SkillList

From Eco - English Wiki
Revision as of 06:44, 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>'


skillList = skillList .. '<div class="col-sm"><div class="card">'
skillList = skillList .. '[[File:Banner4k.jpg|class=card-img-top|link=]]'
skillList = skillList .. '<div class="card-body"><h5 class="card-title">Card title</h5><h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6><p class="card-text">'

skillList = skillList .. '<div class="card"> <div class="card-body">тест</div> </div>'

skillList = skillList .. '</p></div></div></div>'


	
		
		return skillList
end

return p