Last active
January 4, 2016 05:18
-
-
Save atstyle/8573818 to your computer and use it in GitHub Desktop.
狙ったフォルダのみを表示してウェブページを展開 MTML
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
<mt:SetVar name="keyword" value="dog"> | |
<ul> | |
<mt:Folders> | |
<mt:SetVarBlock name="CurFldName"><mt:FolderLabel></mt:SetVarBlock> | |
<mt:If name="CurFldName" like="$keyword"> | |
<li><$mt:FolderLabel$>(<$mt:FolderCount$>)</li> | |
<ul> | |
<mt:Pages folder="$CurFldName" lastn="5"> | |
<li><a href="<$mt:PagePermalink$>"><$mt:PageTitle$></a></li> | |
</mt:Pages> | |
</ul> | |
</mt:If> | |
</mt:Folders> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment