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

list.html « search « layouts - github.com/zhaohuabing/hugo-theme-cleanwhite.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35e37df1c9f5a065959de622e16868b0db21a706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ define "main" }}
<div class="container">
    <div class="row">
        <!-- USE SIDEBAR -->
        <!-- Post Container -->
   	    <div class="
            col-lg-8 col-lg-offset-1
            col-md-8 col-md-offset-1
            col-sm-12
            col-xs-12
            post-container
        ">
        {{ if .Site.Params.algolia_search }}
            {{ partial "search-algolia.html" . }}
        {{ else }}
            {{ partial "search-pagefind.html" . }}
        {{ end }}
       	</div>
        {{ partial "sidebar.html" . }}
	</div>
</div>
{{ end }}