aboutsummaryrefslogblamecommitdiff
path: root/themes/neonxp/layouts/_default/single.html
blob: 8a7b70769519ff7fd04d44fa17254706b6a9c5c3 (plain) (tree)























































                                                                                                                    
{{ define "main" }}
<div class="single-page">
    <div class="sidebar">
      <div class="toc">
        {{ if .Params.toc }}
          <article>
              <header>Содержание</header>
              <aside>{{ .TableOfContents }}</aside>
          </article>
        {{ end }}
        <article>
          <header>Разделы</header>
          {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
        </article>
      </div>
    </div>
    <div class="h-entry">
        <article>
            <header class="space-between">
                <span class="p-name">
                  {{ .Title }}
                </span>
                {{ if .Date }} 
                {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} 
                {{ $dateHuman := .Date | time.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") }}
                <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
                {{ end }}
            </header>
            <div class="p-summary">
              {{ .Summary }}
            </div>
            <div class="e-content">
              {{ .Content }}
            </div>
            <footer class="space-between">
                <span>
                {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
                </span>

                <a class="u-url" href="{{ .Permalink }}">#</a>
                
                {{ if .Params.Location }}
                  <span class="p-location">@ {{.Params.Location}}</span>
                {{ end }}

                {{ if .Lastmod }}
                  {{ $dateMachine := .Lastmod | time.Format "2006-01-02T15:04:05-07:00" }}
                  {{ $dateHuman := .Lastmod | time.Format (or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006") }}
                  <time class="dt-updated" datetime="{{ $dateMachine }}">Изм: {{ $dateHuman }}</time>
                {{ end }}
            </footer>
        </article>
        {{ if .Params.comments }} {{ partial "comments.html" . }} {{ end }}
    </div>
</div>
{{ end }}