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

post.html « partials « layouts - github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a8c2e6a65d1c1aff423d930212988020a036477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{ partial "post-header.html" . }}
<section class="section">
  <div class="container">
    <div class="columns">
      {{ if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) }}
      <div class="column is-1 is-hidden-mobile"></div>
      <div class="column is-8">
      {{ else }}
      <div class="column is-three-fifths is-offset-one-fifth">
      {{ end }}
        <article class="content" id="post-content">
          {{- .Content -}}
        </article>
      </div>
      {{ if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) }}
      <div class="column is-hidden-mobile">
        <div class="sidebar" id="toc">
          {{ if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) }}
          <div class="post post-toc" id="post-toc">
            <!-- render by tocbot -->
          </div>
          {{- end }}
        </div>
      </div>
      {{ end }}
      </div>
    </div>
  </div>
</section>