first version
This commit is contained in:
0
themes/lowtech/layouts/404.html
Normal file
0
themes/lowtech/layouts/404.html
Normal file
11
themes/lowtech/layouts/_default/baseof.html
Normal file
11
themes/lowtech/layouts/_default/baseof.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
0
themes/lowtech/layouts/_default/list.html
Normal file
0
themes/lowtech/layouts/_default/list.html
Normal file
0
themes/lowtech/layouts/_default/single.html
Normal file
0
themes/lowtech/layouts/_default/single.html
Normal file
2
themes/lowtech/layouts/index.html
Normal file
2
themes/lowtech/layouts/index.html
Normal file
@ -0,0 +1,2 @@
|
||||
{{ define "main" }}
|
||||
{{ end }}
|
0
themes/lowtech/layouts/partials/footer.html
Normal file
0
themes/lowtech/layouts/partials/footer.html
Normal file
2
themes/lowtech/layouts/partials/head.html
Normal file
2
themes/lowtech/layouts/partials/head.html
Normal file
@ -0,0 +1,2 @@
|
||||
{{ $style := resources.Get "css/main.sass" | toCSS | minify | fingerprint }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
20
themes/lowtech/layouts/partials/header.html
Normal file
20
themes/lowtech/layouts/partials/header.html
Normal file
@ -0,0 +1,20 @@
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<a href="/" class="accueil">
|
||||
<img src="/logo_histoiredunpied_site.svg" alt="logo" class="logo" />
|
||||
</a>
|
||||
<nav class="menu">
|
||||
<ul>
|
||||
<li>
|
||||
<a class="navigation-lien" href="#actu" title="Actualités">Actualités</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="navigation-lien" href="#about" title="À propos">À propos</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="navigation-lien" href="#contact" title="Contact">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
Reference in New Issue
Block a user