From 56233b454b0a0d333cc7bb0c8179d10766c4ce57 Mon Sep 17 00:00:00 2001 From: Orestis Malaspinas <orestis.malaspinas@hesge.ch> Date: Sun, 9 Sep 2018 12:29:22 +0200 Subject: [PATCH] index et makefile crees --- Makefile | 17 +++++++++++++++++ index.md | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 Makefile create mode 100644 index.md diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..811a751 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +STYLES := ../css/tufte-css/tufte.css \ + ../css/pandoc.css \ + ../css/pandoc-solarized.css \ + ../css/tufte-extra.css + +all: index.html + +index.html: index.md Makefile + pandoc -o $@ $< -t html5 -c ../css/styling.css + +deploy: all + mkdir -p site + cp index.html site/ + cp -r css site/ + +clean: + rm -rf index.html diff --git a/index.md b/index.md new file mode 100644 index 0000000..4bfb72b --- /dev/null +++ b/index.md @@ -0,0 +1,33 @@ +--- +author: +- Orestis Malaspinas +title: Quelques cours de la filière ITI de hepia +autoSectionLabels: true +autoEqnLabels: true +eqnPrefix: + - "éq." + - "éqs." +chapters: true +numberSections: true +chaptersDepth: 1 +sectionsDepth: 3 +lang: fr +documentclass: book +papersize: A4 +cref: false +pandoc-numbering: + - category: exercice + listing: Liste des exercices +urlcolor: blue +corrige: false +--- + +# Cours de première année + +## [Programmation séquentielle](prog_seq/index.html) + +# Cours de deuxième année + +## [Mathmématique en technologie de l'information](mti/index.html) +## [Sciences en orientation logicielle](sol/index.html) + -- GitLab