Remove ribbon

This commit is contained in:
Valentin Brandl 2019-08-05 21:16:09 +02:00
parent 493b5e8111
commit 0c22e5662a
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -28,7 +28,6 @@ import Html
import Html.Attributes exposing (href, placeholder, readonly, style, value) import Html.Attributes exposing (href, placeholder, readonly, style, value)
import Html.Events exposing (onInput) import Html.Events exposing (onInput)
import Parse exposing (parseUrl) import Parse exposing (parseUrl)
import Ribbon exposing (ribbon)
type Msg type Msg
@ -85,7 +84,6 @@ header : Html msg
header = header =
Html.header [] Html.header []
[ h1 myStyle [ text servicename ] [ h1 myStyle [ text servicename ]
, ribbon repository
] ]