diff --git a/content/about.md b/content/about.md
new file mode 100644
index 0000000000000000000000000000000000000000..b7dc3e0d205d2eb5ab67a2c42abdc6c4ce8df740
--- /dev/null
+++ b/content/about.md
@@ -0,0 +1,8 @@
++++
+title = "À propos"
+
+[extra]
+hide = true
++++
+
+Ce site a été réalisé en [Zola](https://www.getzola.org/) avec [w3.css](https://www.w3schools.com/w3css/) et [Forkawesome](https://forkaweso.me/Fork-Awesome/).
\ No newline at end of file
diff --git a/templates/nav.html b/templates/nav.html
index b94b972793df46c3b7f260e4c940a93471a3b232..a20e7add1303c4544ade160dc54217c0106a5008 100644
--- a/templates/nav.html
+++ b/templates/nav.html
@@ -3,29 +3,31 @@
   
   {% set index = get_section(path="_index.md") %}
   {% for page in index.pages %}
+    {% if not page.extra.hide %}
     <a href="{{ page.permalink }}" class="w3-bar-item w3-button w3-mobile
       {% if current_path %}{% if current_path == page.path %}active{% endif %}{% endif %}">
       {{page.title}}
     </a>
-  {% endfor %}
-
-  {% for s in index.subsections %}{% set subsection = get_section(path=s) %}
-    <a href="{{ subsection.permalink }}" class="w3-bar-item w3-button w3-mobile
-      {% if current_path %}{% if current_path is starting_with(subsection.path) %}active{% endif %}{% endif %}">
-      {{subsection.title}}
-    </a>
+    {% endif %}
   {% endfor %}
 
 
   <div class="w3-dropdown-hover w3-mobile w3-right">
-    <button class="w3-button">Dropdown <i class="fa fa-caret-down"></i></button>
+    <button class="w3-button">Plus <i class="fa fa-caret-down"></i></button>
     <div class="w3-dropdown-content w3-bar-block w3-dark-grey">
-      <a href="#" class="w3-bar-item w3-button w3-mobile">Link 1</a>
-      <a href="#" class="w3-bar-item w3-button w3-mobile">Link 2</a>
-      <a href="#" class="w3-bar-item w3-button w3-mobile">Link 3</a>
+      <a href="/about/" class="w3-bar-item w3-button w3-mobile">À propos</a>
+      <a href="https://git.duniter.org/" class="w3-bar-item w3-button w3-mobile"><i class="fa fa-gitlab"></i> GitLab</a>
+      <a href="https://forum.duniter.org/" class="w3-bar-item w3-button w3-mobile"><i class="fa fa-discourse"></i> Forum</a>
     </div>
   </div>
 
-
+  {% for s in index.subsections %}{% set subsection = get_section(path=s) %}
+    {% if not subsection.extra.hide %}
+    <a href="{{ subsection.permalink }}" class="w3-bar-item w3-button w3-mobile w3-right
+      {% if current_path %}{% if current_path is starting_with(subsection.path) %}active{% endif %}{% endif %}">
+      {{subsection.title}}
+    </a>
+    {% endif %}
+  {% endfor %}
 
 </nav>
\ No newline at end of file