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

archive.terms.html « taxonomy « layouts - github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 083fdc219861e2f4ea53cd00e29d707ab2410d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ partial "head.html" . }}
  <body>
    <div id="blog">
      {{ partial "header.html" . }}
      {{ partial "sidebar.html" . }}
      <div id="main" data-behavior="{{ .Scratch.Get "sidebarBehavior" }}"
        class="{{ with .Params.coverImage }}hasCover{{ end }}
               {{ if eq .Params.coverMeta "out" }}hasCoverMetaOut{{ else }}hasCoverMetaIn{{ end }}
               {{ with .Params.coverCaption }}hasCoverCaption{{ end }}">
        <div id="archives" class="main-content-wrap">
          <form id="filter-form" action="#">
            <input name="date" type="text" class="form-control input--xlarge" placeholder="{{ i18n "global.search_date" }}" autofocus="autofocus">
          </form>
          {{ partial "archive-post.html" (where .Site.RegularPages "Type" "post") }}
        </div>
      </div>
    </div>
{{ partial "foot.html" . }}