initialisation du site

This commit is contained in:
2024-02-02 12:39:18 +01:00
commit fc5c2f4972
73 changed files with 1305 additions and 0 deletions

View File

@ -0,0 +1,3 @@
<header class="header">
<h1>Takubeh<br><small>Kombucha</small></h1>
</header>

View File

@ -0,0 +1,9 @@
{{ $js := resources.Get "js/main.js" }}
{{ with $js }}
{{ $secureJS := . | js.Build }}
{{ if not $.Site.Params.debug }}
{{ $secureJS = $secureJS | minify }}
{{ end }}
{{ $secureJS = $secureJS | fingerprint }}
<script src="{{ $secureJS.Permalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script>
{{ end }}

View File

@ -0,0 +1,10 @@
<footer class="footer color -red3">
<div class="content">
<p>
E-mail : <a href="mailto:murielle@takubeh.fr">murielle@takubeh.fr</a><br>
Site web : <a href="https://takubeh.fr/">takubeh.fr</a><br>
Instagram : <a href="https://www.instagram.com/takubehkombucha/">www.instagram.com/takubehkombucha/</a><br>
Facebook : <a href="https://www.facebook.com/profile.php?id=100076292530719">Takubeh Kombucha</a><br>
</p>
</div>
</footer>

View File

@ -0,0 +1,9 @@
{{ $style := resources.Get "styles/main.scss" }}
{{ with $style }}
{{ $styleCSS := . | toCSS }}
{{ if not $.Site.Params.debug }}
{{ $styleCSS = $styleCSS | minify }}
{{ end }}
{{ $styleCSS = $styleCSS | fingerprint }}
<link rel="stylesheet" href="{{ $styleCSS.Permalink }}" integrity="{{ $styleCSS.Data.Integrity }}">
{{ end }}