Suppression de la flêche pour remonter en haut de la page
This commit is contained in:
parent
3e173c0e7b
commit
82e06133b3
8 changed files with 28 additions and 53 deletions
26
layouts/_default/baseof.html
Normal file
26
layouts/_default/baseof.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
{{ with .Site.LanguageCode }}<html lang="{{ . }}">{{ else }}<html>{{ end }}
|
||||
<head>
|
||||
{{- partial "head.html" . -}}
|
||||
{{- partial "custom-head.html" . -}}
|
||||
</head>
|
||||
<body>
|
||||
{{- partial "prepend-body.html" . -}}
|
||||
<div class="container">
|
||||
{{- partial "notification.html" . -}}
|
||||
{{- partial "site-header.html" . -}}
|
||||
{{- partial "global-menu.html" . -}}
|
||||
<div class="content-container">
|
||||
<main>
|
||||
{{- block "main" . -}}{{- end -}}
|
||||
<footer>
|
||||
{{- partial "content-footer.html" . -}}
|
||||
{{- partial "powered.html" . -}}
|
||||
</footer>
|
||||
</main>
|
||||
|
||||
{{- partial "sidebar.html" . -}}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue