Commit fa68e79714c2aa9dcba4699fb27ee83a0e9f7ecc
Merge branch 'master' of ssh://servclubinfo.insecure.deule.net/crep
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
menu.php
1 | 1 | <div class="well well-sm" role="complementary"> |
2 | 2 | <ul class="nav"> |
3 | 3 | <li> |
4 | - <a href="#">News</a> | |
4 | + <a href="#" onClick="file('news.php')">News</a> | |
5 | 5 | </li> |
6 | 6 | <li> |
7 | - <a href="#">Agenda</a> | |
7 | + <a href="#" onClick="file('agenda.php')">Agenda</a> | |
8 | 8 | </li> |
9 | 9 | <li> |
10 | - <a href="#">Connexion</a> | |
10 | + <a href="#" onClick="file('connect.php')">Connexion</a> | |
11 | 11 | </li> |
12 | 12 | </ul> |
13 | 13 | </div> | ... | ... |
topnavbar.php
1 | 1 | <nav class="navbar navbar-default navbar-fixed-top" role="navigation"> |
2 | 2 | <div class="container"> |
3 | 3 | <div class="navbar-header"> |
4 | - <a class="navbar-brand" onClick="document.location.reload();" href="#">Coupe de Robotique des Ecoles Primaires</a> <!-- ajouter message [Coupe de Robotique des Ecoles Primaires] quand la souris passe --> | |
4 | + <a class="navbar-brand" onClick="document.location.reload();" data-toggle="tooltip" data-placement="bottom" title="Afficher la page d'accueil">Tooltip on bottom href="#">Coupe de Robotique des Ecoles Primaires</a> | |
5 | 5 | </div> |
6 | 6 | <div class="collapse navbar-collapse"> |
7 | 7 | <?php | ... | ... |