License.purs 891 Bytes
Newer Older
1 2 3 4 5 6
module Gargantext.License where

import Reactix as R
import Reactix.DOM.HTML as H

license :: R.Element
7
license = H.p { className: "license" }
8
            [ H.text "Gargantext "
9
            , H.span { className: "fa fa-registered"} []
10 11
            , H.text " is made by "
            , H.a { href: "https://iscpif.fr"
12
                  , target: "blank"
13
                  } [ H.text "CNRS/ISCPIF" ]
14 15 16 17
            , H.a { href: "http://gitlab.iscpif.fr/humanities/gargantext/blob/stable/LICENSE"
                  , target: "blank"
                  , title: "Legal instructions of the project."
                  }
18
              [ H.text ", with licences aGPLV3 and CECILL variant Affero compliant, " ]
19
            , H.span { className: "fa fa-copyright"   } []
20
            , H.a { href: "https://cnrs.fr", target:"blank"} [H.text " CNRS 2017-Present "]
21 22 23
            , H.text "."
            ]