Téléverser les fichiers vers "Theme-Bento/layouts/_default"
This commit is contained in:
parent
5264d6027c
commit
759388c3db
20
Theme-Bento/layouts/_default/baseof.html
Normal file
20
Theme-Bento/layouts/_default/baseof.html
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ .Site.Language.Lang }}" data-theme="light">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
||||||
|
{{ $style := resources.Get "css/style.css" | resources.Minify }}
|
||||||
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
<main>
|
||||||
|
{{ block "main" . }}{{ end }}
|
||||||
|
</main>
|
||||||
|
{{ partial "footer.html" . }}
|
||||||
|
{{ $js := resources.Get "js/theme-toggle.js" | resources.Minify }}
|
||||||
|
<script src="{{ $js.RelPermalink }}"></script>
|
||||||
|
{{- partial "scripts.html" . -}}
|
||||||
|
</body>
|
||||||
|
</html>
|
7
Theme-Bento/layouts/_default/home.html
Normal file
7
Theme-Bento/layouts/_default/home.html
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ .Content }}
|
||||||
|
{{ range site.RegularPages }}
|
||||||
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
||||||
|
{{ .Summary }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
32
Theme-Bento/layouts/_default/list.html
Normal file
32
Theme-Bento/layouts/_default/list.html
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<div class="blog-container">
|
||||||
|
<h1 class="blog-title">Blog</h1>
|
||||||
|
<div class="bento-grid blog-grid">
|
||||||
|
{{ range $index, $element := .Pages }}
|
||||||
|
<article class="bento-item {{ index (slice "large" "medium" "small") (mod $index 3) }}">
|
||||||
|
<a href="{{ .Permalink }}" class="bento-link">
|
||||||
|
{{ if .Params.image }}
|
||||||
|
<div class="bento-image">
|
||||||
|
<img src="{{ .Params.image }}" alt="{{ .Title }}">
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
<div class="bento-content">
|
||||||
|
<h2>{{ .Title }}</h2>
|
||||||
|
<div class="post-meta">
|
||||||
|
<time>{{ .Date.Format "02 Jan 2006" }}</time>
|
||||||
|
{{ with .Params.categories }}
|
||||||
|
<span class="categories">
|
||||||
|
{{ range . }}
|
||||||
|
<span class="category">{{ . }}</span>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
<p>{{ .Summary }}</p>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</article>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
42
Theme-Bento/layouts/_default/single.html
Normal file
42
Theme-Bento/layouts/_default/single.html
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<article class="blog-post">
|
||||||
|
<header class="post-header">
|
||||||
|
<h1>{{ .Title }}</h1>
|
||||||
|
<div class="post-meta">
|
||||||
|
<time>{{ .Date.Format "02 January 2006" }}</time>
|
||||||
|
{{ with .Params.categories }}
|
||||||
|
<div class="categories">
|
||||||
|
{{ range . }}
|
||||||
|
<span class="category">{{ . }}</span>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
{{ with .Params.image }}
|
||||||
|
<div class="post-hero">
|
||||||
|
<img src="{{ . }}" alt="{{ $.Title }}">
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer class="post-footer">
|
||||||
|
{{ with .PrevInSection }}
|
||||||
|
<a href="{{ .Permalink }}" class="post-nav prev">
|
||||||
|
<span>← Article précédent</span>
|
||||||
|
<h3>{{ .Title }}</h3>
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ with .NextInSection }}
|
||||||
|
<a href="{{ .Permalink }}" class="post-nav next">
|
||||||
|
<span>Article suivant →</span>
|
||||||
|
<h3>{{ .Title }}</h3>
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
{{ end }}
|
Loading…
x
Reference in New Issue
Block a user