Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sidebar_posts.html « partials « layouts - github.com/jacobsun/edidor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7845f0f0500a02b80abf82ac05143b55360f8a7f (plain)
1
2
3
4
5
<ul class="posts control">
    {{ range first 10 (where (where .Site.RegularPages.ByDate.Reverse "Type" "in" .Site.Params.mainSections ) "Params.hidden" "!=" true) }}
    <li><a class="no-break btn" href='{{ .RelPermalink }}'><i class="icon icon-post"></i> {{- .Title -}}</a></li>
    {{ end }}
</ul>