37 lines
924 B
HTML
37 lines
924 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.Language.Lang }}">
|
||
|
|
||
|
{{ partial "head.html" . }}
|
||
|
|
||
|
<body>
|
||
|
{{ partial "nav.html" . }}
|
||
|
|
||
|
{{ partial "carousel.html" . }}
|
||
|
|
||
|
<div id="about" class="space"></div>
|
||
|
{{ with (index .Site.Data.introduction .Site.Language.Lang).first }}
|
||
|
<div class="section clearfix object-non-visible" data-animation-effect="fadeIn">
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<h1 class="title text-center">{{ .title }}</h1>
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<img class="img-thumbnail rounded mx-auto d-block" alt="{{ .title }}" src="{{ .image }}">
|
||
|
{{ .description | markdownify}}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="space"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ partial "services.html" . }}
|
||
|
|
||
|
{{ partial "footer.html" . }}
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|