summaryrefslogtreecommitdiff
path: root/templates/en/index.html
blob: 8806ce13b33c4ff4b11db10d004f1d2fa2f2f462 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
(define footer
"
The content of this website is published under the terms of [Creative Commons
Attribution Share-Alike 4.0
International](http://creativecommons.org/licenses/by-sa/4.0/) license unless
otherwise stated.
")

(define summary  (file->string "templates/en/_summary.md"))
(define ethics   (file->string "templates/en/_ethics.md"))
(define products (file->string "templates/en/_products.md"))

(load "templates/_defs.scm")
(set! lang "en")

(sxml->xml
  (base 
    "ElenQ Technology"
    `(,(header
         `(((name . "Technology")
            (title . "Engineering - ElenQ Technology")
            (absurl . ,(absurl-to-lang "/index.html"))
            (active . #t))
           ((name . "Publishing")
            (title . "Publishing House - ElenQ Publishing")
            (absurl . "https://publishing.elenq.tech/en/")))

         `(((name . "en")
            (title . "English")
            (absurl . "/en/")
            (active . #t))
           ((name . "es")
            (title . "Español")
            (absurl . "/es/"))))

       (div (@ (class "content container"))
            ,(logo-title)

            (section (@ (class summary))
                     ,(md summary))

            (section
              ,(anchored-h 2 "Ethics" "ethics")
              ,(md ethics))

            (section
              ,(anchored-h 2 "Products" "products")
              ,(md products))

            (section
              ,(anchored-h 2 "Who we are" "who")
              (p "ElenQ Technology wouldn't be possible without all the people
                 around it, who support and help us unconditionally. Despite
                 not being part of ElenQ Technology officially, they deserve
                 to be mentioned at least in these lines, even if they are not
                 listed below.")
              (div (@ (class card))
                   (div (@ (class card-picture))
                        (img (@ (src "/static/img/faces/ekaitz.jpg")
                                (class round))))
                   (div (@ (class card-data))
                        (h3 "Ekaitz Zarraga")
                        (p "Telecommunication engineer (EEE equivalent) by
                           training, 10 years of experience as a programmer and
                           a lifetime of R&D, Ekaitz is the one man army of
                           ElenQ Technology.")
                           (p "He says his only talent is learning. He founded
                              ElenQ Technology with the idea of inspiring
                              others to make a better world helping them with
                              the difficult task of going out of their comfort
                              zone.")
                              (p "He writes about his work at ElenQ Technology "
                                 (a (@ (href "https://ekaitz.elenq.tech"))
                                    "in his blog") "."))))

            (section
              ,(anchored-h 2 "Contact" "contact")
              (p "Send us an email to: "
                 (a (@ (href "mailto:hello@elenq.tech")) (em "hello@elenq.tech"))
                 " "
                 (a (@ (href "/static/files/publickey.hello@elenq.tech.txt")) "[PGP]"))))

       (footer (@ (class bar-bottom))
               (div (@ (class "container text-center"))
                    (h6 "ElenQ Technology")
                    ,(md footer))))))