(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"))))) (footer (@ (class bar-bottom)) (div (@ (class "container text-center")) (h6 "ElenQ Technology") ,(md footer))))))