summaryrefslogtreecommitdiff
path: root/templates/es/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/es/index.html')
-rw-r--r--templates/es/index.html85
1 files changed, 85 insertions, 0 deletions
diff --git a/templates/es/index.html b/templates/es/index.html
new file mode 100644
index 0000000..683a691
--- /dev/null
+++ b/templates/es/index.html
@@ -0,0 +1,85 @@
+(define footer
+"
+El contenido de este sitio está publicado bajo los términos de la licencia
+[Cretive Commons Atribución Compartir-Igual 4.0
+Internacional](http://creativecommons.org/licenses/by-sa/4.0/deed.es) a no
+ser que se especifique lo contrario.
+")
+
+(define summary (md-to-html (file->string "templates/es/_summary.md")))
+(define philo (md-to-html (file->string "templates/es/_philosophy.md")))
+(define funding (md-to-html (file->string "templates/es/_funding.md")))
+
+(define books (md-to-html (file->string "templates/es/_books.md")))
+(define python (md-to-html (file->string "templates/es/_programming_in_python.md")))
+(define informatics (md-to-html (file->string "templates/es/_whats_informatics.md")))
+
+(load "templates/_defs.scm")
+(set! lang "es")
+
+(sxml->xml
+ (base
+ "ElenQ Publishing"
+ `(,(header
+ `(((name . "Technology")
+ (title . "Ingeniería - ElenQ Technology")
+ (absurl . "https://elenq.tech/es/index.html"))
+ ((name . "Publishing")
+ (title . "Editorial - ElenQ Publishing")
+ (absurl . ,(absurl-to-lang "/index.html"))
+ (active . #t)))
+
+ `(((name . "en")
+ (title . "English")
+ (absurl . "/en/"))
+ ((name . "es")
+ (title . "Español")
+ (absurl . "/es/")
+ (active . #t))))
+
+
+ (div (@ (class "content container"))
+
+ ,(logo-title)
+
+ (section (@ (class summary))
+ (@raw ,summary))
+
+ (section
+ ,(anchored-h 2 "Filosofía" "philosophy")
+ (@raw ,philo))
+
+ (section
+ ,(anchored-h 2 "Libros" "books")
+ (@raw ,books))
+
+
+ ,(anchored-h 3 "¿Qué es la informática?" "whats-informatics")
+ (p "Escrito por Giacomo Tesio y traducido y adaptado por Ekaitz Zárraga, «¿Qué es
+ la informática?» trata de describir qué es la informática desde su origen y de
+ generar reflexión respecto a la ética de ésta y al uso que se le está dando hoy
+ en día. Este tomo sirve como apertura y como declaración de intenciones ya que
+ las ideas de Giacomo encajan a la perfección con el objetivo de ElenQ
+ Publishing, a pesar de haber surgido de forma independiente.")
+ (div (@ (class "flex-around-wrap"))
+ (@raw ,informatics)
+ ,(book "5px" "/books/What_is_Informatics/es/cover.png" '("type2")))
+
+
+ ,(anchored-h 3 "Programación en Python" "programming-in-python")
+ (p "Escrito por Ekaitz Zárraga como material para sus cursos de formación, este
+ documento es un manual del lenguaje de programación Python que describe además
+ fundamentos técnicos de la programación general.")
+ (div (@ (class "flex-around-wrap"))
+ (@raw ,python)
+ ,(book "13px" "/books/Programming_in_Python/es/cover.png" '("type1")))
+
+
+ (section
+ ,(anchored-h 2 "Financiación" "funding")
+ (@raw ,funding)))
+
+ (footer (@ (class bar-bottom))
+ (div (@ (class "container text-center"))
+ (h6 "ElenQ Technology")
+ ,(md footer))))))