This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.NAME | |
Item Has 20 Or More Sub-items Gutter | |
.SYNOPSIS | |
Renders gutters indicated whether the item has more than 20 sub-items. | |
.NOTES | |
Mike Reynolds | |
#> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0xa924d095598881f75c364F31E3FDd7B1ee7357CC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 1CnkoZABoP6Cj1csXLSJ2vPpDCYeLbBWhs https://explorer.blockstack.org/address/1CnkoZABoP6Cj1csXLSJ2vPpDCYeLbBWhs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Lists the datasources which are not or no longer referenced to a rendering in a page. | |
.NOTES | |
Ramon Bruelisauer (original) | |
Manuel Fischer (adjustements for the Master Solution) | |
#> | |
<## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$data = @(gci -Path . -Recurse -Language "en" ) | |
$props = @{ Title = "SEO Data" | |
PageSize = 250 | |
} | |
$data | Show-ListView -Property @{Label="Title"; Expression={ $_.DisplayName }}, | |
@{Label="MetaDescription"; Expression={$_.MetaDescription} }, | |
@{Label="MetaKeywords"; Expression={$_.MetaKeywords} }, | |
@{Label="Path"; Expression={$_.FullPath} } |