hugo-theme-tui

TUI
Log | Files | Refs | README | LICENSE

index.html (470B)


      1 {{ define "main" }}
      2 {{- $about := site.Params.about -}}
      3 <h1 class="page-title">{{ with $about.title }}{{ . }}{{ else }}{{ site.Title }}{{ end }}</h1>
      4 {{- with $about.description }}<p class="page-sub">{{ . | markdownify }}</p>{{ end }}
      5 
      6 <h2 class="section">about</h2>
      7 <div class="bullets-wrap">
      8   {{ .Content }}
      9 </div>
     10 
     11 {{ if site.Params.socialLinks }}
     12 <h2 class="section">socials<span class="count">contact</span></h2>
     13 {{ partial "socials.html" . }}
     14 {{ end }}
     15 {{ end }}