github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/web/elm/src/Dashboard/Text.elm (about) 1 module Dashboard.Text exposing 2 ( asciiArt 3 , cliInstructions 4 , setPipelineInstructions 5 , welcome 6 ) 7 8 9 asciiArt : String 10 asciiArt = 11 String.join "\n" 12 [ " `::: " 13 , " `::::: " 14 , " ::::::: " 15 , " ::::::::` " 16 , " ::::::::, : " 17 , " ::::::::: ::: :: " 18 , " ::::::::: :::::` , " 19 , " ::::::::: ::::::: " 20 , " :::::::::::::::::` " 21 , " :::::::::::::::: " 22 , " ::::::::::::::. " 23 , " `:` ::::::, `:::. " 24 , " `:. ::::, :::. " 25 , " :: `:. :::, :::: " 26 , " :: `:. :::: :::::: " 27 , " :: `:. ,::::::::::::: " 28 , " :: :. .::::::::::::::: " 29 , " ,: ::::::::::::::::. " 30 , " ::::::::. ::::::::` " 31 , " ::::::::` :::::::: ` " 32 , " :::::::: :::::::: ::` " 33 , " ,::::::: :::::::: ,::, . ` " 34 , " ::::::::: :::::::: ,:::,:: " 35 , " ::::::::. :::::::. ,::::: " 36 , " ::::::::` ::::::: ` :: : " 37 , " .::::::: ::::: ` : .:,::, " 38 , " .:::::: :. ::: ` :::,::. " 39 , " .::::: .: :. . . ::: ,::`" 40 , " .::: .: :. , ,::, ,::" 41 , " ., .: :. , ::: ,:" 42 , " .: :. : . " 43 , " `: :. ` : " 44 , " : " 45 , " . ` " 46 , " :: " 47 , " ::,: " 48 , " : : " 49 , " `::: " 50 , " :, :: " 51 , " .:. :, " 52 , " : " 53 , " ` " 54 , " . " 55 ] 56 57 58 welcome : String 59 welcome = 60 "welcome to concourse!" 61 62 63 cliInstructions : String 64 cliInstructions = 65 "first, download the CLI tools:" 66 67 68 setPipelineInstructions : String 69 setPipelineInstructions = 70 "then, use `fly set-pipeline` to set up your new pipeline"