{{define "page"}}
Home
{{end}}

{{define "body"}}
<section class="hero is-fullheight">
    <div class="hero-body">
        <div class="container has-text-centered">
            <p class="title">
                {{.Config "site.name"}}
            </p>
            <form action="/search">
                <dic class="columns is-centered">
                    <div class="column is-three-quarters">
                        <input id="search-input" class="input is-link is-rounded" type="text" name="q"
                            placeholder="Search...">
                    </div>
                </dic>
                <button class="button is-link is-rounded" type="submit">
                    <span class="iconify" data-icon="fe:search"></span>&nbsp;
                    Search
                </button>
            </form>
        </div>
    </div>
</section>
{{end}}