initialisation du site
This commit is contained in:
3
layouts/partials/en_tete.html
Normal file
3
layouts/partials/en_tete.html
Normal file
@ -0,0 +1,3 @@
|
||||
<header class="header">
|
||||
<h1>Takubeh<br><small>Kombucha</small></h1>
|
||||
</header>
|
9
layouts/partials/javascripts.html
Normal file
9
layouts/partials/javascripts.html
Normal 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 }}
|
10
layouts/partials/pied_de_page.html
Normal file
10
layouts/partials/pied_de_page.html
Normal 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>
|
9
layouts/partials/styles.html
Normal file
9
layouts/partials/styles.html
Normal 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 }}
|
Reference in New Issue
Block a user