hugo-toha/layouts/partials/home.html
hossainemruz dbd270eaee Make theme compatible with hugoBasicExamples
Signed-off-by: hossainemruz <emruz@appscode.com>
2020-06-02 03:59:39 +06:00

23 lines
766 B
HTML

<div class="container-fluid home" id="home">
<div
class="background container-fluid"
style="background-image: url('{{ .Site.Data.site.background }}');"
></div>
<div class="container content text-center">
<img
src="{{ .Site.Data.site.author.image }}"
class="rounded-circle mx-auto d-block img-fluid"
/>
<h1 class="greeting">Hi, I am {{ .Site.Data.site.author.name -}}</h1>
<div class="typing-carousel">
<span id="ityped" class="ityped"></span>
<span class="ityped-cursor"></span>
</div>
<ul id="typing-carousel-data">
{{ range .Site.Data.site.author.summary }}
<li>{{ . }}</li>
{{ end }}
</ul>
<a href="#about"><i class="arrow bounce fa fa-chevron-down"></i></a>
</div>
</div>