-
Notifications
You must be signed in to change notification settings - Fork 0
/
Info.elm
36 lines (33 loc) · 1.13 KB
/
Info.elm
1
2
3
4
5
6
7
8
9
10
11
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
module Info exposing (main)
import Html exposing (Html, div, p, text, strong, a, img)
import Html.Attributes exposing (style, href, alt, src)
import View exposing (container)
main : Html a
main =
container (Just ( "/Topic.elm", "Topic" ))
[ div [ style [ ( "font-size", "1.2em" ), ( "margin-top", "5em" ) ] ]
[ p []
[ text "We are "
, strong [] [ text "Štěpán Pilař" ]
, text " & "
, strong [] [ text "Bea Jakubcová" ]
]
, p []
[ text "We work at "
, a
[ href "http://www.enerfis.cz/en/" ]
[ text "Enerfis" ]
, text " and develop an on-line energy monitoring solution"
]
, a
[ href "https://www.enectiva.cz/en/about-enectiva" ]
[ img
[ src "/img/enectiva.svg"
, alt "Enectiva"
, style [ ( "width", "100%" ), ( "margin", "2em 0" ) ]
]
[]
]
]
]
[]