Module:T-Process: Difference between revisions
// via Wikitext Extension for VSCode |
// via Wikitext Extension for VSCode |
||
| Line 54: | Line 54: | ||
-- Initialize the standard configuration | -- Initialize the standard configuration | ||
Blueprint.initializeConfig(template) | Blueprint.initializeConfig(template) | ||
-- Integrate navigation element | |||
local ElementNavigation = require('Module:Elements:ElementNavigation') | |||
if ElementNavigation and ElementNavigation.elementName then | |||
Blueprint.registerElement(ElementNavigation.elementName, ElementNavigation) | |||
Blueprint.addElementToTemplate(template, 'navigation', 4) | |||
template.config.navigation = { | |||
prevLabel = "← Previous Process", | |||
nextLabel = "Next Process →" | |||
} | |||
end | |||
-- Integrate navigation element | -- Integrate navigation element | ||