License.purs 909 Bytes
Newer Older
1 2 3 4 5 6 7 8
module Gargantext.License where

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

license :: R.Element
license = H.p {}
            [ H.text "Gargantext "
9 10 11
            , H.span { className: "glyphicon glyphicon-registration-mark"} []
            , 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 19 20
              [ H.text ", with licences aGPLV3 and CECILL variant Affero compliant, " ]
            , H.span { className: "glyphicon glyphicon-copyright-mark"   } []
            , H.a { href: "https://cnrs.fr", target:"blank"} [H.text " CNRS 2017-Present "]
21 22 23
            , H.text "."
            ]