In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:
- You can separate the code into different repositories.
| module BootstrapLayout exposing (main) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.Events exposing (onClick) | |
| import Navigation exposing (Location) | |
| import UrlParser exposing ((</>)) | |
| import Bootstrap.Navbar as Navbar | |
| import Bootstrap.Grid as Grid | |
| import Bootstrap.Grid.Col as Col |