forked from oyd/ozgurkon-theme-hugo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
392 B
22 lines
392 B
{{ define "main" }}
|
|
|
|
<div class="hero" >
|
|
<div class="img" style="color: {{ .Params.color | default "#fff" }};background-image: url({{ .Params.image }})"></div>
|
|
|
|
<div class="description">
|
|
<h1>
|
|
<span>{{ .Title }}</span>
|
|
<small>{{ .Params.brief }}</small>
|
|
</h1>
|
|
<!--
|
|
<hr>
|
|
{{ .TableOfContents }} -->
|
|
</div>
|
|
</div>
|
|
|
|
<section class="content">
|
|
|
|
{{ .Content }}
|
|
</section>
|
|
|
|
{{ end }} |