mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-25 07:48:52 +00:00
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
{{ define "header" }}
|
|
{{- partial "homepage/homepage-header.html" . -}}
|
|
{{- partial "site-search.html" . -}}
|
|
{{ end }}
|
|
{{ define "main" }}
|
|
<main id="homepage" class="main">
|
|
<div class="home-row hero animated">
|
|
{{ partial "homepage/homepage-hero.html" . }}
|
|
</div>
|
|
<div class="home-row focus">
|
|
<div class="home-row-content home-row-content-focus">
|
|
{{partial "homepage/homepage-focus.html" . }}
|
|
</div>
|
|
</div>
|
|
<div class="home-row features">
|
|
<div class="home-row-content home-row-content-features">
|
|
{{ partial "homepage/homepage-features" . }}
|
|
</div>
|
|
</div>
|
|
<div class="home-row install">
|
|
<div class="home-row-content home-row-content-install">
|
|
{{ partial "homepage/homepage-install.html" . }}
|
|
</div>
|
|
</div>
|
|
<div class="home-row tweets">
|
|
<div class="home-row-content home-row-content-tweets">
|
|
{{ partial "homepage/homepage-tweets.html" . }}
|
|
</div>
|
|
</div>
|
|
<div class="home-row open-source">
|
|
<div class="home-row-content home-row-content-open-source">
|
|
{{ partial "homepage/homepage-open-source.html" . }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{ end }} |