diff --git a/hakyll-bootstrap/Main.hs b/hakyll-bootstrap/Main.hs
index b69f6eede007a42ccb8895335091c70e869b7f8e..25ff32b241faa30c26d9e3ca49d82bfd00809018 100644
--- a/hakyll-bootstrap/Main.hs
+++ b/hakyll-bootstrap/Main.hs
@@ -61,16 +61,12 @@ indexCtx posts =
 
 static :: Rules ()
 static = do
-  match "fonts/*" $ do
-    route idRoute
-    compile $ copyFileCompiler
-  match ("img/*" .||. "img/*/**.png") $ do
-    route idRoute
-    compile $ copyFileCompiler
-  match "css/*" $ do
-    route idRoute
-    compile compressCssCompiler
-  match "js/*" $ do
+  match ("fonts/*"
+       .||. "img/*"
+       .||. "img/*/**.png"
+       .||. "css/*"
+       .||. "js/*"
+       .||. "cours/math_tech_info/figs/*") $ do
     route idRoute
     compile $ copyFileCompiler
 
@@ -136,7 +132,7 @@ conc = do
 
 cours_mti :: Rules ()
 cours_mti = do
-  match "cours/math_tech_info/02*.md" $ do
+  match "cours/math_tech_info/*.markdown" $ do
     route $ setExtension "html"
     -- compile $ myPandocCompiler
     compile $ bibtexCompiler
diff --git a/hakyll-bootstrap/index.html b/hakyll-bootstrap/index.html
index 446bed62da1d0a7014773ebc44d83416e5866b88..8772586c5a89dafa5c1476bdcb5fe7ddad319eec 100644
--- a/hakyll-bootstrap/index.html
+++ b/hakyll-bootstrap/index.html
@@ -45,7 +45,7 @@
             <div class="carousel-caption">
               <!-- <h1>Live stream</h1>
               <p>Checkout if I'm live</p> -->
-              <p><a class="btn btn-lg btn-primary" href="https://www.mixer.com/omhepia" role="button">Live stream: Mixer.com</a></p>
+              <p><a class="btn btn-lg btn-primary" href="https://www.twitch.tv/omhepia" role="button">Live stream: Twitch.tv</a></p>
             </div>
           </div>
         </div>
diff --git a/hakyll-bootstrap/templates/nav.html b/hakyll-bootstrap/templates/nav.html
index 34eaf19ebcef57a42679084942eff73c0ccedda3..4dc7a290aaf2d48386ed8be7d08e270d4f5e4a4e 100644
--- a/hakyll-bootstrap/templates/nav.html
+++ b/hakyll-bootstrap/templates/nav.html
@@ -17,7 +17,7 @@
             <li class="dropdown">
               <a href="#" class="dropdown-toggle" data-toggle="dropdown"> Cours <b class="caret"></b></a>
               <ul class="dropdown-menu">
-                <li><a href="#">Mathématiques en technologie de l'information</a></li>
+                <li><a href="/math_tech_info.html">Mathématiques en technologie de l'information</a></li>
                 <li><a href="#">Programmation séquentielle en C</a></li>
                 <li><a href="/prog_conc.html">Programmation concurrente</a></li>
                 <li class="divider"></li>