Passage à HUGO

This commit is contained in:
Yannick Francois
2017-12-23 23:43:04 +01:00
parent 8a81a242f7
commit 2056ab9437
148 changed files with 130 additions and 219 deletions
+20
View File
@@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2017 YOUR_NAME_HERE
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,13 @@
1: "Janvier"
2: "Février"
3: "Mars"
4: "Avril"
5: "Mai"
6: "Juin"
7: "Juillet"
8: "Août"
9: "Septembre"
10: "Octobre"
11: "Novembre"
12: "Décembre"
@@ -0,0 +1 @@
ici ? dans les listes .
@@ -0,0 +1,4 @@
Dans single
{{.Content}}
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang=fr>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>
body {
font-family: Arial, sans-serif;
color: black;
}
#journaux {
margin: 2rem;
width: 30rem;
text-align: justify;
line-height: 1.2rem;
}
#journaux blockquote {
border-left: 10px solid lightgrey;
font-size: 1.2rem;
font-weight: bolder;
font-style: italic;
}
#journaux p {
margin: 1.2rem;
text-indent: 1.2rem;
}
#journaux h1 {
margin: 1.2rem 0 0 0;
padding: 2rem 0 1rem 0;
border-top: 1px solid black;
}
#journaux time {
display: block;
text-align: right;
font-style: italic;
}
</style>
<title>Journal d'un formateur en bootcamp</title>
<main id=journaux>
{{range .Data.Pages.ByTitle}}
<section>
<h1>{{ .Title }}</h1>
<time>{{.Date.Day}} {{ index $.Site.Data.mois (printf "%d" .Date.Month) }} {{.Date.Year}}</time>
{{ .Content }}
</section>
{{end}}
</main>
</html>
@@ -0,0 +1,4 @@
<section>
<h1>{{.Title}}</h1>
</section>
+21
View File
@@ -0,0 +1,21 @@
# theme.toml template for a Hugo theme
# See https://github.com/gohugoio/hugoThemes#themetoml for an example
name = "Journal Formateur dans un bootcamp"
license = "MIT"
licenselink = "https://github.com/yaf/journal-formateur-2015/blob/master/LICENSE.md"
description = ""
homepage = "http://example.com/"
tags = []
features = []
min_version = "0.30.2"
[author]
name = ""
homepage = ""
# If porting an existing theme
[original]
name = ""
homepage = ""
repo = ""