10 lines
222 B
HTML
10 lines
222 B
HTML
|
|
<section class="home-intro">
|
||
|
|
<h1>{{ site.Title }}</h1>
|
||
|
|
{{ with site.Home.Content }}
|
||
|
|
{{ . }}
|
||
|
|
{{ else with site.Params.description }}
|
||
|
|
<p>{{ . }}</p>
|
||
|
|
{{ end }}
|
||
|
|
{{ partial "social-links.html" . }}
|
||
|
|
</section>
|