Wrap container with section for responsive padding
parent
a7d1ab3b21
commit
82f1516371
|
@ -1,25 +1,27 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div class="container is-max-widescreen">
|
<div class="section">
|
||||||
<main>
|
<div class="container is-max-widescreen">
|
||||||
{{ with .Content }}
|
<main>
|
||||||
<article class="message mt-5 mb-2">
|
{{ with .Content }}
|
||||||
<div class="message-body">
|
<article class="message mt-5 mb-2">
|
||||||
{{ . }}
|
<div class="message-body">
|
||||||
</div>
|
{{ . }}
|
||||||
</article>
|
</div>
|
||||||
{{ end }}
|
</article>
|
||||||
<div class="columns is-multiline is-mobile">
|
|
||||||
<!-- Custom paginator with only blog posts -->
|
|
||||||
{{ $paginator := .Paginate (where .Site.RegularPages "FirstSection.Section" "posts") }}
|
|
||||||
{{ range $paginator.Pages }}
|
|
||||||
{{ if (eq .FirstSection.Section "posts")}}
|
|
||||||
<div class="column is-one-third">
|
|
||||||
{{ .Render "summary" }}
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
<div class="columns is-multiline">
|
||||||
</div>
|
<!-- Custom paginator with only blog posts -->
|
||||||
{{- partial "pagination.html" $paginator -}}
|
{{ $paginator := .Paginate (where .Site.RegularPages "FirstSection.Section" "posts") }}
|
||||||
</main>
|
{{ range $paginator.Pages }}
|
||||||
|
{{ if (eq .FirstSection.Section "posts")}}
|
||||||
|
<div class="column is-variable is-one-third">
|
||||||
|
{{ .Render "summary" }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{- partial "pagination.html" $paginator -}}
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -1,60 +1,62 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div class="container">
|
<div class="section">
|
||||||
<div class="columns mt-5 is-variable is-mobile is-8">
|
<div class="container">
|
||||||
<!--
|
<div class="columns mt-5 is-variable is-8">
|
||||||
|
<!--
|
||||||
If the current page is a blog post and belongs to a case, we will add a side menu
|
If the current page is a blog post and belongs to a case, we will add a side menu
|
||||||
with all other blog posts belonging to that case, emphasis to the current.
|
with all other blog posts belonging to that case, emphasis to the current.
|
||||||
-->
|
-->
|
||||||
{{ if (and .IsPage (eq .FirstSection.Section "posts"))}}
|
{{ if (and .IsPage (eq .FirstSection.Section "posts"))}}
|
||||||
{{ with .CurrentSection }}
|
{{ with .CurrentSection }}
|
||||||
<aside class="menu column is-3 mt-2 is-align-self-flex-start">
|
<aside class="menu column is-3 mt-2 is-align-self-flex-start">
|
||||||
<p class="menu-label">
|
<p class="menu-label">
|
||||||
Dans le dossier « <a href="{{ .Permalink }}">{{ .Params.Title }} »</a>...
|
Dans le dossier « <a href="{{ .Permalink }}">{{ .Params.Title }} »</a>...
|
||||||
</p>
|
</p>
|
||||||
<div class="menu-list">
|
<div class="menu-list">
|
||||||
{{ $posts := (where $.Site.RegularPages "CurrentSection.Params.Code" "==" $.CurrentSection.Params.Code )}}
|
{{ $posts := (where $.Site.RegularPages "CurrentSection.Params.Code" "==" $.CurrentSection.Params.Code )}}
|
||||||
{{ $postsSorted := (sort $posts "Date" )}}
|
{{ $postsSorted := (sort $posts "Date" )}}
|
||||||
{{ range $postsSorted }}
|
{{ range $postsSorted }}
|
||||||
<a {{ if eq $.Title .Title }} class="is-active" {{ end }} href="{{ .Permalink }}">{{ .Title }}</a>
|
<a {{ if eq $.Title .Title }} class="is-active" {{ end }} href="{{ .Permalink }}">{{ .Title }}</a>
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
<section class="column is-7">
|
|
||||||
<div>
|
|
||||||
<article>
|
|
||||||
{{ with .Params.summary }}
|
|
||||||
{{ . }}
|
|
||||||
<br /><br />
|
|
||||||
{{ end }}
|
|
||||||
{{ if (or (not .Params.notoc) (gt .WordCount 400)) }}
|
|
||||||
<div class="message is-info">
|
|
||||||
<div class="message-header">Sommaire</div>
|
|
||||||
<!-- Appreciate this horrible trick, even a 2000's HTML generator won't generate such code -->
|
|
||||||
<div class="message-body pt-1">{{ .TableOfContents | replaceRE "<a" "<a style='text-decoration:none;'" | safeHTML }}</div>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
{{ .Content }}
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
<aside class="container level my-5">
|
|
||||||
<div class="level-left">
|
|
||||||
{{ with .PrevInSection }}
|
|
||||||
<div class="level-item">
|
|
||||||
<a class="button is-info" href="{{ .Permalink }}">« {{ .Title }}</a>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
<div class="level-right">
|
|
||||||
{{ with .NextInSection }}
|
|
||||||
<div class="level-item">
|
|
||||||
<a class="button is-info" href="{{ .Permalink }}">{{ .Title }} »</a>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
<section class="column is-7">
|
||||||
|
<div>
|
||||||
|
<article>
|
||||||
|
{{ with .Params.summary }}
|
||||||
|
{{ . }}
|
||||||
|
<br /><br />
|
||||||
|
{{ end }}
|
||||||
|
{{ if (or (not .Params.notoc) (gt .WordCount 400)) }}
|
||||||
|
<div class="message is-info">
|
||||||
|
<div class="message-header">Sommaire</div>
|
||||||
|
<!-- Appreciate this horrible trick, even a 2000's HTML generator won't generate such code -->
|
||||||
|
<div class="message-body pt-1">{{ .TableOfContents | replaceRE "<a" "<a style='text-decoration:none;'" | safeHTML }}</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
{{ .Content }}
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
<aside class="container level my-5">
|
||||||
|
<div class="level-left">
|
||||||
|
{{ with .PrevInSection }}
|
||||||
|
<div class="level-item">
|
||||||
|
<a class="button is-info" href="{{ .Permalink }}">« {{ .Title }}</a>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
<div class="level-right">
|
||||||
|
{{ with .NextInSection }}
|
||||||
|
<div class="level-item">
|
||||||
|
<a class="button is-info" href="{{ .Permalink }}">{{ .Title }} »</a>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<div class="card has-equal-height mt-5">
|
<div class="card has-equal-height mt-5">
|
||||||
<div class="card-image">
|
<div class="card-image">
|
||||||
<figure class="image is-4by3 mt-5">
|
<figure class="image is-5by3 mt-5">
|
||||||
<img src="https://bulma.io/images/placeholders/1280x960.png" alt="Placeholder image">
|
<img src="https://bulma.io/images/placeholders/800x480.png" alt="Placeholder image">
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-content" style="height:100%;">
|
<div class="card-content" style="height:100%;">
|
||||||
|
|
Loading…
Reference in New Issue