-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default layouts, update site index
- Loading branch information
dashdashzako
committed
Nov 19, 2019
1 parent
4cd37aa
commit 5044d8e
Showing
20 changed files
with
634 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
title: "Toutes les séquences du MOOC" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
sponsors: | ||
- url: "https://team.inria.fr/potioc/fr/" | ||
name: "Équipe Potioc" | ||
logo: "img/sponsors/logo-equipe-potioc.png" | ||
- url: "https://www.inria.fr/" | ||
name: "Inria" | ||
logo: "img/sponsors/logo-inria.png" | ||
- url: "https://www.u-bordeaux.fr/" | ||
name: "Université de Bordeaux" | ||
logo: "img/sponsors/logo-universite-de-bordeaux.jpg" | ||
- url: "https://cnrs.fr/" | ||
name: "Centre National de la Recherche Scientifique" | ||
logo: "img/sponsors/logo-cnrs.svg" | ||
|
||
publications: | ||
- url: http://binaire.blog.lemonde.fr/2018/07/10/pourquoi-il-faut-developper-laccessibilite-numerique | ||
description: Pourquoi il faut développer l’accessibilité numérique ! | ||
lang: fr | ||
- url: https://hal.archives-ouvertes.fr/hal-01954983 | ||
description: "Online e-learning and cognitive disabilities: A systematic review" | ||
lang: en | ||
- url: https://hal.inria.fr/hal-01761462 | ||
description: "Towards Truly Accessible MOOCs for Persons with Cognitive Disabilities: Design and Field Assessment" | ||
lang: en | ||
- url: https://hal.inria.fr/hal-01848103 | ||
description: Improving the Academic Inclusion of a Student with Special Needs at University Bordeaux | ||
lang: en |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ .Site.LanguageCode }}"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
|
||
{{ hugo.Generator }} | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta property="og:url" content="{{ .Permalink }}"> | ||
|
||
<meta name="application-name" content="mooc-accessibility.inria.fr" /> | ||
|
||
{{ if .IsHome -}} | ||
<title>{{ .Site.Title }}</title> | ||
<meta property="og:title" content="{{ .Site.Title }}"> | ||
<meta property="og:type" content="website"> | ||
<meta name="description" content="{{ .Site.Params.Description }}"> | ||
{{- else -}} | ||
<title>{{ .Title }} – {{ .Site.Title }}</title> | ||
<meta property="og:title" content="{{ .Title }} – {{ .Site.Title }}"> | ||
<meta property="og:type" content="article"> | ||
<meta name="description" content="{{ .Description }}"> | ||
{{- end }} | ||
|
||
{{ block "styles" . -}} | ||
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,700" rel="stylesheet"> | ||
<link rel="stylesheet" href="{{ "css/index.css" | relURL }}"> | ||
{{- end }} | ||
|
||
{{- if isset .Site.Data "matomo" }} | ||
<script type="text/javascript"> | ||
var _paq = window._paq || []; | ||
_paq.push(['trackPageView']); | ||
_paq.push(['enableLinkTracking']); | ||
(function () { | ||
var u = "https://piwik.inria.fr/"; | ||
_paq.push(['setTrackerUrl', u + 'matomo.php']); | ||
_paq.push(['setSiteId', '{{ $.Site.Data.matomo.site_id }}']); | ||
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0]; | ||
g.type = 'text/javascript'; g.async = true; g.defer = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s); | ||
})(); | ||
</script> | ||
{{- end }} | ||
</head> | ||
|
||
{{ block "main" . }}{{ end }} | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{{ define "main" }} | ||
<header> | ||
{{ partial "topbar.html" . }} | ||
|
||
<div class="site-header"> | ||
<div class="container"> | ||
<h1 class="page-name">Les séquences du MOOC</h1> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<main> | ||
<div class="container container--small"> | ||
<ol> | ||
{{ range .Pages.ByWeight }} | ||
<li> | ||
<a href="{{ .RelPermalink }}">{{ .Title }}</a> | ||
</li> | ||
{{ end }} | ||
</ol> | ||
</div> | ||
</main> | ||
|
||
{{ partial "footer.html" . }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,56 @@ | ||
Inria MOOC Accessibilité Numérique | ||
{{ define "main" }} | ||
<header> | ||
{{ partial "topbar.html" . }} | ||
|
||
<div class="site-header"> | ||
<div class="container"> | ||
<h1 class="site-name">MOOC Accessibilité Numérique</h1> | ||
<p class="site-lead"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Laboriosam dignissimos possimus blanditiis aut beatae, in reprehenderit nisi vitae non nostrum suscipit dolores ipsum adipisci quod voluptatum, quibusdam dolorem assumenda magnam. | ||
</p> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<main> | ||
|
||
<div class="container presentation"> | ||
<section> | ||
<h2 class="section-title visually-hidden">Présentation du projet</h2> | ||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Eveniet beatae numquam eos quaerat esse dolorem dolores, tenetur facere aperiam, laborum sint soluta laboriosam nam eius quasi dolor. Ipsa, quisquam maxime?</p> | ||
<p class="cta"> | ||
{{ with .Site.GetPage "/course/w0-s1" -}} | ||
<a href="{{ .RelPermalink }}" class="btn btn--large">Démarrer le MOOC Accessibilité Numérique</a>{{ end }} | ||
<br> | ||
ou | ||
{{ with .Site.GetPage "section" "course" -}} | ||
<a href="{{ .RelPermalink }}">voir la liste des séquences</a>{{ end }}. | ||
</p> | ||
</section> | ||
</div> | ||
|
||
<div class="contributors"> | ||
<section class="container container--large"> | ||
<h2 class="section-title visually-hidden">Contributeurs</h2> | ||
<ul class="contributors-list"> | ||
{{ range $.Site.Data.index.sponsors }} | ||
<li><a href="{{ .url }}"><img src="{{ .logo }}" alt="{{ .name }}"></a></li> | ||
{{ end }} | ||
</ul> | ||
</section> | ||
</div> | ||
|
||
<div class="container publications"> | ||
<section> | ||
<h2 class="section-title">Présentations et publications</h2> | ||
<ul class="publications-list"> | ||
{{ range $.Site.Data.index.publications }} | ||
<li><a href="{{ .url }}" lang="{{ .lang }}">{{ .description }}</a></li> | ||
{{ end }} | ||
</ul> | ||
</section> | ||
</div> | ||
</main> | ||
|
||
{{ partial "footer.html" . }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div class="container"> | ||
<footer class="site-footer"> | ||
<div> | ||
© Inria 2018 - present | ||
</div> | ||
</footer> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{{ if .PrevInSection | or .NextInSection -}} | ||
|
||
<hr> | ||
|
||
<div class="container container--small"> | ||
<nav aria-label="Posts pagination"> | ||
<ul class="posts-pagination"> | ||
{{ if .NextInSection -}} | ||
<li class="posts-pagination__item posts-pagination__prev"> | ||
<a rel="prev" href="{{ .NextInSection.Permalink }}">← Séquence précédente</a> | ||
</li> | ||
{{- end }} | ||
|
||
{{ if .PrevInSection -}} | ||
<li class="posts-pagination__item posts-pagination__next"> | ||
<a rel="next" href="{{ .PrevInSection.Permalink }}">Séquence suivante →</a> | ||
</li> | ||
{{- end }} | ||
</ul> | ||
</nav> | ||
</div> | ||
|
||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<nav class="site-nav"> | ||
<a href="{{ .Site.BaseURL }}" aria-label="Aller à la page d’accueil"> | ||
<img src="{{ "img/logo-aiana.png" | relURL }}" alt="Aiana"> | ||
</a> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ body { | |
*/ | ||
.aip-app { | ||
display: block; | ||
|
||
width: 800px; | ||
height: 546px; | ||
|
||
|
Oops, something went wrong.