diff --git a/.gitignore b/.gitignore
index 557478e..f16337d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,4 @@
-_gen/
-test-hugo/themes/ananke/
-test-hugo/public/
+/resources/
+public/
node_modules/
.firebase/
\ No newline at end of file
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index 33abea2..0000000
--- a/.gitmodules
+++ /dev/null
@@ -1,6 +0,0 @@
-[submodule "themes/ga-hugo-theme"]
- path = themes/ga-hugo-theme
- url = https://github.com/giraffeacademy/ga-hugo-theme
-[submodule "test-hugo/themes/ga-hugo-theme"]
- path = test-hugo/themes/ga-hugo-theme
- url = https://github.com/giraffeacademy/ga-hugo-theme
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4f4df5f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,71 @@
+# Proto Site DevFest 2019
+
+## Requirement
+
+* [Install Hugo](https://gohugo.io/getting-started/installing/)
+ Note: you need to install the extended version.
+
+* If you need to use tools, or deploy, you also need [NodeJS](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com/lang/en/docs/install).
+
+
+## Run Local site
+
+
+Just run
+
+```
+hugo server -D
+```
+
+Notice that the `-D` flag is used to rendrer draft elements.
+
+More information [here](https://gohugo.io/commands/hugo_server/)
+
+## Build
+
+Just run
+
+```
+hugo
+```
+
+
+More information [here](https://gohugo.io/commands/hugo/)
+
+## Edit data
+
+You can edit
+
+- general information about the site into the `config.toml` file.
+- some data into `data/*.yml` files, like header or footer information
+- some content into `content/**` files.
+- some static assets like images into the `static/*` folder
+
+### Create a new blog entry
+
+You can use `hugo new blog/i-create-a-new-entry.md` command and then edit it.
+Or just copy an already existing blog entry, and update the content.
+
+
+## Tooling
+
+First you need to install dependencies with `yarn`.
+
+
+### Publish
+
+To publish the site on firebase, just run `firebase deploy`.
+Note that you need to authenticate once with `firebase login`
+
+
+### Extract data from CFP
+
+TODO...
+
+
+## TODO
+
+* [] i18n
+* [] a11y
+* [] optimizations
+* [] more tooling
\ No newline at end of file
diff --git a/test-hugo/config.toml b/config.toml
similarity index 99%
rename from test-hugo/config.toml
rename to config.toml
index 8138934..a92e849 100644
--- a/test-hugo/config.toml
+++ b/config.toml
@@ -19,6 +19,7 @@ googleAnalytics = "UA-37717223-7"
favicon = "/images/favicon.ico"
themeColor = "#673ab7"
title = "DevFest Toulouse 2019"
+ date = "2019-10-03"
description = "Le DevFest, ou 'Developers Festival', est une conférence technique destinée aux développeurs. Elle s'adresse aussi bien aux étudiants, aux professionnels ou tout simplement aux curieux technophiles."
images = ["/images/logo.svg", "/images/logo-monochrome.svg"]
email = "contact@devfesttoulouse.fr"
diff --git a/test-hugo/content/_index.md b/content/_index.md
similarity index 84%
rename from test-hugo/content/_index.md
rename to content/_index.md
index f826cc5..0cb1211 100644
--- a/test-hugo/content/_index.md
+++ b/content/_index.md
@@ -13,7 +13,7 @@ partners: true
-
Jeudi 8 Novembre, 2019
+ 10 Octobre, 2019
Centre de Congrès Pierre Baudis
diff --git a/test-hugo/content/blog/_index.md b/content/blog/_index.md
similarity index 100%
rename from test-hugo/content/blog/_index.md
rename to content/blog/_index.md
diff --git a/test-hugo/content/blog/cfp.md b/content/blog/cfp.md
similarity index 99%
rename from test-hugo/content/blog/cfp.md
rename to content/blog/cfp.md
index 5a23657..e358b0b 100644
--- a/test-hugo/content/blog/cfp.md
+++ b/content/blog/cfp.md
@@ -2,7 +2,6 @@
title: Appel à orateurs
brief: Ouverture du Call for Papers
image: speakers.jpg
-color: #fff
date: 2018-04-03T12:47:57+01:00
draft: true
---
diff --git a/test-hugo/content/blog/cfp/pauline.jpg b/content/blog/cfp/pauline.jpg
similarity index 100%
rename from test-hugo/content/blog/cfp/pauline.jpg
rename to content/blog/cfp/pauline.jpg
diff --git a/test-hugo/content/blog/cfp/speakers.jpg b/content/blog/cfp/speakers.jpg
similarity index 100%
rename from test-hugo/content/blog/cfp/speakers.jpg
rename to content/blog/cfp/speakers.jpg
diff --git a/test-hugo/content/blog/cfp/sylvain.jpg b/content/blog/cfp/sylvain.jpg
similarity index 100%
rename from test-hugo/content/blog/cfp/sylvain.jpg
rename to content/blog/cfp/sylvain.jpg
diff --git a/test-hugo/content/blog/cfp/tugdual.jpg b/content/blog/cfp/tugdual.jpg
similarity index 100%
rename from test-hugo/content/blog/cfp/tugdual.jpg
rename to content/blog/cfp/tugdual.jpg
diff --git a/test-hugo/content/blog/cr-cfp.md b/content/blog/cr-cfp.md
similarity index 99%
rename from test-hugo/content/blog/cr-cfp.md
rename to content/blog/cr-cfp.md
index 8697818..c4a9358 100644
--- a/test-hugo/content/blog/cr-cfp.md
+++ b/content/blog/cr-cfp.md
@@ -2,7 +2,6 @@
title: Retrouvez la liste complète des talks !
brief: Compte rendu CFP
image: cover.jpg
-color: #fff
date: 2018-08-02T12:47:57+01:00
draft: true
---
diff --git a/test-hugo/content/blog/cr-cfp/cover.jpg b/content/blog/cr-cfp/cover.jpg
similarity index 100%
rename from test-hugo/content/blog/cr-cfp/cover.jpg
rename to content/blog/cr-cfp/cover.jpg
diff --git a/test-hugo/content/blog/cr-cfp/graph-theme.png b/content/blog/cr-cfp/graph-theme.png
similarity index 100%
rename from test-hugo/content/blog/cr-cfp/graph-theme.png
rename to content/blog/cr-cfp/graph-theme.png
diff --git a/test-hugo/content/blog/cr-cfp/nombre-proposition.png b/content/blog/cr-cfp/nombre-proposition.png
similarity index 100%
rename from test-hugo/content/blog/cr-cfp/nombre-proposition.png
rename to content/blog/cr-cfp/nombre-proposition.png
diff --git a/test-hugo/content/blog/hello-2019.md b/content/blog/hello-2019.md
similarity index 99%
rename from test-hugo/content/blog/hello-2019.md
rename to content/blog/hello-2019.md
index a4ea092..646c9e6 100644
--- a/test-hugo/content/blog/hello-2019.md
+++ b/content/blog/hello-2019.md
@@ -2,7 +2,6 @@
title: Hello 2019
brief: Lancement du DevFest Toulouse 2018
image: launch2018.jpg
-color: #fff
date: 2018-03-27T12:47:57+01:00
draft: true
---
diff --git a/test-hugo/content/blog/hello-2019/baudis.jpg b/content/blog/hello-2019/baudis.jpg
similarity index 100%
rename from test-hugo/content/blog/hello-2019/baudis.jpg
rename to content/blog/hello-2019/baudis.jpg
diff --git a/test-hugo/content/blog/hello-2019/launch2018.jpg b/content/blog/hello-2019/launch2018.jpg
similarity index 100%
rename from test-hugo/content/blog/hello-2019/launch2018.jpg
rename to content/blog/hello-2019/launch2018.jpg
diff --git a/test-hugo/content/code-of-conduct.md b/content/code-of-conduct.md
similarity index 100%
rename from test-hugo/content/code-of-conduct.md
rename to content/code-of-conduct.md
diff --git a/test-hugo/content/faq.md b/content/faq.md
similarity index 100%
rename from test-hugo/content/faq.md
rename to content/faq.md
diff --git a/test-hugo/content/schedule.md b/content/schedule.md
similarity index 100%
rename from test-hugo/content/schedule.md
rename to content/schedule.md
diff --git a/test-hugo/content/schedule/_index.md b/content/schedule/_index.md
similarity index 100%
rename from test-hugo/content/schedule/_index.md
rename to content/schedule/_index.md
diff --git a/test-hugo/content/speakers/_index.md b/content/speakers/_index.md
similarity index 100%
rename from test-hugo/content/speakers/_index.md
rename to content/speakers/_index.md
diff --git a/test-hugo/content/speakers/alessio_coltellacci.md b/content/speakers/alessio_coltellacci.md
similarity index 100%
rename from test-hugo/content/speakers/alessio_coltellacci.md
rename to content/speakers/alessio_coltellacci.md
diff --git a/test-hugo/content/speakers/alexandre_delattre.md b/content/speakers/alexandre_delattre.md
similarity index 100%
rename from test-hugo/content/speakers/alexandre_delattre.md
rename to content/speakers/alexandre_delattre.md
diff --git a/test-hugo/content/speakers/anastasia_lieva.md b/content/speakers/anastasia_lieva.md
similarity index 100%
rename from test-hugo/content/speakers/anastasia_lieva.md
rename to content/speakers/anastasia_lieva.md
diff --git a/test-hugo/content/speakers/ane_diaz_de_tuesta.md b/content/speakers/ane_diaz_de_tuesta.md
similarity index 100%
rename from test-hugo/content/speakers/ane_diaz_de_tuesta.md
rename to content/speakers/ane_diaz_de_tuesta.md
diff --git a/test-hugo/content/speakers/arnaud_bos.md b/content/speakers/arnaud_bos.md
similarity index 100%
rename from test-hugo/content/speakers/arnaud_bos.md
rename to content/speakers/arnaud_bos.md
diff --git a/test-hugo/content/speakers/benoit_el_amrani.md b/content/speakers/benoit_el_amrani.md
similarity index 100%
rename from test-hugo/content/speakers/benoit_el_amrani.md
rename to content/speakers/benoit_el_amrani.md
diff --git a/test-hugo/content/speakers/benoit_prioux.md b/content/speakers/benoit_prioux.md
similarity index 100%
rename from test-hugo/content/speakers/benoit_prioux.md
rename to content/speakers/benoit_prioux.md
diff --git a/test-hugo/content/speakers/celine_louvet.md b/content/speakers/celine_louvet.md
similarity index 100%
rename from test-hugo/content/speakers/celine_louvet.md
rename to content/speakers/celine_louvet.md
diff --git a/test-hugo/content/speakers/comet_nicolas.md b/content/speakers/comet_nicolas.md
similarity index 100%
rename from test-hugo/content/speakers/comet_nicolas.md
rename to content/speakers/comet_nicolas.md
diff --git a/test-hugo/content/speakers/david_gageot.md b/content/speakers/david_gageot.md
similarity index 100%
rename from test-hugo/content/speakers/david_gageot.md
rename to content/speakers/david_gageot.md
diff --git a/test-hugo/content/speakers/david_pilato.md b/content/speakers/david_pilato.md
similarity index 100%
rename from test-hugo/content/speakers/david_pilato.md
rename to content/speakers/david_pilato.md
diff --git a/test-hugo/content/speakers/emmanuel_demey.md b/content/speakers/emmanuel_demey.md
similarity index 100%
rename from test-hugo/content/speakers/emmanuel_demey.md
rename to content/speakers/emmanuel_demey.md
diff --git a/test-hugo/content/speakers/estelle_landry.md b/content/speakers/estelle_landry.md
similarity index 100%
rename from test-hugo/content/speakers/estelle_landry.md
rename to content/speakers/estelle_landry.md
diff --git a/test-hugo/content/speakers/fabien_tregan.md b/content/speakers/fabien_tregan.md
similarity index 100%
rename from test-hugo/content/speakers/fabien_tregan.md
rename to content/speakers/fabien_tregan.md
diff --git a/test-hugo/content/speakers/francois_teychene.md b/content/speakers/francois_teychene.md
similarity index 100%
rename from test-hugo/content/speakers/francois_teychene.md
rename to content/speakers/francois_teychene.md
diff --git a/test-hugo/content/speakers/frederic_cabestre.md b/content/speakers/frederic_cabestre.md
similarity index 100%
rename from test-hugo/content/speakers/frederic_cabestre.md
rename to content/speakers/frederic_cabestre.md
diff --git a/test-hugo/content/speakers/giulia_bianchi.md b/content/speakers/giulia_bianchi.md
similarity index 100%
rename from test-hugo/content/speakers/giulia_bianchi.md
rename to content/speakers/giulia_bianchi.md
diff --git a/test-hugo/content/speakers/guillaume_andrieu.md b/content/speakers/guillaume_andrieu.md
similarity index 100%
rename from test-hugo/content/speakers/guillaume_andrieu.md
rename to content/speakers/guillaume_andrieu.md
diff --git a/test-hugo/content/speakers/guillaume_laforge.md b/content/speakers/guillaume_laforge.md
similarity index 100%
rename from test-hugo/content/speakers/guillaume_laforge.md
rename to content/speakers/guillaume_laforge.md
diff --git a/test-hugo/content/speakers/guillaume_membre.md b/content/speakers/guillaume_membre.md
similarity index 100%
rename from test-hugo/content/speakers/guillaume_membre.md
rename to content/speakers/guillaume_membre.md
diff --git a/test-hugo/content/speakers/horacio_gonzalez.md b/content/speakers/horacio_gonzalez.md
similarity index 100%
rename from test-hugo/content/speakers/horacio_gonzalez.md
rename to content/speakers/horacio_gonzalez.md
diff --git a/test-hugo/content/speakers/hubert_sablonniere.md b/content/speakers/hubert_sablonniere.md
similarity index 100%
rename from test-hugo/content/speakers/hubert_sablonniere.md
rename to content/speakers/hubert_sablonniere.md
diff --git a/test-hugo/content/speakers/jean-francois_garreau.md b/content/speakers/jean-francois_garreau.md
similarity index 100%
rename from test-hugo/content/speakers/jean-francois_garreau.md
rename to content/speakers/jean-francois_garreau.md
diff --git a/test-hugo/content/speakers/jimenez_raul.md b/content/speakers/jimenez_raul.md
similarity index 100%
rename from test-hugo/content/speakers/jimenez_raul.md
rename to content/speakers/jimenez_raul.md
diff --git a/test-hugo/content/speakers/juliane_blier.md b/content/speakers/juliane_blier.md
similarity index 100%
rename from test-hugo/content/speakers/juliane_blier.md
rename to content/speakers/juliane_blier.md
diff --git a/test-hugo/content/speakers/julien_topcu.md b/content/speakers/julien_topcu.md
similarity index 100%
rename from test-hugo/content/speakers/julien_topcu.md
rename to content/speakers/julien_topcu.md
diff --git a/test-hugo/content/speakers/laurent_victorino.md b/content/speakers/laurent_victorino.md
similarity index 100%
rename from test-hugo/content/speakers/laurent_victorino.md
rename to content/speakers/laurent_victorino.md
diff --git a/test-hugo/content/speakers/laurent_wroblewski.md b/content/speakers/laurent_wroblewski.md
similarity index 100%
rename from test-hugo/content/speakers/laurent_wroblewski.md
rename to content/speakers/laurent_wroblewski.md
diff --git a/test-hugo/content/speakers/mathieu_passenaud.md b/content/speakers/mathieu_passenaud.md
similarity index 100%
rename from test-hugo/content/speakers/mathieu_passenaud.md
rename to content/speakers/mathieu_passenaud.md
diff --git a/test-hugo/content/speakers/miro_miro_cupak.md b/content/speakers/miro_miro_cupak.md
similarity index 100%
rename from test-hugo/content/speakers/miro_miro_cupak.md
rename to content/speakers/miro_miro_cupak.md
diff --git a/test-hugo/content/speakers/nicolas_decoster.md b/content/speakers/nicolas_decoster.md
similarity index 100%
rename from test-hugo/content/speakers/nicolas_decoster.md
rename to content/speakers/nicolas_decoster.md
diff --git a/test-hugo/content/speakers/olivier_flebus.md b/content/speakers/olivier_flebus.md
similarity index 100%
rename from test-hugo/content/speakers/olivier_flebus.md
rename to content/speakers/olivier_flebus.md
diff --git a/test-hugo/content/speakers/olivier_leplus.md b/content/speakers/olivier_leplus.md
similarity index 100%
rename from test-hugo/content/speakers/olivier_leplus.md
rename to content/speakers/olivier_leplus.md
diff --git a/test-hugo/content/speakers/philippe_charriere.md b/content/speakers/philippe_charriere.md
similarity index 100%
rename from test-hugo/content/speakers/philippe_charriere.md
rename to content/speakers/philippe_charriere.md
diff --git a/test-hugo/content/speakers/piotr_przybyl.md b/content/speakers/piotr_przybyl.md
similarity index 100%
rename from test-hugo/content/speakers/piotr_przybyl.md
rename to content/speakers/piotr_przybyl.md
diff --git a/test-hugo/content/speakers/quentin_adam.md b/content/speakers/quentin_adam.md
similarity index 100%
rename from test-hugo/content/speakers/quentin_adam.md
rename to content/speakers/quentin_adam.md
diff --git a/test-hugo/content/speakers/robert_firek.md b/content/speakers/robert_firek.md
similarity index 100%
rename from test-hugo/content/speakers/robert_firek.md
rename to content/speakers/robert_firek.md
diff --git a/test-hugo/content/speakers/sebastien_guilloux.md b/content/speakers/sebastien_guilloux.md
similarity index 100%
rename from test-hugo/content/speakers/sebastien_guilloux.md
rename to content/speakers/sebastien_guilloux.md
diff --git a/test-hugo/content/speakers/sylvain_wallez.md b/content/speakers/sylvain_wallez.md
similarity index 100%
rename from test-hugo/content/speakers/sylvain_wallez.md
rename to content/speakers/sylvain_wallez.md
diff --git a/test-hugo/content/speakers/tiffany_souterre.md b/content/speakers/tiffany_souterre.md
similarity index 100%
rename from test-hugo/content/speakers/tiffany_souterre.md
rename to content/speakers/tiffany_souterre.md
diff --git a/test-hugo/content/speakers/tugdual_grall.md b/content/speakers/tugdual_grall.md
similarity index 100%
rename from test-hugo/content/speakers/tugdual_grall.md
rename to content/speakers/tugdual_grall.md
diff --git a/test-hugo/content/speakers/victor_kropp.md b/content/speakers/victor_kropp.md
similarity index 100%
rename from test-hugo/content/speakers/victor_kropp.md
rename to content/speakers/victor_kropp.md
diff --git a/test-hugo/content/talks/101_keynote_d_ouverture.md b/content/talks/101_keynote_d_ouverture.md
similarity index 100%
rename from test-hugo/content/talks/101_keynote_d_ouverture.md
rename to content/talks/101_keynote_d_ouverture.md
diff --git a/test-hugo/content/talks/102_keynote_de_fermeture.md b/content/talks/102_keynote_de_fermeture.md
similarity index 100%
rename from test-hugo/content/talks/102_keynote_de_fermeture.md
rename to content/talks/102_keynote_de_fermeture.md
diff --git a/test-hugo/content/talks/201_office_hours.md b/content/talks/201_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/201_office_hours.md
rename to content/talks/201_office_hours.md
diff --git a/test-hugo/content/talks/202_office_hours.md b/content/talks/202_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/202_office_hours.md
rename to content/talks/202_office_hours.md
diff --git a/test-hugo/content/talks/203_office_hours.md b/content/talks/203_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/203_office_hours.md
rename to content/talks/203_office_hours.md
diff --git a/test-hugo/content/talks/204_office_hours.md b/content/talks/204_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/204_office_hours.md
rename to content/talks/204_office_hours.md
diff --git a/test-hugo/content/talks/205_office_hours.md b/content/talks/205_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/205_office_hours.md
rename to content/talks/205_office_hours.md
diff --git a/test-hugo/content/talks/206_office_hours.md b/content/talks/206_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/206_office_hours.md
rename to content/talks/206_office_hours.md
diff --git a/test-hugo/content/talks/207_office_hours.md b/content/talks/207_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/207_office_hours.md
rename to content/talks/207_office_hours.md
diff --git a/test-hugo/content/talks/208_office_hours.md b/content/talks/208_office_hours.md
similarity index 100%
rename from test-hugo/content/talks/208_office_hours.md
rename to content/talks/208_office_hours.md
diff --git a/test-hugo/content/talks/4125_let_s_sketchnote___prise_de_notes_visuelle.md b/content/talks/4125_let_s_sketchnote___prise_de_notes_visuelle.md
similarity index 100%
rename from test-hugo/content/talks/4125_let_s_sketchnote___prise_de_notes_visuelle.md
rename to content/talks/4125_let_s_sketchnote___prise_de_notes_visuelle.md
diff --git a/test-hugo/content/talks/4128_ceinture_noire_karate_en_tests_d_api_rest.md b/content/talks/4128_ceinture_noire_karate_en_tests_d_api_rest.md
similarity index 100%
rename from test-hugo/content/talks/4128_ceinture_noire_karate_en_tests_d_api_rest.md
rename to content/talks/4128_ceinture_noire_karate_en_tests_d_api_rest.md
diff --git a/test-hugo/content/talks/4132_premiers_pas_avec_capacitor____dans_le_monde_reel.md b/content/talks/4132_premiers_pas_avec_capacitor____dans_le_monde_reel.md
similarity index 100%
rename from test-hugo/content/talks/4132_premiers_pas_avec_capacitor____dans_le_monde_reel.md
rename to content/talks/4132_premiers_pas_avec_capacitor____dans_le_monde_reel.md
diff --git a/test-hugo/content/talks/4142_votre_mission___decouvrir_haskell_et_le_mettre_en_prod.md b/content/talks/4142_votre_mission___decouvrir_haskell_et_le_mettre_en_prod.md
similarity index 100%
rename from test-hugo/content/talks/4142_votre_mission___decouvrir_haskell_et_le_mettre_en_prod.md
rename to content/talks/4142_votre_mission___decouvrir_haskell_et_le_mettre_en_prod.md
diff --git a/test-hugo/content/talks/4195_developper_une_application_web_avec_rust.md b/content/talks/4195_developper_une_application_web_avec_rust.md
similarity index 100%
rename from test-hugo/content/talks/4195_developper_une_application_web_avec_rust.md
rename to content/talks/4195_developper_une_application_web_avec_rust.md
diff --git a/test-hugo/content/talks/4207_la_programmation_fonctionnelle_sans_ceder_a_la_mode.md b/content/talks/4207_la_programmation_fonctionnelle_sans_ceder_a_la_mode.md
similarity index 100%
rename from test-hugo/content/talks/4207_la_programmation_fonctionnelle_sans_ceder_a_la_mode.md
rename to content/talks/4207_la_programmation_fonctionnelle_sans_ceder_a_la_mode.md
diff --git a/test-hugo/content/talks/4211_architecture_decision_records__reconciliez_vous_avec_votre_documentation.md b/content/talks/4211_architecture_decision_records__reconciliez_vous_avec_votre_documentation.md
similarity index 100%
rename from test-hugo/content/talks/4211_architecture_decision_records__reconciliez_vous_avec_votre_documentation.md
rename to content/talks/4211_architecture_decision_records__reconciliez_vous_avec_votre_documentation.md
diff --git a/test-hugo/content/talks/4225_detectez_et_trackez_les_zergs_qui_se_cachent_dans_vos_dependances__.md b/content/talks/4225_detectez_et_trackez_les_zergs_qui_se_cachent_dans_vos_dependances__.md
similarity index 100%
rename from test-hugo/content/talks/4225_detectez_et_trackez_les_zergs_qui_se_cachent_dans_vos_dependances__.md
rename to content/talks/4225_detectez_et_trackez_les_zergs_qui_se_cachent_dans_vos_dependances__.md
diff --git a/test-hugo/content/talks/4231_la_tete_dans_les_nuages_avec_un_raspberry_pi.md b/content/talks/4231_la_tete_dans_les_nuages_avec_un_raspberry_pi.md
similarity index 100%
rename from test-hugo/content/talks/4231_la_tete_dans_les_nuages_avec_un_raspberry_pi.md
rename to content/talks/4231_la_tete_dans_les_nuages_avec_un_raspberry_pi.md
diff --git a/test-hugo/content/talks/4282_agile__craftsmanship__devops_and_other_monsters___how_to_fight_with_them_.md b/content/talks/4282_agile__craftsmanship__devops_and_other_monsters___how_to_fight_with_them_.md
similarity index 100%
rename from test-hugo/content/talks/4282_agile__craftsmanship__devops_and_other_monsters___how_to_fight_with_them_.md
rename to content/talks/4282_agile__craftsmanship__devops_and_other_monsters___how_to_fight_with_them_.md
diff --git a/test-hugo/content/talks/4305_google_container_tools___developper_efficacement_dans_un_monde_de_conteneurs.md b/content/talks/4305_google_container_tools___developper_efficacement_dans_un_monde_de_conteneurs.md
similarity index 100%
rename from test-hugo/content/talks/4305_google_container_tools___developper_efficacement_dans_un_monde_de_conteneurs.md
rename to content/talks/4305_google_container_tools___developper_efficacement_dans_un_monde_de_conteneurs.md
diff --git a/test-hugo/content/talks/4306_s_aider_du_data_oriented_design_pour_ecrire_des_applications_performantes.md b/content/talks/4306_s_aider_du_data_oriented_design_pour_ecrire_des_applications_performantes.md
similarity index 100%
rename from test-hugo/content/talks/4306_s_aider_du_data_oriented_design_pour_ecrire_des_applications_performantes.md
rename to content/talks/4306_s_aider_du_data_oriented_design_pour_ecrire_des_applications_performantes.md
diff --git a/test-hugo/content/talks/4307__retourauxsources______les_cookies_http.md b/content/talks/4307__retourauxsources______les_cookies_http.md
similarity index 100%
rename from test-hugo/content/talks/4307__retourauxsources______les_cookies_http.md
rename to content/talks/4307__retourauxsources______les_cookies_http.md
diff --git a/test-hugo/content/talks/4312_des_apis_de_machine_learning_sur_etagere__a_l_entrainement_distribue_dans_le_cloud.md b/content/talks/4312_des_apis_de_machine_learning_sur_etagere__a_l_entrainement_distribue_dans_le_cloud.md
similarity index 100%
rename from test-hugo/content/talks/4312_des_apis_de_machine_learning_sur_etagere__a_l_entrainement_distribue_dans_le_cloud.md
rename to content/talks/4312_des_apis_de_machine_learning_sur_etagere__a_l_entrainement_distribue_dans_le_cloud.md
diff --git a/test-hugo/content/talks/4313_tests_bdd__faites_rediger_vos_tests_end_to_end_par_les_fonctionnels.md b/content/talks/4313_tests_bdd__faites_rediger_vos_tests_end_to_end_par_les_fonctionnels.md
similarity index 100%
rename from test-hugo/content/talks/4313_tests_bdd__faites_rediger_vos_tests_end_to_end_par_les_fonctionnels.md
rename to content/talks/4313_tests_bdd__faites_rediger_vos_tests_end_to_end_par_les_fonctionnels.md
diff --git a/test-hugo/content/talks/4322_lighthouse___mesurer_et_ameliorer_votre_performance_web.md b/content/talks/4322_lighthouse___mesurer_et_ameliorer_votre_performance_web.md
similarity index 100%
rename from test-hugo/content/talks/4322_lighthouse___mesurer_et_ameliorer_votre_performance_web.md
rename to content/talks/4322_lighthouse___mesurer_et_ameliorer_votre_performance_web.md
diff --git a/test-hugo/content/talks/4331_et_si_on_parlait_accessibilite_du_web__.md b/content/talks/4331_et_si_on_parlait_accessibilite_du_web__.md
similarity index 100%
rename from test-hugo/content/talks/4331_et_si_on_parlait_accessibilite_du_web__.md
rename to content/talks/4331_et_si_on_parlait_accessibilite_du_web__.md
diff --git a/test-hugo/content/talks/4334_tensorflow__is_there_really_no_spoon__.md b/content/talks/4334_tensorflow__is_there_really_no_spoon__.md
similarity index 100%
rename from test-hugo/content/talks/4334_tensorflow__is_there_really_no_spoon__.md
rename to content/talks/4334_tensorflow__is_there_really_no_spoon__.md
diff --git a/test-hugo/content/talks/4338_comment_perdre_sa_surchage_featurale__.md b/content/talks/4338_comment_perdre_sa_surchage_featurale__.md
similarity index 100%
rename from test-hugo/content/talks/4338_comment_perdre_sa_surchage_featurale__.md
rename to content/talks/4338_comment_perdre_sa_surchage_featurale__.md
diff --git a/test-hugo/content/talks/4340_angular_elements.md b/content/talks/4340_angular_elements.md
similarity index 100%
rename from test-hugo/content/talks/4340_angular_elements.md
rename to content/talks/4340_angular_elements.md
diff --git a/test-hugo/content/talks/4349_comment_t_organiser_quand_tu_es_b____lique_de_naissance__et_depuis_des_decennies___que_tu_as_plusieurs_jobs__ou_projets___sans_exploser_en_vol_____et_bosser_a_plusieurs_____et_y_arriver.md b/content/talks/4349_comment_t_organiser_quand_tu_es_b____lique_de_naissance__et_depuis_des_decennies___que_tu_as_plusieurs_jobs__ou_projets___sans_exploser_en_vol_____et_bosser_a_plusieurs_____et_y_arriver.md
similarity index 100%
rename from test-hugo/content/talks/4349_comment_t_organiser_quand_tu_es_b____lique_de_naissance__et_depuis_des_decennies___que_tu_as_plusieurs_jobs__ou_projets___sans_exploser_en_vol_____et_bosser_a_plusieurs_____et_y_arriver.md
rename to content/talks/4349_comment_t_organiser_quand_tu_es_b____lique_de_naissance__et_depuis_des_decennies___que_tu_as_plusieurs_jobs__ou_projets___sans_exploser_en_vol_____et_bosser_a_plusieurs_____et_y_arriver.md
diff --git a/test-hugo/content/talks/4420_decouvrir_par_l_exemple__microservices_et_event_sourcing_avec_kafka_et_kubernetes.md b/content/talks/4420_decouvrir_par_l_exemple__microservices_et_event_sourcing_avec_kafka_et_kubernetes.md
similarity index 100%
rename from test-hugo/content/talks/4420_decouvrir_par_l_exemple__microservices_et_event_sourcing_avec_kafka_et_kubernetes.md
rename to content/talks/4420_decouvrir_par_l_exemple__microservices_et_event_sourcing_avec_kafka_et_kubernetes.md
diff --git a/test-hugo/content/talks/4432_testcontainers_pour_de_vrais_tests_d_integration_d_elasticsearch.md b/content/talks/4432_testcontainers_pour_de_vrais_tests_d_integration_d_elasticsearch.md
similarity index 100%
rename from test-hugo/content/talks/4432_testcontainers_pour_de_vrais_tests_d_integration_d_elasticsearch.md
rename to content/talks/4432_testcontainers_pour_de_vrais_tests_d_integration_d_elasticsearch.md
diff --git a/test-hugo/content/talks/4447_systemd__de__dev_null_a_root.md b/content/talks/4447_systemd__de__dev_null_a_root.md
similarity index 100%
rename from test-hugo/content/talks/4447_systemd__de__dev_null_a_root.md
rename to content/talks/4447_systemd__de__dev_null_a_root.md
diff --git a/test-hugo/content/talks/4457_template_de_deploiements_kubernetes_avec_kontemplate.md b/content/talks/4457_template_de_deploiements_kubernetes_avec_kontemplate.md
similarity index 100%
rename from test-hugo/content/talks/4457_template_de_deploiements_kubernetes_avec_kontemplate.md
rename to content/talks/4457_template_de_deploiements_kubernetes_avec_kontemplate.md
diff --git a/test-hugo/content/talks/4473_burger_quiz_s_invite_au_devfest_avec_un_sel_ou_poivre__code__data_ou_les_deux_.md b/content/talks/4473_burger_quiz_s_invite_au_devfest_avec_un_sel_ou_poivre__code__data_ou_les_deux_.md
similarity index 100%
rename from test-hugo/content/talks/4473_burger_quiz_s_invite_au_devfest_avec_un_sel_ou_poivre__code__data_ou_les_deux_.md
rename to content/talks/4473_burger_quiz_s_invite_au_devfest_avec_un_sel_ou_poivre__code__data_ou_les_deux_.md
diff --git a/test-hugo/content/talks/4507_introduction_a_arrow___typeclass_is_the_new_interface.md b/content/talks/4507_introduction_a_arrow___typeclass_is_the_new_interface.md
similarity index 100%
rename from test-hugo/content/talks/4507_introduction_a_arrow___typeclass_is_the_new_interface.md
rename to content/talks/4507_introduction_a_arrow___typeclass_is_the_new_interface.md
diff --git a/test-hugo/content/talks/4509_comprendre_le_theoreme_de_cap_avec_apache_kafka.md b/content/talks/4509_comprendre_le_theoreme_de_cap_avec_apache_kafka.md
similarity index 100%
rename from test-hugo/content/talks/4509_comprendre_le_theoreme_de_cap_avec_apache_kafka.md
rename to content/talks/4509_comprendre_le_theoreme_de_cap_avec_apache_kafka.md
diff --git a/test-hugo/content/talks/4515_remake_de_jeux_retro_avec_vue_js.md b/content/talks/4515_remake_de_jeux_retro_avec_vue_js.md
similarity index 100%
rename from test-hugo/content/talks/4515_remake_de_jeux_retro_avec_vue_js.md
rename to content/talks/4515_remake_de_jeux_retro_avec_vue_js.md
diff --git a/test-hugo/content/talks/4528_exploring_reactive_programming_in_java.md b/content/talks/4528_exploring_reactive_programming_in_java.md
similarity index 100%
rename from test-hugo/content/talks/4528_exploring_reactive_programming_in_java.md
rename to content/talks/4528_exploring_reactive_programming_in_java.md
diff --git a/test-hugo/content/talks/4574_the_big_web_quizz.md b/content/talks/4574_the_big_web_quizz.md
similarity index 100%
rename from test-hugo/content/talks/4574_the_big_web_quizz.md
rename to content/talks/4574_the_big_web_quizz.md
diff --git a/test-hugo/content/talks/4584_pourquoi_et_comment_crafter_la_data_science_sur_mesure_.md b/content/talks/4584_pourquoi_et_comment_crafter_la_data_science_sur_mesure_.md
similarity index 100%
rename from test-hugo/content/talks/4584_pourquoi_et_comment_crafter_la_data_science_sur_mesure_.md
rename to content/talks/4584_pourquoi_et_comment_crafter_la_data_science_sur_mesure_.md
diff --git a/test-hugo/content/talks/4588_multiplatfom_projects_with_kotlin.md b/content/talks/4588_multiplatfom_projects_with_kotlin.md
similarity index 100%
rename from test-hugo/content/talks/4588_multiplatfom_projects_with_kotlin.md
rename to content/talks/4588_multiplatfom_projects_with_kotlin.md
diff --git a/test-hugo/content/talks/4593_angular_schematics_pour_une_meilleure_productivite_et_plus_de_partage.md b/content/talks/4593_angular_schematics_pour_une_meilleure_productivite_et_plus_de_partage.md
similarity index 100%
rename from test-hugo/content/talks/4593_angular_schematics_pour_une_meilleure_productivite_et_plus_de_partage.md
rename to content/talks/4593_angular_schematics_pour_une_meilleure_productivite_et_plus_de_partage.md
diff --git a/test-hugo/content/talks/4613_gcp_pour_les_data_scientists.md b/content/talks/4613_gcp_pour_les_data_scientists.md
similarity index 100%
rename from test-hugo/content/talks/4613_gcp_pour_les_data_scientists.md
rename to content/talks/4613_gcp_pour_les_data_scientists.md
diff --git a/test-hugo/content/talks/4617_contextvs__stvlte___context__stupid__.md b/content/talks/4617_contextvs__stvlte___context__stupid__.md
similarity index 100%
rename from test-hugo/content/talks/4617_contextvs__stvlte___context__stupid__.md
rename to content/talks/4617_contextvs__stvlte___context__stupid__.md
diff --git a/test-hugo/content/talks/5000_the_old_man_glitch___escalade_de_bug_sur_la_premiere_generation_de_pokemon_sur_gameboy.md b/content/talks/5000_the_old_man_glitch___escalade_de_bug_sur_la_premiere_generation_de_pokemon_sur_gameboy.md
similarity index 100%
rename from test-hugo/content/talks/5000_the_old_man_glitch___escalade_de_bug_sur_la_premiere_generation_de_pokemon_sur_gameboy.md
rename to content/talks/5000_the_old_man_glitch___escalade_de_bug_sur_la_premiere_generation_de_pokemon_sur_gameboy.md
diff --git a/test-hugo/content/talks/_index.md b/content/talks/_index.md
similarity index 100%
rename from test-hugo/content/talks/_index.md
rename to content/talks/_index.md
diff --git a/test-hugo/content/team.md b/content/team.md
similarity index 100%
rename from test-hugo/content/team.md
rename to content/team.md
diff --git a/test-hugo/data/footer.yml b/data/footer.yml
similarity index 100%
rename from test-hugo/data/footer.yml
rename to data/footer.yml
diff --git a/test-hugo/data/home.yml b/data/home.yml
similarity index 100%
rename from test-hugo/data/home.yml
rename to data/home.yml
diff --git a/test-hugo/data/partners.yml b/data/partners.yml
similarity index 99%
rename from test-hugo/data/partners.yml
rename to data/partners.yml
index e429eef..db12cb3 100644
--- a/test-hugo/data/partners.yml
+++ b/data/partners.yml
@@ -13,6 +13,7 @@
- name: Toulouse Métropole
url: 'https://www.toulouse-metropole.fr/'
logoUrl: /images/partners/tls-metropole.png
+
- title: Gold
style: partner-au
logos:
@@ -64,6 +65,7 @@
- name: Sogeti
url: 'https://www.fr.sogeti.com/'
logoUrl: /images/partners/logo-sogeti.jpg
+
- title: Soutien
style: partner
logos:
@@ -97,12 +99,14 @@
- name: Morning
url: 'https://morning.com/fr/'
logoUrl: /images/partners/logo-morning.svg
+
- title: Média
style: partner
logos:
- name: Programmez
url: 'https://www.programmez.com/'
logoUrl: /images/partners/media/logo_programmez.svg
+
- title: Communautés
style: partner
logos:
diff --git a/test-hugo/data/socials.yml b/data/socials.yml
similarity index 100%
rename from test-hugo/data/socials.yml
rename to data/socials.yml
diff --git a/test-hugo/data/team.yml b/data/team.yml
similarity index 100%
rename from test-hugo/data/team.yml
rename to data/team.yml
diff --git a/test-hugo/data/tickets.yml b/data/tickets.yml
similarity index 100%
rename from test-hugo/data/tickets.yml
rename to data/tickets.yml
diff --git a/test-hugo/data/toolbar.yml b/data/toolbar.yml
similarity index 100%
rename from test-hugo/data/toolbar.yml
rename to data/toolbar.yml
diff --git a/firebase.json b/firebase.json
index 1360eb7..93fb369 100644
--- a/firebase.json
+++ b/firebase.json
@@ -1,6 +1,6 @@
{
"hosting": {
- "public": "test-hugo/public",
+ "public": "public",
"ignore": [
"firebase.json",
"**/.*",
diff --git a/test-hugo/static/images/backgrounds/cfp.jpg b/static/images/backgrounds/cfp.jpg
similarity index 100%
rename from test-hugo/static/images/backgrounds/cfp.jpg
rename to static/images/backgrounds/cfp.jpg
diff --git a/test-hugo/static/images/backgrounds/chocos.png b/static/images/backgrounds/chocos.png
similarity index 100%
rename from test-hugo/static/images/backgrounds/chocos.png
rename to static/images/backgrounds/chocos.png
diff --git a/test-hugo/static/images/backgrounds/coffee.png b/static/images/backgrounds/coffee.png
similarity index 100%
rename from test-hugo/static/images/backgrounds/coffee.png
rename to static/images/backgrounds/coffee.png
diff --git a/test-hugo/static/images/backgrounds/game.png b/static/images/backgrounds/game.png
similarity index 100%
rename from test-hugo/static/images/backgrounds/game.png
rename to static/images/backgrounds/game.png
diff --git a/test-hugo/static/images/backgrounds/home.jpg b/static/images/backgrounds/home.jpg
similarity index 100%
rename from test-hugo/static/images/backgrounds/home.jpg
rename to static/images/backgrounds/home.jpg
diff --git a/test-hugo/static/images/backgrounds/lunch.png b/static/images/backgrounds/lunch.png
similarity index 100%
rename from test-hugo/static/images/backgrounds/lunch.png
rename to static/images/backgrounds/lunch.png
diff --git a/test-hugo/static/images/backgrounds/sky.png b/static/images/backgrounds/sky.png
similarity index 100%
rename from test-hugo/static/images/backgrounds/sky.png
rename to static/images/backgrounds/sky.png
diff --git a/test-hugo/static/images/favicon.ico b/static/images/favicon.ico
similarity index 100%
rename from test-hugo/static/images/favicon.ico
rename to static/images/favicon.ico
diff --git a/test-hugo/static/images/link-icon.svg b/static/images/link-icon.svg
similarity index 100%
rename from test-hugo/static/images/link-icon.svg
rename to static/images/link-icon.svg
diff --git a/test-hugo/static/images/logo-monochrome.svg b/static/images/logo-monochrome.svg
similarity index 100%
rename from test-hugo/static/images/logo-monochrome.svg
rename to static/images/logo-monochrome.svg
diff --git a/test-hugo/static/images/logo.svg b/static/images/logo.svg
similarity index 100%
rename from test-hugo/static/images/logo.svg
rename to static/images/logo.svg
diff --git a/test-hugo/static/images/manifest/icon-144.png b/static/images/manifest/icon-144.png
similarity index 100%
rename from test-hugo/static/images/manifest/icon-144.png
rename to static/images/manifest/icon-144.png
diff --git a/test-hugo/static/images/manifest/icon-192.png b/static/images/manifest/icon-192.png
similarity index 100%
rename from test-hugo/static/images/manifest/icon-192.png
rename to static/images/manifest/icon-192.png
diff --git a/test-hugo/static/images/manifest/icon-48.png b/static/images/manifest/icon-48.png
similarity index 100%
rename from test-hugo/static/images/manifest/icon-48.png
rename to static/images/manifest/icon-48.png
diff --git a/test-hugo/static/images/manifest/icon-512.png b/static/images/manifest/icon-512.png
similarity index 100%
rename from test-hugo/static/images/manifest/icon-512.png
rename to static/images/manifest/icon-512.png
diff --git a/test-hugo/static/images/manifest/icon-72.png b/static/images/manifest/icon-72.png
similarity index 100%
rename from test-hugo/static/images/manifest/icon-72.png
rename to static/images/manifest/icon-72.png
diff --git a/test-hugo/static/images/manifest/icon-96.png b/static/images/manifest/icon-96.png
similarity index 100%
rename from test-hugo/static/images/manifest/icon-96.png
rename to static/images/manifest/icon-96.png
diff --git a/test-hugo/static/images/map-marker.svg b/static/images/map-marker.svg
similarity index 100%
rename from test-hugo/static/images/map-marker.svg
rename to static/images/map-marker.svg
diff --git a/test-hugo/static/images/organizer-logo.svg b/static/images/organizer-logo.svg
similarity index 100%
rename from test-hugo/static/images/organizer-logo.svg
rename to static/images/organizer-logo.svg
diff --git a/test-hugo/static/images/partners/Delair.png b/static/images/partners/Delair.png
similarity index 100%
rename from test-hugo/static/images/partners/Delair.png
rename to static/images/partners/Delair.png
diff --git a/test-hugo/static/images/partners/Logo_MonkeyPatch_Bleu.png b/static/images/partners/Logo_MonkeyPatch_Bleu.png
similarity index 100%
rename from test-hugo/static/images/partners/Logo_MonkeyPatch_Bleu.png
rename to static/images/partners/Logo_MonkeyPatch_Bleu.png
diff --git a/test-hugo/static/images/partners/cirruseo.png b/static/images/partners/cirruseo.png
similarity index 100%
rename from test-hugo/static/images/partners/cirruseo.png
rename to static/images/partners/cirruseo.png
diff --git a/test-hugo/static/images/partners/commit42.png b/static/images/partners/commit42.png
similarity index 100%
rename from test-hugo/static/images/partners/commit42.png
rename to static/images/partners/commit42.png
diff --git a/test-hugo/static/images/partners/community/duchess_fr.svg b/static/images/partners/community/duchess_fr.svg
similarity index 100%
rename from test-hugo/static/images/partners/community/duchess_fr.svg
rename to static/images/partners/community/duchess_fr.svg
diff --git a/test-hugo/static/images/partners/community/gdgtoulouse.jpeg b/static/images/partners/community/gdgtoulouse.jpeg
similarity index 100%
rename from test-hugo/static/images/partners/community/gdgtoulouse.jpeg
rename to static/images/partners/community/gdgtoulouse.jpeg
diff --git a/test-hugo/static/images/partners/community/tds.png b/static/images/partners/community/tds.png
similarity index 100%
rename from test-hugo/static/images/partners/community/tds.png
rename to static/images/partners/community/tds.png
diff --git a/test-hugo/static/images/partners/community/toulouse_jug.png b/static/images/partners/community/toulouse_jug.png
similarity index 100%
rename from test-hugo/static/images/partners/community/toulouse_jug.png
rename to static/images/partners/community/toulouse_jug.png
diff --git a/test-hugo/static/images/partners/community/toulousedevops.jpg b/static/images/partners/community/toulousedevops.jpg
similarity index 100%
rename from test-hugo/static/images/partners/community/toulousedevops.jpg
rename to static/images/partners/community/toulousedevops.jpg
diff --git a/test-hugo/static/images/partners/community/toulousejs.png b/static/images/partners/community/toulousejs.png
similarity index 100%
rename from test-hugo/static/images/partners/community/toulousejs.png
rename to static/images/partners/community/toulousejs.png
diff --git a/test-hugo/static/images/partners/docdoku_inverse_web.png b/static/images/partners/docdoku_inverse_web.png
similarity index 100%
rename from test-hugo/static/images/partners/docdoku_inverse_web.png
rename to static/images/partners/docdoku_inverse_web.png
diff --git a/test-hugo/static/images/partners/logo-airbus.png b/static/images/partners/logo-airbus.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-airbus.png
rename to static/images/partners/logo-airbus.png
diff --git a/test-hugo/static/images/partners/logo-capgemini.svg b/static/images/partners/logo-capgemini.svg
similarity index 100%
rename from test-hugo/static/images/partners/logo-capgemini.svg
rename to static/images/partners/logo-capgemini.svg
diff --git a/test-hugo/static/images/partners/logo-cirruseo.png b/static/images/partners/logo-cirruseo.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-cirruseo.png
rename to static/images/partners/logo-cirruseo.png
diff --git a/test-hugo/static/images/partners/logo-cnes.jpg b/static/images/partners/logo-cnes.jpg
similarity index 100%
rename from test-hugo/static/images/partners/logo-cnes.jpg
rename to static/images/partners/logo-cnes.jpg
diff --git a/test-hugo/static/images/partners/logo-continental.png b/static/images/partners/logo-continental.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-continental.png
rename to static/images/partners/logo-continental.png
diff --git a/test-hugo/static/images/partners/logo-cs.png b/static/images/partners/logo-cs.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-cs.png
rename to static/images/partners/logo-cs.png
diff --git a/test-hugo/static/images/partners/logo-etincelle.gif b/static/images/partners/logo-etincelle.gif
similarity index 100%
rename from test-hugo/static/images/partners/logo-etincelle.gif
rename to static/images/partners/logo-etincelle.gif
diff --git a/test-hugo/static/images/partners/logo-fittingbox.png b/static/images/partners/logo-fittingbox.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-fittingbox.png
rename to static/images/partners/logo-fittingbox.png
diff --git a/test-hugo/static/images/partners/logo-fullsave.png b/static/images/partners/logo-fullsave.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-fullsave.png
rename to static/images/partners/logo-fullsave.png
diff --git a/test-hugo/static/images/partners/logo-gisaia.png b/static/images/partners/logo-gisaia.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-gisaia.png
rename to static/images/partners/logo-gisaia.png
diff --git a/test-hugo/static/images/partners/logo-ippon.svg b/static/images/partners/logo-ippon.svg
similarity index 100%
rename from test-hugo/static/images/partners/logo-ippon.svg
rename to static/images/partners/logo-ippon.svg
diff --git a/test-hugo/static/images/partners/logo-jfrog.svg b/static/images/partners/logo-jfrog.svg
similarity index 100%
rename from test-hugo/static/images/partners/logo-jfrog.svg
rename to static/images/partners/logo-jfrog.svg
diff --git a/test-hugo/static/images/partners/logo-lyra.png b/static/images/partners/logo-lyra.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-lyra.png
rename to static/images/partners/logo-lyra.png
diff --git a/test-hugo/static/images/partners/logo-morning.svg b/static/images/partners/logo-morning.svg
similarity index 100%
rename from test-hugo/static/images/partners/logo-morning.svg
rename to static/images/partners/logo-morning.svg
diff --git a/test-hugo/static/images/partners/logo-onepoint.png b/static/images/partners/logo-onepoint.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-onepoint.png
rename to static/images/partners/logo-onepoint.png
diff --git a/test-hugo/static/images/partners/logo-paloit.png b/static/images/partners/logo-paloit.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-paloit.png
rename to static/images/partners/logo-paloit.png
diff --git a/test-hugo/static/images/partners/logo-pierrefabre.png b/static/images/partners/logo-pierrefabre.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-pierrefabre.png
rename to static/images/partners/logo-pierrefabre.png
diff --git a/test-hugo/static/images/partners/logo-projixi.png b/static/images/partners/logo-projixi.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-projixi.png
rename to static/images/partners/logo-projixi.png
diff --git a/test-hugo/static/images/partners/logo-sigfox.svg b/static/images/partners/logo-sigfox.svg
similarity index 100%
rename from test-hugo/static/images/partners/logo-sigfox.svg
rename to static/images/partners/logo-sigfox.svg
diff --git a/test-hugo/static/images/partners/logo-sii.png b/static/images/partners/logo-sii.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-sii.png
rename to static/images/partners/logo-sii.png
diff --git a/test-hugo/static/images/partners/logo-sogeti.jpg b/static/images/partners/logo-sogeti.jpg
similarity index 100%
rename from test-hugo/static/images/partners/logo-sogeti.jpg
rename to static/images/partners/logo-sogeti.jpg
diff --git a/test-hugo/static/images/partners/logo-sqli.png b/static/images/partners/logo-sqli.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-sqli.png
rename to static/images/partners/logo-sqli.png
diff --git a/test-hugo/static/images/partners/logo-stacklab.png b/static/images/partners/logo-stacklab.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-stacklab.png
rename to static/images/partners/logo-stacklab.png
diff --git a/test-hugo/static/images/partners/logo-viseo.png b/static/images/partners/logo-viseo.png
similarity index 100%
rename from test-hugo/static/images/partners/logo-viseo.png
rename to static/images/partners/logo-viseo.png
diff --git a/test-hugo/static/images/partners/logo_i-BP2.png b/static/images/partners/logo_i-BP2.png
similarity index 100%
rename from test-hugo/static/images/partners/logo_i-BP2.png
rename to static/images/partners/logo_i-BP2.png
diff --git a/test-hugo/static/images/partners/media/logo_programmez.svg b/static/images/partners/media/logo_programmez.svg
similarity index 100%
rename from test-hugo/static/images/partners/media/logo_programmez.svg
rename to static/images/partners/media/logo_programmez.svg
diff --git a/test-hugo/static/images/partners/tls-metropole.png b/static/images/partners/tls-metropole.png
similarity index 100%
rename from test-hugo/static/images/partners/tls-metropole.png
rename to static/images/partners/tls-metropole.png
diff --git a/test-hugo/static/images/people/alexia_audevart.jpeg b/static/images/people/alexia_audevart.jpeg
similarity index 100%
rename from test-hugo/static/images/people/alexia_audevart.jpeg
rename to static/images/people/alexia_audevart.jpeg
diff --git a/test-hugo/static/images/people/aurelie_vache.png b/static/images/people/aurelie_vache.png
similarity index 100%
rename from test-hugo/static/images/people/aurelie_vache.png
rename to static/images/people/aurelie_vache.png
diff --git a/test-hugo/static/images/people/aurelien_baumann.jpg b/static/images/people/aurelien_baumann.jpg
similarity index 100%
rename from test-hugo/static/images/people/aurelien_baumann.jpg
rename to static/images/people/aurelien_baumann.jpg
diff --git a/test-hugo/static/images/people/didier_plaindoux.jpeg b/static/images/people/didier_plaindoux.jpeg
similarity index 100%
rename from test-hugo/static/images/people/didier_plaindoux.jpeg
rename to static/images/people/didier_plaindoux.jpeg
diff --git a/test-hugo/static/images/people/elodie_lerare.jpg b/static/images/people/elodie_lerare.jpg
similarity index 100%
rename from test-hugo/static/images/people/elodie_lerare.jpg
rename to static/images/people/elodie_lerare.jpg
diff --git a/test-hugo/static/images/people/emmanuel_vinas.jpeg b/static/images/people/emmanuel_vinas.jpeg
similarity index 100%
rename from test-hugo/static/images/people/emmanuel_vinas.jpeg
rename to static/images/people/emmanuel_vinas.jpeg
diff --git a/test-hugo/static/images/people/guilhem_demiollis.jpg b/static/images/people/guilhem_demiollis.jpg
similarity index 100%
rename from test-hugo/static/images/people/guilhem_demiollis.jpg
rename to static/images/people/guilhem_demiollis.jpg
diff --git a/test-hugo/static/images/people/julien_delrio.jpg b/static/images/people/julien_delrio.jpg
similarity index 100%
rename from test-hugo/static/images/people/julien_delrio.jpg
rename to static/images/people/julien_delrio.jpg
diff --git a/test-hugo/static/images/people/julien_renaux.jpg b/static/images/people/julien_renaux.jpg
similarity index 100%
rename from test-hugo/static/images/people/julien_renaux.jpg
rename to static/images/people/julien_renaux.jpg
diff --git a/test-hugo/static/images/people/kevin_davin.png b/static/images/people/kevin_davin.png
similarity index 100%
rename from test-hugo/static/images/people/kevin_davin.png
rename to static/images/people/kevin_davin.png
diff --git a/test-hugo/static/images/people/lionel_porcheron.jpg b/static/images/people/lionel_porcheron.jpg
similarity index 100%
rename from test-hugo/static/images/people/lionel_porcheron.jpg
rename to static/images/people/lionel_porcheron.jpg
diff --git a/test-hugo/static/images/people/maxime_pawlak.jpg b/static/images/people/maxime_pawlak.jpg
similarity index 100%
rename from test-hugo/static/images/people/maxime_pawlak.jpg
rename to static/images/people/maxime_pawlak.jpg
diff --git a/test-hugo/static/images/people/maxime_warnier.jpeg b/static/images/people/maxime_warnier.jpeg
similarity index 100%
rename from test-hugo/static/images/people/maxime_warnier.jpeg
rename to static/images/people/maxime_warnier.jpeg
diff --git a/test-hugo/static/images/people/michael_bitard.jpg b/static/images/people/michael_bitard.jpg
similarity index 100%
rename from test-hugo/static/images/people/michael_bitard.jpg
rename to static/images/people/michael_bitard.jpg
diff --git a/test-hugo/static/images/people/you.jpg b/static/images/people/you.jpg
similarity index 100%
rename from test-hugo/static/images/people/you.jpg
rename to static/images/people/you.jpg
diff --git a/test-hugo/static/images/social-share.jpg b/static/images/social-share.jpg
similarity index 100%
rename from test-hugo/static/images/social-share.jpg
rename to static/images/social-share.jpg
diff --git a/test-hugo/static/images/speakers/Billet SunnyTech 2019.pdf b/static/images/speakers/Billet SunnyTech 2019.pdf
similarity index 100%
rename from test-hugo/static/images/speakers/Billet SunnyTech 2019.pdf
rename to static/images/speakers/Billet SunnyTech 2019.pdf
diff --git a/test-hugo/static/images/speakers/alessio_coltellacci.jpg b/static/images/speakers/alessio_coltellacci.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/alessio_coltellacci.jpg
rename to static/images/speakers/alessio_coltellacci.jpg
diff --git a/test-hugo/static/images/speakers/alexandre_delattre.jpg b/static/images/speakers/alexandre_delattre.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/alexandre_delattre.jpg
rename to static/images/speakers/alexandre_delattre.jpg
diff --git a/test-hugo/static/images/speakers/amelie_benoit.jpg b/static/images/speakers/amelie_benoit.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/amelie_benoit.jpg
rename to static/images/speakers/amelie_benoit.jpg
diff --git a/test-hugo/static/images/speakers/anastasia_lieva.jpg b/static/images/speakers/anastasia_lieva.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/anastasia_lieva.jpg
rename to static/images/speakers/anastasia_lieva.jpg
diff --git a/test-hugo/static/images/speakers/ane_diaz_de_tuesta.jpg b/static/images/speakers/ane_diaz_de_tuesta.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/ane_diaz_de_tuesta.jpg
rename to static/images/speakers/ane_diaz_de_tuesta.jpg
diff --git a/test-hugo/static/images/speakers/arnaud_bos.jpg b/static/images/speakers/arnaud_bos.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/arnaud_bos.jpg
rename to static/images/speakers/arnaud_bos.jpg
diff --git a/test-hugo/static/images/speakers/benoit_el_amrani.jpg b/static/images/speakers/benoit_el_amrani.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/benoit_el_amrani.jpg
rename to static/images/speakers/benoit_el_amrani.jpg
diff --git a/test-hugo/static/images/speakers/benoit_prioux.png b/static/images/speakers/benoit_prioux.png
similarity index 100%
rename from test-hugo/static/images/speakers/benoit_prioux.png
rename to static/images/speakers/benoit_prioux.png
diff --git a/test-hugo/static/images/speakers/bianchi_giulia.jpg b/static/images/speakers/bianchi_giulia.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/bianchi_giulia.jpg
rename to static/images/speakers/bianchi_giulia.jpg
diff --git a/test-hugo/static/images/speakers/bos_arnaud.jpg b/static/images/speakers/bos_arnaud.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/bos_arnaud.jpg
rename to static/images/speakers/bos_arnaud.jpg
diff --git a/test-hugo/static/images/speakers/cabestre_frederic.png b/static/images/speakers/cabestre_frederic.png
similarity index 100%
rename from test-hugo/static/images/speakers/cabestre_frederic.png
rename to static/images/speakers/cabestre_frederic.png
diff --git a/test-hugo/static/images/speakers/celine_louvet.jpg b/static/images/speakers/celine_louvet.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/celine_louvet.jpg
rename to static/images/speakers/celine_louvet.jpg
diff --git a/test-hugo/static/images/speakers/coltellacci_alessio.jpg b/static/images/speakers/coltellacci_alessio.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/coltellacci_alessio.jpg
rename to static/images/speakers/coltellacci_alessio.jpg
diff --git a/test-hugo/static/images/speakers/comet_nicolas.jpg b/static/images/speakers/comet_nicolas.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/comet_nicolas.jpg
rename to static/images/speakers/comet_nicolas.jpg
diff --git a/test-hugo/static/images/speakers/company/botfuel.jpg b/static/images/speakers/company/botfuel.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/botfuel.jpg
rename to static/images/speakers/company/botfuel.jpg
diff --git a/test-hugo/static/images/speakers/company/clever_cloud.jpg b/static/images/speakers/company/clever_cloud.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/clever_cloud.jpg
rename to static/images/speakers/company/clever_cloud.jpg
diff --git a/test-hugo/static/images/speakers/company/clever_cloud.png b/static/images/speakers/company/clever_cloud.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/clever_cloud.png
rename to static/images/speakers/company/clever_cloud.png
diff --git a/test-hugo/static/images/speakers/company/clevercloud.jpg b/static/images/speakers/company/clevercloud.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/clevercloud.jpg
rename to static/images/speakers/company/clevercloud.jpg
diff --git a/test-hugo/static/images/speakers/company/cloudbees.jpg b/static/images/speakers/company/cloudbees.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/cloudbees.jpg
rename to static/images/speakers/company/cloudbees.jpg
diff --git a/test-hugo/static/images/speakers/company/codurance.jpg b/static/images/speakers/company/codurance.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/codurance.jpg
rename to static/images/speakers/company/codurance.jpg
diff --git a/test-hugo/static/images/speakers/company/container_solution.jpg b/static/images/speakers/company/container_solution.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/container_solution.jpg
rename to static/images/speakers/company/container_solution.jpg
diff --git a/test-hugo/static/images/speakers/company/continental_digital_services_france.jpg b/static/images/speakers/company/continental_digital_services_france.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/continental_digital_services_france.jpg
rename to static/images/speakers/company/continental_digital_services_france.jpg
diff --git a/test-hugo/static/images/speakers/company/dassault_systemes.jpg b/static/images/speakers/company/dassault_systemes.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/dassault_systemes.jpg
rename to static/images/speakers/company/dassault_systemes.jpg
diff --git a/test-hugo/static/images/speakers/company/davidson_consulting.jpg b/static/images/speakers/company/davidson_consulting.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/davidson_consulting.jpg
rename to static/images/speakers/company/davidson_consulting.jpg
diff --git a/test-hugo/static/images/speakers/company/dnastack.jpg b/static/images/speakers/company/dnastack.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/dnastack.jpg
rename to static/images/speakers/company/dnastack.jpg
diff --git a/test-hugo/static/images/speakers/company/dnastack.png b/static/images/speakers/company/dnastack.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/dnastack.png
rename to static/images/speakers/company/dnastack.png
diff --git a/test-hugo/static/images/speakers/company/easy_mile.jpg b/static/images/speakers/company/easy_mile.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/easy_mile.jpg
rename to static/images/speakers/company/easy_mile.jpg
diff --git a/test-hugo/static/images/speakers/company/egencia_&_owasp_fundation.jpg b/static/images/speakers/company/egencia_&_owasp_fundation.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/egencia_&_owasp_fundation.jpg
rename to static/images/speakers/company/egencia_&_owasp_fundation.jpg
diff --git a/test-hugo/static/images/speakers/company/elastic.jpg b/static/images/speakers/company/elastic.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/elastic.jpg
rename to static/images/speakers/company/elastic.jpg
diff --git a/test-hugo/static/images/speakers/company/elastic.png b/static/images/speakers/company/elastic.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/elastic.png
rename to static/images/speakers/company/elastic.png
diff --git a/test-hugo/static/images/speakers/company/elium.jpg b/static/images/speakers/company/elium.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/elium.jpg
rename to static/images/speakers/company/elium.jpg
diff --git a/test-hugo/static/images/speakers/company/fairvioo.jpg b/static/images/speakers/company/fairvioo.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/fairvioo.jpg
rename to static/images/speakers/company/fairvioo.jpg
diff --git a/test-hugo/static/images/speakers/company/gde.jpg b/static/images/speakers/company/gde.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/gde.jpg
rename to static/images/speakers/company/gde.jpg
diff --git a/test-hugo/static/images/speakers/company/gde.png b/static/images/speakers/company/gde.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/gde.png
rename to static/images/speakers/company/gde.png
diff --git a/test-hugo/static/images/speakers/company/google.jpg b/static/images/speakers/company/google.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/google.jpg
rename to static/images/speakers/company/google.jpg
diff --git a/test-hugo/static/images/speakers/company/google.svg b/static/images/speakers/company/google.svg
similarity index 100%
rename from test-hugo/static/images/speakers/company/google.svg
rename to static/images/speakers/company/google.svg
diff --git a/test-hugo/static/images/speakers/company/i-bp.png b/static/images/speakers/company/i-bp.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/i-bp.png
rename to static/images/speakers/company/i-bp.png
diff --git a/test-hugo/static/images/speakers/company/innovorder.jpg b/static/images/speakers/company/innovorder.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/innovorder.jpg
rename to static/images/speakers/company/innovorder.jpg
diff --git a/test-hugo/static/images/speakers/company/jems_datafactory.jpg b/static/images/speakers/company/jems_datafactory.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/jems_datafactory.jpg
rename to static/images/speakers/company/jems_datafactory.jpg
diff --git a/test-hugo/static/images/speakers/company/jetbrains.jpg b/static/images/speakers/company/jetbrains.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/jetbrains.jpg
rename to static/images/speakers/company/jetbrains.jpg
diff --git a/test-hugo/static/images/speakers/company/jetbrains.png b/static/images/speakers/company/jetbrains.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/jetbrains.png
rename to static/images/speakers/company/jetbrains.png
diff --git a/test-hugo/static/images/speakers/company/lectra.jpg b/static/images/speakers/company/lectra.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/lectra.jpg
rename to static/images/speakers/company/lectra.jpg
diff --git a/test-hugo/static/images/speakers/company/magellium.jpg b/static/images/speakers/company/magellium.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/magellium.jpg
rename to static/images/speakers/company/magellium.jpg
diff --git a/test-hugo/static/images/speakers/company/magellium.png b/static/images/speakers/company/magellium.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/magellium.png
rename to static/images/speakers/company/magellium.png
diff --git a/test-hugo/static/images/speakers/company/mapr.MapR b/static/images/speakers/company/mapr.MapR
similarity index 100%
rename from test-hugo/static/images/speakers/company/mapr.MapR
rename to static/images/speakers/company/mapr.MapR
diff --git a/test-hugo/static/images/speakers/company/mapr.jpg b/static/images/speakers/company/mapr.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/mapr.jpg
rename to static/images/speakers/company/mapr.jpg
diff --git a/test-hugo/static/images/speakers/company/monkey_moon.png b/static/images/speakers/company/monkey_moon.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/monkey_moon.png
rename to static/images/speakers/company/monkey_moon.png
diff --git a/test-hugo/static/images/speakers/company/monkeypatch.jpg b/static/images/speakers/company/monkeypatch.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/monkeypatch.jpg
rename to static/images/speakers/company/monkeypatch.jpg
diff --git a/test-hugo/static/images/speakers/company/ovh.jpg b/static/images/speakers/company/ovh.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/ovh.jpg
rename to static/images/speakers/company/ovh.jpg
diff --git a/test-hugo/static/images/speakers/company/please-open.png b/static/images/speakers/company/please-open.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/please-open.png
rename to static/images/speakers/company/please-open.png
diff --git a/test-hugo/static/images/speakers/company/saagie.jpg b/static/images/speakers/company/saagie.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/saagie.jpg
rename to static/images/speakers/company/saagie.jpg
diff --git a/test-hugo/static/images/speakers/company/schoolmouv.jpg b/static/images/speakers/company/schoolmouv.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/schoolmouv.jpg
rename to static/images/speakers/company/schoolmouv.jpg
diff --git a/test-hugo/static/images/speakers/company/sfeir.jpg b/static/images/speakers/company/sfeir.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/sfeir.jpg
rename to static/images/speakers/company/sfeir.jpg
diff --git a/test-hugo/static/images/speakers/company/societe_generale.png b/static/images/speakers/company/societe_generale.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/societe_generale.png
rename to static/images/speakers/company/societe_generale.png
diff --git a/test-hugo/static/images/speakers/company/sogeti.jpg b/static/images/speakers/company/sogeti.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/sogeti.jpg
rename to static/images/speakers/company/sogeti.jpg
diff --git a/test-hugo/static/images/speakers/company/tabmo.jpg b/static/images/speakers/company/tabmo.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/tabmo.jpg
rename to static/images/speakers/company/tabmo.jpg
diff --git a/test-hugo/static/images/speakers/company/tabmo.png b/static/images/speakers/company/tabmo.png
similarity index 100%
rename from test-hugo/static/images/speakers/company/tabmo.png
rename to static/images/speakers/company/tabmo.png
diff --git a/test-hugo/static/images/speakers/company/toptal.jpg b/static/images/speakers/company/toptal.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/toptal.jpg
rename to static/images/speakers/company/toptal.jpg
diff --git a/test-hugo/static/images/speakers/company/xebia.jpg b/static/images/speakers/company/xebia.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/xebia.jpg
rename to static/images/speakers/company/xebia.jpg
diff --git a/test-hugo/static/images/speakers/company/zenika.jpg b/static/images/speakers/company/zenika.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/company/zenika.jpg
rename to static/images/speakers/company/zenika.jpg
diff --git a/test-hugo/static/images/speakers/david_gageot.jpg b/static/images/speakers/david_gageot.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/david_gageot.jpg
rename to static/images/speakers/david_gageot.jpg
diff --git a/test-hugo/static/images/speakers/david_pilato.jpg b/static/images/speakers/david_pilato.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/david_pilato.jpg
rename to static/images/speakers/david_pilato.jpg
diff --git a/test-hugo/static/images/speakers/decoster_nicolas.jpg b/static/images/speakers/decoster_nicolas.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/decoster_nicolas.jpg
rename to static/images/speakers/decoster_nicolas.jpg
diff --git a/test-hugo/static/images/speakers/delattre_alexandre.jpg b/static/images/speakers/delattre_alexandre.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/delattre_alexandre.jpg
rename to static/images/speakers/delattre_alexandre.jpg
diff --git a/test-hugo/static/images/speakers/demey_emmanuel.jpg b/static/images/speakers/demey_emmanuel.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/demey_emmanuel.jpg
rename to static/images/speakers/demey_emmanuel.jpg
diff --git a/test-hugo/static/images/speakers/detant_xavier.jpg b/static/images/speakers/detant_xavier.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/detant_xavier.jpg
rename to static/images/speakers/detant_xavier.jpg
diff --git a/test-hugo/static/images/speakers/diaz_de_tuesta_ane.jpg b/static/images/speakers/diaz_de_tuesta_ane.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/diaz_de_tuesta_ane.jpg
rename to static/images/speakers/diaz_de_tuesta_ane.jpg
diff --git a/test-hugo/static/images/speakers/emmanuel_demey.jpg b/static/images/speakers/emmanuel_demey.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/emmanuel_demey.jpg
rename to static/images/speakers/emmanuel_demey.jpg
diff --git a/test-hugo/static/images/speakers/estelle_landry.jpg b/static/images/speakers/estelle_landry.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/estelle_landry.jpg
rename to static/images/speakers/estelle_landry.jpg
diff --git a/test-hugo/static/images/speakers/fabien_tregan.jpg b/static/images/speakers/fabien_tregan.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/fabien_tregan.jpg
rename to static/images/speakers/fabien_tregan.jpg
diff --git a/test-hugo/static/images/speakers/firek_robert.jpg b/static/images/speakers/firek_robert.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/firek_robert.jpg
rename to static/images/speakers/firek_robert.jpg
diff --git a/test-hugo/static/images/speakers/flebus_olivier.jpg b/static/images/speakers/flebus_olivier.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/flebus_olivier.jpg
rename to static/images/speakers/flebus_olivier.jpg
diff --git a/test-hugo/static/images/speakers/francois_teychene.jpg b/static/images/speakers/francois_teychene.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/francois_teychene.jpg
rename to static/images/speakers/francois_teychene.jpg
diff --git a/test-hugo/static/images/speakers/frederic_cabestre.png b/static/images/speakers/frederic_cabestre.png
similarity index 100%
rename from test-hugo/static/images/speakers/frederic_cabestre.png
rename to static/images/speakers/frederic_cabestre.png
diff --git a/test-hugo/static/images/speakers/gautier_mechling.jpg b/static/images/speakers/gautier_mechling.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/gautier_mechling.jpg
rename to static/images/speakers/gautier_mechling.jpg
diff --git a/test-hugo/static/images/speakers/giulia_bianchi.jpg b/static/images/speakers/giulia_bianchi.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/giulia_bianchi.jpg
rename to static/images/speakers/giulia_bianchi.jpg
diff --git a/test-hugo/static/images/speakers/grall_tugdual.jpg b/static/images/speakers/grall_tugdual.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/grall_tugdual.jpg
rename to static/images/speakers/grall_tugdual.jpg
diff --git a/test-hugo/static/images/speakers/guillaume_andrieu.jpg b/static/images/speakers/guillaume_andrieu.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/guillaume_andrieu.jpg
rename to static/images/speakers/guillaume_andrieu.jpg
diff --git a/test-hugo/static/images/speakers/guillaume_laforge.jpeg b/static/images/speakers/guillaume_laforge.jpeg
similarity index 100%
rename from test-hugo/static/images/speakers/guillaume_laforge.jpeg
rename to static/images/speakers/guillaume_laforge.jpeg
diff --git a/test-hugo/static/images/speakers/guillaume_membre.jpg b/static/images/speakers/guillaume_membre.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/guillaume_membre.jpg
rename to static/images/speakers/guillaume_membre.jpg
diff --git a/test-hugo/static/images/speakers/guilloux_sebastien.jpg b/static/images/speakers/guilloux_sebastien.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/guilloux_sebastien.jpg
rename to static/images/speakers/guilloux_sebastien.jpg
diff --git a/test-hugo/static/images/speakers/harkousse_sara.jpg b/static/images/speakers/harkousse_sara.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/harkousse_sara.jpg
rename to static/images/speakers/harkousse_sara.jpg
diff --git a/test-hugo/static/images/speakers/horacio_gonzalez.jpg b/static/images/speakers/horacio_gonzalez.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/horacio_gonzalez.jpg
rename to static/images/speakers/horacio_gonzalez.jpg
diff --git a/test-hugo/static/images/speakers/hubert_sablonniere.jpg b/static/images/speakers/hubert_sablonniere.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/hubert_sablonniere.jpg
rename to static/images/speakers/hubert_sablonniere.jpg
diff --git a/test-hugo/static/images/speakers/jean-francois_garreau.jpg b/static/images/speakers/jean-francois_garreau.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/jean-francois_garreau.jpg
rename to static/images/speakers/jean-francois_garreau.jpg
diff --git a/test-hugo/static/images/speakers/juliane_blier.jpg b/static/images/speakers/juliane_blier.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/juliane_blier.jpg
rename to static/images/speakers/juliane_blier.jpg
diff --git a/test-hugo/static/images/speakers/julien_topcu.jpeg b/static/images/speakers/julien_topcu.jpeg
similarity index 100%
rename from test-hugo/static/images/speakers/julien_topcu.jpeg
rename to static/images/speakers/julien_topcu.jpeg
diff --git a/test-hugo/static/images/speakers/kropp_victor.jpg b/static/images/speakers/kropp_victor.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/kropp_victor.jpg
rename to static/images/speakers/kropp_victor.jpg
diff --git a/test-hugo/static/images/speakers/laforge_guillaume.jpeg b/static/images/speakers/laforge_guillaume.jpeg
similarity index 100%
rename from test-hugo/static/images/speakers/laforge_guillaume.jpeg
rename to static/images/speakers/laforge_guillaume.jpeg
diff --git a/test-hugo/static/images/speakers/laurent_victorino.jpg b/static/images/speakers/laurent_victorino.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/laurent_victorino.jpg
rename to static/images/speakers/laurent_victorino.jpg
diff --git a/test-hugo/static/images/speakers/laurent_wroblewski.jpg b/static/images/speakers/laurent_wroblewski.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/laurent_wroblewski.jpg
rename to static/images/speakers/laurent_wroblewski.jpg
diff --git a/test-hugo/static/images/speakers/lepage_nicolas.jpg b/static/images/speakers/lepage_nicolas.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/lepage_nicolas.jpg
rename to static/images/speakers/lepage_nicolas.jpg
diff --git a/test-hugo/static/images/speakers/leplus_olivier.jpg b/static/images/speakers/leplus_olivier.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/leplus_olivier.jpg
rename to static/images/speakers/leplus_olivier.jpg
diff --git a/test-hugo/static/images/speakers/leray_sylvain.jpg b/static/images/speakers/leray_sylvain.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/leray_sylvain.jpg
rename to static/images/speakers/leray_sylvain.jpg
diff --git a/test-hugo/static/images/speakers/lian_li.jpg b/static/images/speakers/lian_li.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/lian_li.jpg
rename to static/images/speakers/lian_li.jpg
diff --git a/test-hugo/static/images/speakers/lieva_anastasia.jpg b/static/images/speakers/lieva_anastasia.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/lieva_anastasia.jpg
rename to static/images/speakers/lieva_anastasia.jpg
diff --git a/test-hugo/static/images/speakers/louvet_celine.jpg b/static/images/speakers/louvet_celine.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/louvet_celine.jpg
rename to static/images/speakers/louvet_celine.jpg
diff --git a/test-hugo/static/images/speakers/mathieu_passenaud.png b/static/images/speakers/mathieu_passenaud.png
similarity index 100%
rename from test-hugo/static/images/speakers/mathieu_passenaud.png
rename to static/images/speakers/mathieu_passenaud.png
diff --git a/test-hugo/static/images/speakers/mechling_gautier.jpg b/static/images/speakers/mechling_gautier.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/mechling_gautier.jpg
rename to static/images/speakers/mechling_gautier.jpg
diff --git a/test-hugo/static/images/speakers/membre_guillaume.jpg b/static/images/speakers/membre_guillaume.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/membre_guillaume.jpg
rename to static/images/speakers/membre_guillaume.jpg
diff --git a/test-hugo/static/images/speakers/miro_cupak_miro.jpg b/static/images/speakers/miro_cupak_miro.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/miro_cupak_miro.jpg
rename to static/images/speakers/miro_cupak_miro.jpg
diff --git a/test-hugo/static/images/speakers/miro_miro_cupak.jpg b/static/images/speakers/miro_miro_cupak.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/miro_miro_cupak.jpg
rename to static/images/speakers/miro_miro_cupak.jpg
diff --git a/test-hugo/static/images/speakers/nicolas_comet.jpg b/static/images/speakers/nicolas_comet.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/nicolas_comet.jpg
rename to static/images/speakers/nicolas_comet.jpg
diff --git a/test-hugo/static/images/speakers/nicolas_de_loof.jpg b/static/images/speakers/nicolas_de_loof.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/nicolas_de_loof.jpg
rename to static/images/speakers/nicolas_de_loof.jpg
diff --git a/test-hugo/static/images/speakers/nicolas_decoster.jpg b/static/images/speakers/nicolas_decoster.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/nicolas_decoster.jpg
rename to static/images/speakers/nicolas_decoster.jpg
diff --git a/test-hugo/static/images/speakers/nicolas_lepage.jpg b/static/images/speakers/nicolas_lepage.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/nicolas_lepage.jpg
rename to static/images/speakers/nicolas_lepage.jpg
diff --git a/test-hugo/static/images/speakers/olivier_flebus.jpg b/static/images/speakers/olivier_flebus.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/olivier_flebus.jpg
rename to static/images/speakers/olivier_flebus.jpg
diff --git a/test-hugo/static/images/speakers/olivier_leplus.jpg b/static/images/speakers/olivier_leplus.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/olivier_leplus.jpg
rename to static/images/speakers/olivier_leplus.jpg
diff --git a/test-hugo/static/images/speakers/philippe_charriere.jpg b/static/images/speakers/philippe_charriere.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/philippe_charriere.jpg
rename to static/images/speakers/philippe_charriere.jpg
diff --git a/test-hugo/static/images/speakers/pilato_david.jpg b/static/images/speakers/pilato_david.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/pilato_david.jpg
rename to static/images/speakers/pilato_david.jpg
diff --git a/test-hugo/static/images/speakers/piotr_przybyl.jpg b/static/images/speakers/piotr_przybyl.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/piotr_przybyl.jpg
rename to static/images/speakers/piotr_przybyl.jpg
diff --git a/test-hugo/static/images/speakers/przybyl_piotr.jpg b/static/images/speakers/przybyl_piotr.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/przybyl_piotr.jpg
rename to static/images/speakers/przybyl_piotr.jpg
diff --git a/test-hugo/static/images/speakers/quentin_adam.jpg b/static/images/speakers/quentin_adam.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/quentin_adam.jpg
rename to static/images/speakers/quentin_adam.jpg
diff --git a/test-hugo/static/images/speakers/raul_jimenez.png b/static/images/speakers/raul_jimenez.png
similarity index 100%
rename from test-hugo/static/images/speakers/raul_jimenez.png
rename to static/images/speakers/raul_jimenez.png
diff --git a/test-hugo/static/images/speakers/robert_firek.jpg b/static/images/speakers/robert_firek.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/robert_firek.jpg
rename to static/images/speakers/robert_firek.jpg
diff --git a/test-hugo/static/images/speakers/sara_harkousse.jpg b/static/images/speakers/sara_harkousse.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/sara_harkousse.jpg
rename to static/images/speakers/sara_harkousse.jpg
diff --git a/test-hugo/static/images/speakers/sebastien_guilloux.jpg b/static/images/speakers/sebastien_guilloux.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/sebastien_guilloux.jpg
rename to static/images/speakers/sebastien_guilloux.jpg
diff --git a/test-hugo/static/images/speakers/souterre_tiffany.jpg b/static/images/speakers/souterre_tiffany.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/souterre_tiffany.jpg
rename to static/images/speakers/souterre_tiffany.jpg
diff --git a/test-hugo/static/images/speakers/sylvain_wallez.png b/static/images/speakers/sylvain_wallez.png
similarity index 100%
rename from test-hugo/static/images/speakers/sylvain_wallez.png
rename to static/images/speakers/sylvain_wallez.png
diff --git a/test-hugo/static/images/speakers/teychene_francois.jpg b/static/images/speakers/teychene_francois.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/teychene_francois.jpg
rename to static/images/speakers/teychene_francois.jpg
diff --git a/test-hugo/static/images/speakers/tiffany_souterre.jpg b/static/images/speakers/tiffany_souterre.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/tiffany_souterre.jpg
rename to static/images/speakers/tiffany_souterre.jpg
diff --git a/test-hugo/static/images/speakers/topcu_julien.jpeg b/static/images/speakers/topcu_julien.jpeg
similarity index 100%
rename from test-hugo/static/images/speakers/topcu_julien.jpeg
rename to static/images/speakers/topcu_julien.jpeg
diff --git a/test-hugo/static/images/speakers/tugdual_grall.jpg b/static/images/speakers/tugdual_grall.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/tugdual_grall.jpg
rename to static/images/speakers/tugdual_grall.jpg
diff --git a/test-hugo/static/images/speakers/victor_kropp.jpg b/static/images/speakers/victor_kropp.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/victor_kropp.jpg
rename to static/images/speakers/victor_kropp.jpg
diff --git a/test-hugo/static/images/speakers/xavier_detant.jpg b/static/images/speakers/xavier_detant.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/xavier_detant.jpg
rename to static/images/speakers/xavier_detant.jpg
diff --git a/test-hugo/static/images/speakers/zibi_fabien.jpg b/static/images/speakers/zibi_fabien.jpg
similarity index 100%
rename from test-hugo/static/images/speakers/zibi_fabien.jpg
rename to static/images/speakers/zibi_fabien.jpg
diff --git a/test-hugo/themes/devfest-theme-hugo/404.html b/themes/devfest-theme-hugo/404.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/404.html
rename to themes/devfest-theme-hugo/404.html
diff --git a/test-hugo/themes/devfest-theme-hugo/LICENSE b/themes/devfest-theme-hugo/LICENSE
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/LICENSE
rename to themes/devfest-theme-hugo/LICENSE
diff --git a/test-hugo/themes/devfest-theme-hugo/README.md b/themes/devfest-theme-hugo/README.md
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/README.md
rename to themes/devfest-theme-hugo/README.md
diff --git a/test-hugo/themes/devfest-theme-hugo/archetypes/blog.md b/themes/devfest-theme-hugo/archetypes/blog.md
similarity index 66%
rename from test-hugo/themes/devfest-theme-hugo/archetypes/blog.md
rename to themes/devfest-theme-hugo/archetypes/blog.md
index 7f56a30..171da63 100644
--- a/test-hugo/themes/devfest-theme-hugo/archetypes/blog.md
+++ b/themes/devfest-theme-hugo/archetypes/blog.md
@@ -1,10 +1,9 @@
---
title: "{{ replace .TranslationBaseName "-" " " | title }}"
date: {{ .Date }}
+image: "a header image"
+brief: "A short brief"
draft: true
-tags: []
-featured_image: ""
-description: ""
---
TODO
\ No newline at end of file
diff --git a/test-hugo/themes/devfest-theme-hugo/archetypes/default.md b/themes/devfest-theme-hugo/archetypes/default.md
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/archetypes/default.md
rename to themes/devfest-theme-hugo/archetypes/default.md
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/script/base.js b/themes/devfest-theme-hugo/assets/script/base.js
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/script/base.js
rename to themes/devfest-theme-hugo/assets/script/base.js
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/script/good-map.js b/themes/devfest-theme-hugo/assets/script/good-map.js
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/script/good-map.js
rename to themes/devfest-theme-hugo/assets/script/good-map.js
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/script/shuffle.js b/themes/devfest-theme-hugo/assets/script/shuffle.js
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/script/shuffle.js
rename to themes/devfest-theme-hugo/assets/script/shuffle.js
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/script/subscription.js b/themes/devfest-theme-hugo/assets/script/subscription.js
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/script/subscription.js
rename to themes/devfest-theme-hugo/assets/script/subscription.js
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/main.scss b/themes/devfest-theme-hugo/assets/style/main.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/main.scss
rename to themes/devfest-theme-hugo/assets/style/main.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_blog.scss b/themes/devfest-theme-hugo/assets/style/pages/_blog.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_blog.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_blog.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_blogs.scss b/themes/devfest-theme-hugo/assets/style/pages/_blogs.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_blogs.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_blogs.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_code_of_conduct.scss b/themes/devfest-theme-hugo/assets/style/pages/_code_of_conduct.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_code_of_conduct.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_code_of_conduct.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_faq.scss b/themes/devfest-theme-hugo/assets/style/pages/_faq.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_faq.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_faq.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_home.scss b/themes/devfest-theme-hugo/assets/style/pages/_home.scss
similarity index 98%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_home.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_home.scss
index 7ea3279..9da8152 100644
--- a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_home.scss
+++ b/themes/devfest-theme-hugo/assets/style/pages/_home.scss
@@ -48,6 +48,7 @@
section.speakers {
ul {
+ padding-left: 0;
list-style: none;
display: flex;
justify-content: space-around;
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_session.scss b/themes/devfest-theme-hugo/assets/style/pages/_session.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_session.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_session.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_sessions.scss b/themes/devfest-theme-hugo/assets/style/pages/_sessions.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_sessions.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_sessions.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_speaker.scss b/themes/devfest-theme-hugo/assets/style/pages/_speaker.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_speaker.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_speaker.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_speakers.scss b/themes/devfest-theme-hugo/assets/style/pages/_speakers.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_speakers.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_speakers.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/pages/_team.scss b/themes/devfest-theme-hugo/assets/style/pages/_team.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/pages/_team.scss
rename to themes/devfest-theme-hugo/assets/style/pages/_team.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_base.scss b/themes/devfest-theme-hugo/assets/style/partials/_base.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_base.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_base.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_buttons.scss b/themes/devfest-theme-hugo/assets/style/partials/_buttons.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_buttons.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_buttons.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_footer.scss b/themes/devfest-theme-hugo/assets/style/partials/_footer.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_footer.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_footer.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_header.scss b/themes/devfest-theme-hugo/assets/style/partials/_header.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_header.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_header.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_hero.scss b/themes/devfest-theme-hugo/assets/style/partials/_hero.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_hero.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_hero.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_jumbo.scss b/themes/devfest-theme-hugo/assets/style/partials/_jumbo.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_jumbo.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_jumbo.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_main.scss b/themes/devfest-theme-hugo/assets/style/partials/_main.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_main.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_main.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_partners.scss b/themes/devfest-theme-hugo/assets/style/partials/_partners.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_partners.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_partners.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_socials.scss b/themes/devfest-theme-hugo/assets/style/partials/_socials.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_socials.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_socials.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_speakers.scss b/themes/devfest-theme-hugo/assets/style/partials/_speakers.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_speakers.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_speakers.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_table_of_contents.scss b/themes/devfest-theme-hugo/assets/style/partials/_table_of_contents.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_table_of_contents.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_table_of_contents.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_tags.scss b/themes/devfest-theme-hugo/assets/style/partials/_tags.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_tags.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_tags.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_tickets.scss b/themes/devfest-theme-hugo/assets/style/partials/_tickets.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_tickets.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_tickets.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/assets/style/partials/_type.scss b/themes/devfest-theme-hugo/assets/style/partials/_type.scss
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/assets/style/partials/_type.scss
rename to themes/devfest-theme-hugo/assets/style/partials/_type.scss
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/404.html b/themes/devfest-theme-hugo/layouts/404.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/404.html
rename to themes/devfest-theme-hugo/layouts/404.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/_default/baseof.html b/themes/devfest-theme-hugo/layouts/_default/baseof.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/_default/baseof.html
rename to themes/devfest-theme-hugo/layouts/_default/baseof.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/_default/list.html b/themes/devfest-theme-hugo/layouts/_default/list.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/_default/list.html
rename to themes/devfest-theme-hugo/layouts/_default/list.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/_default/single.html b/themes/devfest-theme-hugo/layouts/_default/single.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/_default/single.html
rename to themes/devfest-theme-hugo/layouts/_default/single.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/blog/list.html b/themes/devfest-theme-hugo/layouts/blog/list.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/blog/list.html
rename to themes/devfest-theme-hugo/layouts/blog/list.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/blog/single.html b/themes/devfest-theme-hugo/layouts/blog/single.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/blog/single.html
rename to themes/devfest-theme-hugo/layouts/blog/single.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/index.html b/themes/devfest-theme-hugo/layouts/index.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/index.html
rename to themes/devfest-theme-hugo/layouts/index.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/footer.html b/themes/devfest-theme-hugo/layouts/partials/footer.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/footer.html
rename to themes/devfest-theme-hugo/layouts/partials/footer.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/head.html b/themes/devfest-theme-hugo/layouts/partials/head.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/head.html
rename to themes/devfest-theme-hugo/layouts/partials/head.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/header.html b/themes/devfest-theme-hugo/layouts/partials/header.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/header.html
rename to themes/devfest-theme-hugo/layouts/partials/header.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/partner.html b/themes/devfest-theme-hugo/layouts/partials/partner.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/partner.html
rename to themes/devfest-theme-hugo/layouts/partials/partner.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/partnersgroup.html b/themes/devfest-theme-hugo/layouts/partials/partnersgroup.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/partnersgroup.html
rename to themes/devfest-theme-hugo/layouts/partials/partnersgroup.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/session.html b/themes/devfest-theme-hugo/layouts/partials/session.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/session.html
rename to themes/devfest-theme-hugo/layouts/partials/session.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/speaker.html b/themes/devfest-theme-hugo/layouts/partials/speaker.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/speaker.html
rename to themes/devfest-theme-hugo/layouts/partials/speaker.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/subscribe.html b/themes/devfest-theme-hugo/layouts/partials/subscribe.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/subscribe.html
rename to themes/devfest-theme-hugo/layouts/partials/subscribe.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/team.html b/themes/devfest-theme-hugo/layouts/partials/team.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/team.html
rename to themes/devfest-theme-hugo/layouts/partials/team.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/partials/ticket.html b/themes/devfest-theme-hugo/layouts/partials/ticket.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/partials/ticket.html
rename to themes/devfest-theme-hugo/layouts/partials/ticket.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/shortcodes/hero.html b/themes/devfest-theme-hugo/layouts/shortcodes/hero.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/shortcodes/hero.html
rename to themes/devfest-theme-hugo/layouts/shortcodes/hero.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/shortcodes/jumbo.html b/themes/devfest-theme-hugo/layouts/shortcodes/jumbo.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/shortcodes/jumbo.html
rename to themes/devfest-theme-hugo/layouts/shortcodes/jumbo.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/speakers/list.html b/themes/devfest-theme-hugo/layouts/speakers/list.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/speakers/list.html
rename to themes/devfest-theme-hugo/layouts/speakers/list.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/speakers/single.html b/themes/devfest-theme-hugo/layouts/speakers/single.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/speakers/single.html
rename to themes/devfest-theme-hugo/layouts/speakers/single.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/talks/list.html b/themes/devfest-theme-hugo/layouts/talks/list.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/talks/list.html
rename to themes/devfest-theme-hugo/layouts/talks/list.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/talks/single.html b/themes/devfest-theme-hugo/layouts/talks/single.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/talks/single.html
rename to themes/devfest-theme-hugo/layouts/talks/single.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/taxonomy/list.html b/themes/devfest-theme-hugo/layouts/taxonomy/list.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/taxonomy/list.html
rename to themes/devfest-theme-hugo/layouts/taxonomy/list.html
diff --git a/test-hugo/themes/devfest-theme-hugo/layouts/team/single.html b/themes/devfest-theme-hugo/layouts/team/single.html
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/layouts/team/single.html
rename to themes/devfest-theme-hugo/layouts/team/single.html
diff --git a/test-hugo/themes/devfest-theme-hugo/robots.txt b/themes/devfest-theme-hugo/robots.txt
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/robots.txt
rename to themes/devfest-theme-hugo/robots.txt
diff --git a/test-hugo/themes/devfest-theme-hugo/theme.toml b/themes/devfest-theme-hugo/theme.toml
similarity index 100%
rename from test-hugo/themes/devfest-theme-hugo/theme.toml
rename to themes/devfest-theme-hugo/theme.toml
diff --git a/tools/extract-data.js b/tools/extract-data.js
index fd288b2..d4189d1 100644
--- a/tools/extract-data.js
+++ b/tools/extract-data.js
@@ -17,7 +17,7 @@ const firebaseData = require('./firebase-data.json');
['partners', 'team', 'tickets']
.forEach(key => {
- const dest = path.join(__dirname, `../test-hugo/data/${key}.yml`);
+ const dest = path.join(__dirname, `../data/${key}.yml`);
const data = firebaseData[key];
writeToYml(data, dest);
});
diff --git a/tools/generate-sessions.js b/tools/generate-sessions.js
index 07df4c3..eaf9bd7 100644
--- a/tools/generate-sessions.js
+++ b/tools/generate-sessions.js
@@ -39,7 +39,7 @@ Object.entries(firebaseData.sessions)
generateSessionName(id, session.title),
generateSessionData(parseInt(id, 10), session)]))
.forEach(([filename, data]) => {
- const dest = path.join(__dirname, `../test-hugo/content/talks/${filename}`);
+ const dest = path.join(__dirname, `../content/talks/${filename}`);
console.log('Write to', dest);
fs.writeFileSync(dest, data, writeOption);
});
\ No newline at end of file
diff --git a/tools/generate-speakers.js b/tools/generate-speakers.js
index 6c65e7c..b63dd0d 100644
--- a/tools/generate-speakers.js
+++ b/tools/generate-speakers.js
@@ -23,7 +23,7 @@ ${speaker.bio}
Object.entries(firebaseData.speakers)
.map(([id, speaker]) => ([id, generateSpeakerData(id, speaker)]))
.forEach(([id, data]) => {
- const dest = path.join(__dirname, `../test-hugo/content/speakers/${id}.md`);
+ const dest = path.join(__dirname, `../content/speakers/${id}.md`);
console.log('Write to', dest);
fs.writeFileSync(dest, data, writeOption);
});
\ No newline at end of file