Functions/Public/footer.ps1
Function Footer { <# .SYNOPSIS Generates a Footer HTML tag. .PARAMETER Class Allows to specify one (or more) class(es) to assign the html element. More then one class can be assigned by seperating them with a white space. .PARAMETER Id Allows to specify an id to assign the html element. .PARAMETER Style Allows to specify in line CSS style to assign the html element. .PARAMETER Content Allows to add child element(s) inside the current opening and closing HTML tag(s). .EXAMPLE Footer { h6 "This is h6 Title in Footer" } Generates the following code <footer> <h6>This is h6 Title in Footer</h6> </footer> Generates the following code: <Body Class="myclass1 MyClass2" Id="myid" custom1="val1" custom2="val2" > </Body> .NOTES Current version 3.1 History: 2018.10.30;@ChristopheKumor;Updated to version 3.0 2018.04.10;Stephanevg; Added parameters 2018.04.01;Stephanevg;Creation. .LINK https://github.com/Stephanevg/PSHTML #> Param( [Parameter( ValueFromPipeline = $true, Mandatory = $false, Position = 0 )] $Content, [Parameter(Position = 1)] [String]$Class, [Parameter(Position = 2)] [String]$Id, [Parameter(Position = 3)] [String]$Style, [Parameter(Position = 4)] [Hashtable]$Attributes ) Process { $tagname = "footer" Set-HtmlTag -TagName $tagname -Parameters $PSBoundParameters -TagType nonVoid } } |