Clean start
This commit is contained in:
parent
b1cd3b6101
commit
4a087959fc
32 changed files with 35 additions and 307 deletions
7
layouts/_default/baseof.html
Normal file
7
layouts/_default/baseof.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<!doctype html>
|
||||
<html lang="fr" charset="utf-8">
|
||||
<head> </head>
|
||||
<body>
|
||||
{{ block "main" . }}{{ end }}
|
||||
</body>
|
||||
</html>
|
||||
4
layouts/_default/single.html
Normal file
4
layouts/_default/single.html
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{{ define "main" }}
|
||||
{{ .Content }}
|
||||
<p>This line is from <code>layouts/_default/single.html</code>.</p>
|
||||
{{ end }}
|
||||
4
layouts/index.html
Normal file
4
layouts/index.html
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{{ define "main" }}
|
||||
{{ .Content }}
|
||||
<p>This line is from <code>layouts/index.html</code>.</p>
|
||||
{{ end }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue