Module:InfoboxSnippet: Difference between revisions

From Bibliotheca Anonoma
No edit summary
No edit summary
Line 15: Line 15:
:addRow('Discovery Date', frame.args["discovery_date"])
:addRow('Discovery Date', frame.args["discovery_date"])
:addRow('Language', frame.args["language"])
:addRow('Language', frame.args["language"])
:addRow('Setting', frame.args["setting"])
:addRow('Source URL', frame.args["source_url"])
:addRow('Source URL', frame.args["source_url"])
:addRow('Provenance', frame.args["provenance"])
:addRow('Provenance', frame.args["provenance"])

Revision as of 18:35, 25 January 2017

This page is a module. It contains no Bibliotheca Anonoma-related information, but should be used as part of other articles or templates. For more information, read wp:Help:Lua.

Please do not experiment with this module; you could ruin all pages using this module. If you want to edit this module, copy the text to Module:Sandbox, edit and test it there, and copy it back when it works.

Click here to edit the documentation page, and feel free to voice your opinion regarding this module.

This infobox module is for internal use by Template:Snippet, which adds to a cargo template. Please use that instead.

Two options are provided, one with and without an image.

Usage

Module:InfoboxSnippet
File:Test.png
Story YourStory
Creation Date 2016-08-01
Discovery Date 2016-08-02
Language English
Source URL https://test.url
Provenance 2channel,4chan,8chan
{{#invoke: InfoboxSnippet | default 
| image          = test.png
| description        = This '''image''' is a test image that is found on Wikimedia Commons. 
| story          = [[YourStory]]
| creation_date   = 2016-08-01
| discovery_date  = 2016-08-02
| language       = English
| source_url   = https://test.url
| provenance   = 2channel,4chan,8chan
}}

Usage (no image)

Script error: The function "noimage" does not exist.

{{#invoke: InfoboxSnippet | noimage
| description = >type in a short description
| story          = [[YourStory]]
| creation_date   = 2016-08-01
| discovery_date  = 2016-08-02
| language       = English
| source_url   = https://test.url
| provenance   = 2channel,4chan,8chan
}}

local p = {}
 
function p.default(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		top = tostring(mw.title.getCurrentTitle()),
		topStyle = 'background:#cfc;',
	} )
	:addImage(
		string.format('[[File:%s|200px]]', frame.args["image"]), -- featured image
		frame.args["caption"] -- caption
	)
	:addRow('Story', frame.args["story"])
	:addRow('Creation Date', frame.args["creation_date"])
	:addRow('Discovery Date', frame.args["discovery_date"])
	:addRow('Language', frame.args["language"])
	:addRow('Source URL', frame.args["source_url"])
	:addRow('Provenance', frame.args["provenance"])
end

return p