<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://dev.dsp-wiki.com/Module:InfoboxNeue/example/history?feed=atom</id>
	<title>Module:InfoboxNeue/example - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://dev.dsp-wiki.com/Module:InfoboxNeue/example/history?feed=atom"/>
	<link rel="alternate" type="text/html" href="https://dev.dsp-wiki.com/Module:InfoboxNeue/example/history"/>
	<updated>2026-05-08T20:09:35Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://dev.dsp-wiki.com/index.php?title=Module:InfoboxNeue/example&amp;diff=14362&amp;oldid=prev</id>
		<title>Antt1995: 1 revision imported: New Files</title>
		<link rel="alternate" type="text/html" href="https://dev.dsp-wiki.com/index.php?title=Module:InfoboxNeue/example&amp;diff=14362&amp;oldid=prev"/>
		<updated>2024-03-24T11:54:36Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported: New Files&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 11:54, 24 March 2024&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Antt1995</name></author>
	</entry>
	<entry>
		<id>https://dev.dsp-wiki.com/index.php?title=Module:InfoboxNeue/example&amp;diff=14358&amp;oldid=prev</id>
		<title>Antt1995 at 23:21, 19 June 2023</title>
		<link rel="alternate" type="text/html" href="https://dev.dsp-wiki.com/index.php?title=Module:InfoboxNeue/example&amp;diff=14358&amp;oldid=prev"/>
		<updated>2023-06-19T23:21:16Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
local infobox = require( &amp;#039;Module:InfoboxNeue&amp;#039; ):new()&lt;br /&gt;
&lt;br /&gt;
function p.makeComponentsExample()&lt;br /&gt;
	local sectionTable = {}&lt;br /&gt;
&lt;br /&gt;
	infobox:renderImage( &amp;#039;Pico at New Babbage 1 1.jpg&amp;#039; )&lt;br /&gt;
	infobox:renderIndicator( {&lt;br /&gt;
		data = &amp;#039;Indicator&amp;#039;,&lt;br /&gt;
		desc = &amp;#039;Indicator message&amp;#039;,&lt;br /&gt;
	} )&lt;br /&gt;
	infobox:renderHeader( {&lt;br /&gt;
		title = &amp;#039;Title&amp;#039;,&lt;br /&gt;
		subtitle = &amp;#039;Subtitle&amp;#039;&lt;br /&gt;
	} )&lt;br /&gt;
&lt;br /&gt;
	sectionTable = {&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Item label&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Item data&amp;#039;&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Item label&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Item data&amp;#039;&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Item label&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Item data&amp;#039;&lt;br /&gt;
		} )&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	infobox:renderSection( {&lt;br /&gt;
		content = table.concat( sectionTable ),&lt;br /&gt;
		col = 2&lt;br /&gt;
	} )&lt;br /&gt;
	&lt;br /&gt;
	infobox:renderSection( {&lt;br /&gt;
		title = &amp;#039;Section title&amp;#039;,&lt;br /&gt;
		content = table.concat( sectionTable ),&lt;br /&gt;
		col = 3&lt;br /&gt;
	} )&lt;br /&gt;
&lt;br /&gt;
	return infobox:renderInfobox()&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.makeRowSection()&lt;br /&gt;
	local sectionTable = {}&lt;br /&gt;
&lt;br /&gt;
	sectionTable = {&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Bacon&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Good&amp;#039;,&lt;br /&gt;
			row = true,&lt;br /&gt;
			spacebetween = true&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Pancetta&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Great&amp;#039;,&lt;br /&gt;
			row = true,&lt;br /&gt;
			spacebetween = true&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Prosciutto&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Wonderful&amp;#039;,&lt;br /&gt;
			row = true,&lt;br /&gt;
			spacebetween = true&lt;br /&gt;
		} )&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	infobox:renderSection( {&lt;br /&gt;
		title = &amp;#039;Row layout&amp;#039;,&lt;br /&gt;
		subtitle = &amp;#039;This is an example of the row layout.&amp;#039;,&lt;br /&gt;
		content = table.concat( sectionTable )&lt;br /&gt;
	} )&lt;br /&gt;
