Module:ExperiencePicture

From Wikiyouth
Revision as of 15:20, 1 November 2024 by Admin (talk | contribs)

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

local p = {}

function p.main(frame)
  local args = frame:getParent().args

  local picture = 'File:Person reading a newspaper (Unsplash).jpg'

if args['picture'] ~= nil and args['picture'] ~= 'File:'  then
   picture = 'File:' .. args['picture']
end

  return '[[ ' .. picture ..  '|100px|link=]]'
end

return p