aboutsummaryrefslogblamecommitdiff
path: root/layouts/go/single.html
blob: cc95c8e0b517483de6e82e6256fe932b41d24b8c (plain) (tree)


















                                                                                                 




                                             



                                                               








                                                                           
{{ define "main" }}
<div class="row">
    <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar">
        {{ if .Params.toc }}
        <article>
            <header>Содержание</header>
            <aside>{{ .TableOfContents }}</aside>
        </article>
      {{ end }}
        <article>
            <header>Навигатор</header>
            {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
        </article>
    </div>
    <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
        <article>
            <header>
              <div class="row between-xs">
                <span class="p-name"> {{ .Title }} </span>
              </div>
            </header>
            {{ if .Params.Image }}
              <img src="{{.Params.Image}}" />
            {{ end }}
            <div>
              Установка:
              <pre>go get neonxp.ru/go/{{ .Params.Name }}</pre>
            </div>
            <div class="p-summary">{{ .Summary }}</div>
            <div class="e-content">{{ .Content }}</div>
            <footer>
            </footer>
        </article>
        {{ if .Params.comments }} {{ partial "comments.html" . }} {{ end }}
    </div>
</div>
{{ end }}