&lt;br /&gt;
	return infobox:renderInfobox()&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.makeListSection()&lt;br /&gt;
	local sectionTable = {}&lt;br /&gt;
&lt;br /&gt;
	sectionTable = {&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			data = &amp;#039;Bacon is good&amp;#039;,&lt;br /&gt;
			desc = &amp;#039;Bacon ipsum dolor amet burgdoggen boudin spare ribs pork pork chop drumstick beef. Jowl turkey pork, kevin shankle shank shoulder. &amp;#039;,&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			data = &amp;#039;Pancetta is great&amp;#039;,&lt;br /&gt;
			desc = &amp;#039;Kevin pig fatback, alcatra pancetta sirloin venison tri-tip shankle kielbasa meatloaf spare ribs beef. Corned beef salami kielbasa tenderloin swine spare ribs andouille.&amp;#039;,&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			data = &amp;#039;Prosciutto is wonderful&amp;#039;,&lt;br /&gt;
			desc = &amp;#039;Venison chicken meatloaf, ground round swine short ribs shankle short loin tenderloin jerky capicola. Prosciutto venison sirloin beef brisket pancetta.&amp;#039;,&lt;br /&gt;
		} )&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	infobox:renderSection( {&lt;br /&gt;
		title = &amp;#039;List layout&amp;#039;,&lt;br /&gt;
		subtitle = &amp;#039;This is an example of the list layout.&amp;#039;,&lt;br /&gt;
		content = table.concat( sectionTable )&lt;br /&gt;
	} )&lt;br /&gt;
&lt;br /&gt;
	return infobox:renderInfobox()&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.makeGridSection()&lt;br /&gt;
	local sectionTable = {}&lt;br /&gt;
&lt;br /&gt;
	sectionTable = {&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Bacon&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Good&amp;#039;&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Pancetta&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Great&amp;#039;&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Prosciutto&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Wonderful&amp;#039;&lt;br /&gt;
		} ),&lt;br /&gt;
		infobox:renderItem( {&lt;br /&gt;
			label = &amp;#039;Capicola&amp;#039;,&lt;br /&gt;
			data = &amp;#039;Delightful&amp;#039;&lt;br /&gt;
		} )&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	infobox:renderSection( {&lt;br /&gt;
		title = &amp;#039;2 col grid layout&amp;#039;,&lt;br /&gt;
		subtitle = &amp;#039;This is an example of the two column grid layout.&amp;#039;,&lt;br /&gt;
		content = table.concat( sectionTable ),&lt;br /&gt;
		col = 2&lt;br /&gt;
	} )&lt;br /&gt;
	&lt;br /&gt;
	infobox:renderSection( {&lt;br /&gt;
		title = &amp;#039;3 col grid layout&amp;#039;,&lt;br /&gt;
		subtitle = &amp;#039;This is an example of the three column grid layout.&amp;#039;,&lt;br /&gt;
		content = table.concat( sectionTable ),&lt;br /&gt;
		col = 3&lt;br /&gt;
	} )&lt;br /&gt;
	&lt;br /&gt;
	infobox:renderSection( {&lt;br /&gt;
		title = &amp;#039;4 col grid layout&amp;#039;,&lt;br /&gt;
		subtitle = &amp;#039;This is an example of the four column grid layout.&amp;#039;,&lt;br /&gt;
		content = table.concat( sectionTable ),&lt;br /&gt;
		col = 4&lt;br /&gt;
	} )&lt;br /&gt;
&lt;br /&gt;
	return infobox:renderInfobox()&lt;br /&gt;
end&lt;br /&gt;
	&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Antt1995</name></author>
	</entry>
</feed>