aboutsummaryrefslogtreecommitdiffstats
BranchCommit messageAuthorAge
webstatsadd new visit row with foreign key previewOscar Najera2 months
simplerInclude train platform infoOscar Najera10 months
masterrefactorOscar Najera16 months
 
12'>12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
{{ define "main" }}
  <header class="mw7 center">
    <h2 class="baskerville f2 lh-title mv3">
      {{ .Title }}
    </h2>

    {{ with .Params.subtitle }}
      <h3 class="f3 baskerville mv3">{{ . }}</h3>
    {{ end }}

    {{ with resources.Get (index .Params.images 0) }}
      {{ $image := .Fill (default "400x400" $.Params.image_size) }}
      <div class="relative">
        <img
          src="{{ $image.RelPermalink }}"
          class="db center"
          alt="{{ .Title }}"
        />
        {{ with $.Params.caption }}
          <a
            href="{{ .url }}"
            class="link near-white absolute bottom-0 right-0 pa2 bg-black-30 br2"
          >
            {{ .text }}
          </a>
        {{ end }}
      </div>
    {{ end }}

    {{ if isset .Params "metadata" }}
      {{ partial "metadata.html" . }}
    {{ end }}
  </header>
  <div class="main-content mw7 center lh-copy f5 f4-ns">
    {{ .Content }}
  </div>
  <div class="f5 f4-ns lh-copy pv2">
    {{ if isset .Params "metadata" }}
      {{ partial "author_card" . }}
    {{ end }}
    {{ partial "post_pager" . }}
  </div>
{{ end }}