module $foldername exposing (..) import Html exposing (..) import Html.Events exposing (..) import Html.Attributes exposing (id, class, classList) view model = div [] [ text "$foldername" ] update msg model = ( model, Cmd.none ) main = Html.program { init = ("", Cmd.none) , view = view , update = update , subscriptions = \_ -> Sub.none }