Bien commencer

Vue générale du projet, son contenu, et comment commencer à coder des templates.

Télécharger les sources

Pour récupérer l'archive complète du projet avec les fichiers LESS et scripts de création.

Télécharger les sources

  ipediatre/
  ├── css/
  │   ├── bootstrap.css
  │   ├── bootstrap.min.css
  ├── js/
  │   ├── bootstrap.js
  │   ├── bootstrap.min.js
  └── img/
      ├── glyphicons-halflings.png
      └── glyphicons-halflings-white.png

With a brief intro into the contents out of the way, we can focus on putting Bootstrap to use. To do that, we'll utilize a basic HTML template that includes everything we mentioned in the File structure.

Now, here's a look at a typical HTML file:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
  <head>
    <title></title>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
  </head>
  <body>
    <h1>Hello, world!</h1>
  </body>
</html>

Quelques exemples de pages HTML pour iPediatre (et quelques exemples résiduels de Twitter Bootstrap).

  • Page pédiatre publique

    Une page résumant les informations du pédiatre et accessible sans mot de passe

  • Page pédiatre privée

    Une page plus complète du pédiatre, accessible uniquement par ses patients.

  • Pagelayout

    Une page iPediatre vierge.

Pour en savoir plus sur l'aspect technique du site iPediatre, consultez donc la documentation

Lire la documentation iPediatre