feat: prep for next version
All checks were successful
Deploy workflow / deploy (push) Successful in 17s

- per subject of projects page
- add basic news page
- new layout with bootstrap
- more misc pages
This commit is contained in:
Matthieu Bessat 2024-08-12 22:26:37 +02:00
parent 2f0c2562aa
commit 293ac83a9d
37 changed files with 12551 additions and 137 deletions

View file

@ -1,33 +1,9 @@
{{ define "main" }}
<div class="team-presentation">
<div class="team-item">
</div>
</div>
<main class="page-container">
{{ $listtitle := .Title }}
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
<ul class="section-menu">
{{ range .Pages }}
<li>
<div class="post-title">
{{ if eq $listtitle "Posts" }}
{{ .Date.Format "2006-01-02" }} <a href="{{ .RelPermalink }}">{{.Title }}</a>
{{ else }}
<a href="{{ .RelPermalink }}">{{.Title }}</a>
{{ end }}
</div>
</li>
{{ end }}
</ul>
{{ if .Content }}
<div>
{{ with .Content }}<div>{{ . }}</div>{{ end }}
</div>
{{ end }}
<main class="container">
<h1 class="page-title">{{ .Title }}</h1>
{{ with .Content }}
<div>{{ . }}</div>
{{ end }}
</main>
{{ end }}