Skip to content
Snippets Groups Projects
Unverified Commit 28e33d0e authored by Alexis BENOIT's avatar Alexis BENOIT Committed by GitHub
Browse files

Merge pull request #345 from osunyorg/projects-block

Bloc projets
parents 2bd98ecf e7f65ba8
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
@include grid(1) @include grid(1)
@include grid($block-posts-grid-columns, desktop) @include grid($block-posts-grid-columns, desktop)
article article
@include author-and-time-side-to-side
[itemprop=headline] [itemprop=headline]
a a
@include stretched-link @include stretched-link
...@@ -18,7 +19,6 @@ ...@@ -18,7 +19,6 @@
margin-top: $spacing-2 margin-top: $spacing-2
.media .media
margin-top: 0 margin-top: 0
@include author-and-time-side-to-side
&--grid &--grid
@include media-breakpoint-down(desktop) @include media-breakpoint-down(desktop)
......
.block-projects
.grid
@include grid(2, md)
\ No newline at end of file
...@@ -56,6 +56,7 @@ ...@@ -56,6 +56,7 @@
@import blocks/pages @import blocks/pages
@import blocks/persons @import blocks/persons
@import blocks/posts @import blocks/posts
@import blocks/projects
@import blocks/programs @import blocks/programs
@import blocks/sitemap @import blocks/sitemap
@import blocks/sound @import blocks/sound
......
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
img img
display: block display: block
object-fit: cover object-fit: cover
@if $article-media-aspect-ratio @if $aspect-ratio
aspect-ratio: $article-media-aspect-ratio aspect-ratio: $aspect-ratio
h2, h3, [itemprop=headline], [itemprop=name] h2, h3, [itemprop=headline], [itemprop=name]
@include h3 @include h3
a a
......
...@@ -83,10 +83,11 @@ params: ...@@ -83,10 +83,11 @@ params:
whatsapp: false whatsapp: false
projects: projects:
default_image: false default_image: false
date_format: ":date_long" date_format: "2006"
index: index:
show_categories: true show_categories: true
show_description: true show_description: true
show_year: false
truncate_description: 200 # Set to 0 to disable truncate truncate_description: 200 # Set to 0 to disable truncate
layout: list # grid | list layout: list # grid | list
share_links: share_links:
......
...@@ -223,7 +223,7 @@ posts: ...@@ -223,7 +223,7 @@ posts:
next: Next article next: Next article
next_aria: Next article “{{ .Title }}” next_aria: Next article “{{ .Title }}”
previous: Previous article previous: Previous article
previous_aria: revious article “{{ .Title }}” previous_aria: Previous article “{{ .Title }}”
reading_time: Reading time reading_time: Reading time
see_all: See all posts see_all: See all posts
see_all_in_program: See all program's news see_all_in_program: See all program's news
...@@ -231,6 +231,24 @@ posts: ...@@ -231,6 +231,24 @@ posts:
share: Please, share share: Please, share
share_aria: Share on “{{ .Title }}” - extern link share_aria: Share on “{{ .Title }}” - extern link
title: News title: News
projects:
author: Author
category:
one: Category
other: Categories
informations: Informations
next: Next project
next_aria: Next project “{{ .Title }}”
previous: Previous project
previous_aria: Previous project “{{ .Title }}”
reading_time: Reading time
see_all: See all posts
see_all_in_program: See all program's projects
see_all_in_category: See all projects in “{{ .Title }}”
share: Please, share
share_aria: Share on “{{ .Title }}” - extern link
title: Projects
year: Year
programs: programs:
accessibility: Accessibility accessibility: Accessibility
administrative_information: Administrative information administrative_information: Administrative information
......
...@@ -232,13 +232,11 @@ posts: ...@@ -232,13 +232,11 @@ posts:
share: Partager sur share: Partager sur
share_aria: Partager sur “{{ .Title }}” - lien externe share_aria: Partager sur “{{ .Title }}” - lien externe
title: Actualités title: Actualités
projects: projects:
author: Auteur·rice author: Auteur·rice
category: category:
one: Catégorie one: Catégorie
other: Catégories other: Catégories
date: Date
informations: Informations informations: Informations
next: Projet suivant next: Projet suivant
next_aria: Projet suivant “{{ .Title }}” next_aria: Projet suivant “{{ .Title }}”
...@@ -251,6 +249,7 @@ projects: ...@@ -251,6 +249,7 @@ projects:
share: Partager sur share: Partager sur
share_aria: Partager sur “{{ .Title }}” - lien externe share_aria: Partager sur “{{ .Title }}” - lien externe
title: Projets title: Projets
year: Année
programs: programs:
accessibility: Accessibilité accessibility: Accessibilité
administrative_information: Informations administratives administrative_information: Informations administratives
......
{{- $block := .block -}}
{{- $block_title := .block.title -}}
{{- $block_class := partial "GetBlockClass" .block -}}
{{- $layout := "grid" -}}
{{- with .block.data -}}
<div class="{{ $block_class }}">
<div class="container">
<div class="block-content">
{{ partial "blocks/top.html" (dict
"title" $block_title
"heading_level" $block.ranks.self
) }}
{{- partial (printf "blocks/templates/projects/%s.html" $layout) (dict
"projects" .projects
"heading_level" $block.ranks.children
) }}
</div>
</div>
</div>
{{- end -}}
{{ $heading_level := .heading_level | default 3 }}
{{ $heading := printf "h%d" $heading_level }}
<div class="grid">
{{ range $project := .projects -}}
{{ with site.GetPage .file }}
{{ partial "projects/project.html" (dict
"project" .
"heading" $heading
) }}
{{ end }}
{{ end }}
</div>
{{ $heading_level := .heading_level | default 3 }}
{{ $heading := printf "h%d" $heading_level }}
<div class="list">
{{ range $project := .projects -}}
{{ with site.GetPage .file }}
{{ partial "projects/project.html" (dict
"project" .
"heading" $heading
) }}
{{ end }}
{{ end }}
</div>
...@@ -5,10 +5,12 @@ ...@@ -5,10 +5,12 @@
{{ partial "projects/categories.html" . }} {{ partial "projects/categories.html" . }}
</li> </li>
{{ end }} {{ end }}
<li> {{ with .Params.year }}
<span>{{ i18n "projects.date" }}</span> <li>
<time datetime="{{ .Date.Format "2006-01-02T15:04" }}">{{ .Date | time.Format site.Params.projects.date_format }}</time> <span>{{ i18n "projects.year" }}</span>
</li> <time datetime="{{ . }}">{{ . }}</time>
</li>
{{ end }}
<li class="social-share"> <li class="social-share">
<span>{{ i18n "projects.share" }}</span> <span>{{ i18n "projects.share" }}</span>
{{ partial "commons/share.html" . }} {{ partial "commons/share.html" . }}
......
...@@ -26,10 +26,12 @@ ...@@ -26,10 +26,12 @@
{{ if site.Params.projects.index.show_categories }} {{ if site.Params.projects.index.show_categories }}
{{- partial "projects/categories" . -}} {{- partial "projects/categories" . -}}
{{ end }} {{ end }}
<div class="project-meta"> {{ if and site.Params.projects.index.show_year .Params.year }}
<time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02T15:04" }}">{{ .Date | time.Format site.Params.projects.date_format }}</time> <div class="project-meta">
</div> <time itemprop="datePublished" datetime="{{ .Params.year }}">{{ .Params.year }}</time>
</div>
{{ end }}
</div> </div>
<div class="media"> <div class="media">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment