Add Bulma, remove ids, start using classes

master
Quentin Duchemin 2021-05-20 15:52:06 +02:00
parent 411418190c
commit dd36705f33
Signed by: Chosto
GPG Key ID: 0547178FEEDE7D6B
6 changed files with 14 additions and 10 deletions

View File

@ -9,6 +9,7 @@ languageName: Français
watch: true
paginate: 5
summaryLength: 50
# All pages under posts section will have this link structure
permalinks:
posts: /:sections/:title/

View File

@ -4,7 +4,7 @@
<body>
{{- partial "navbar.html" . -}}
{{- partial "header.html" . -}}
<div id="content">
<div class="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "about.html" . -}}

View File

@ -1,3 +1,3 @@
<aside id="about">
<aside>
blablabla je suis Quentin ajouter une image
</aside>

View File

@ -1,5 +1,8 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ $style := resources.Get "css/bulma.min.css" }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
<title>
{{ .Site.Title }}
</title>

View File

@ -1,14 +1,14 @@
{{ define "main" }}
<aside id="meta">
<aside>
<div>
<section>
<time class="post-date" datetime="{{ .Date.Format `2006-01-02T15:04:05Z07:00` | safeHTML }}">
Article publié le {{ .Date.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Date.Month) }} {{ .Date.Year }} (dernière modification le {{ .Lastmod.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Lastmod.Month) }} {{ .Lastmod.Year }})
</time>
<h4 id="wordcount"> {{ .FuzzyWordCount }} mots </h4>
<h4>{{ .FuzzyWordCount }} mots </h4>
</section>
{{ with .Params.categories }}
<ul id="categories">
<ul>
{{ range . }}
<li><a href="{{ "categories" | absURL }}/{{ . | urlize }}">{{ . }}</a> </li>
{{ end }}
@ -21,7 +21,7 @@ If the current blog post belongs to a case, we will add a side menu
with all other blog posts belonging to that case, emphasis to the current.
-->
{{ with .CurrentSection.Params.Title }}
<aside class="menu" id="case">
<aside class="menu">
<p class="menu-label">
Dans le dossier « {{ . }} »...
</p>
@ -38,15 +38,15 @@ with all other blog posts belonging to that case, emphasis to the current.
</ul>
</aside>
{{ end }}
<section id="main">
<h1 id="title">{{ .Title }}</h1>
<section>
<h1>{{ .Title }}</h1>
<div>
<article id="content">
<article>
{{ .Content }}
</article>
</div>
</section>
<aside id="prev_next">
<aside>
<div>
{{ with .PrevInSection }}
<a class="previous" href="{{ .Permalink }}"> {{ .Title }}</a>