initialisation finale

This commit is contained in:
yann64
2023-10-16 10:26:38 +02:00
parent 51b57c647c
commit 1d0c9c12bb
16 changed files with 262 additions and 0 deletions

29
layouts/index.html Normal file
View File

@@ -0,0 +1,29 @@
{{ define "main" }}
<section class="section bd-masthead">
<div class="container-xxl">
<div class="col-md-8 mx-auto text-center my-5">
<img class="d-block mx-auto mb-3" src="{{ `images/logo.svg` | relURL }}" width="150" height="150" alt="Bootstrap">
<h1 class="display-4 fw-semibold mb-3">{{ .Site.Title }}</h1>
<p class="lead mb-4">{{ .Site.Params.Description }}</p>
<a class="btn btn-bd-primary btn-lg px-4 mb-2" href="https://github.com/filipecarneiro/hugo-bootstrap-theme" role="button">Get Started</a>
<p class="text-muted mb-0">Open-source MIT Licensed.</p>
</div>
</div>
</section>
<section class="section container">
{{ partial "features" . }}
</section>
<section class="section container">
<h3 class="text-secondary text-center my-5">Latest Posts</h3>
{{ partial "latest-posts" . }}
</section>
<section class="section container">
<h3 class="text-secondary text-center my-5">Featured Pages</h3>
{{ partial "featured-pages" . }}
</section>
{{ end }}