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.
''' | |
*** | |
Modified generic daemon class | |
*** | |
Author: http://www.jejik.com/articles/2007/02/ | |
a_simple_unix_linux_daemon_in_python/www.boxedice.com | |
License: http://creativecommons.org/licenses/by-sa/3.0/ |
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 |