Skip to content

Commit

Permalink
Prof. Lenino
Browse files Browse the repository at this point in the history
  • Loading branch information
lenincompres committed Oct 21, 2024
1 parent 352c4e1 commit fc6cdd5
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 16 deletions.
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
<!DOCTYPE html>
<html>

<head>
<script src="DOM.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9S3H2NXER5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}

function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-9S3H2NXER5');
</script>
</head>

<body>
<script src="index.js" type="module"></script>
</body>

</html>
31 changes: 18 additions & 13 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const TEXT = {
DOM.set({
title: "Lenino.net",
keywords: "lenin, lenino, lenin compres, jackrabbits, jack rabbits, rabbit candy jar, cantacuentos",
description: "Lenino is a creative storyteller—the affectionate alter-ego of Lenin Compres—an explorer of sience, technology and arts who was born in the Caribbean and has lived in New York City all his “adult” life.",
description: "Prof. Lenino is a creative storyteller—the affectionate alter-ego of Lenin Compres—an explorer of sience, technology and arts who was born in the Caribbean and has lived in New York City all his “adult” life.",
link: "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css",
icon: "assets/icon.png",
css: {
Expand Down Expand Up @@ -123,18 +123,23 @@ DOM.set({
margin: _IS_MOBILE.as("1em", 0),
flexDirection: _IS_MOBILE.as("row", "column"),
borderRadius: _IS_MOBILE.as(".5em", 0),
a: {
fontSize: "2.3em",
href: "#home",
img: {
src: "assets/leninoLogo.png",
height: "30",
},
span: {
fontFamily: "title, Georgia, \"Times New Roman\", Times, serif",
text: "Lenino",
},
click: e => _CURRENT_PAGE.value = pageNames[0],
img: {
src: "assets/leninoLogo.png",
height: "30",
marginRight: '0.5em'
},
span: {
span: 'Prof. ',
a: {
verticalAlign: 'middle',
fontSize: "2.3em",
href: "#home",
span: {
fontFamily: "title, Georgia, \"Times New Roman\", Times, serif",
text: "Lenino",
},
click: e => _CURRENT_PAGE.value = pageNames[0],
}
},
tagline: {
margin: "0 .6em",
Expand Down
4 changes: 2 additions & 2 deletions modules/pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export const PAGES = {
lineHeight: "1.5em",
content: [{
p: lang === "es" ? [
`<b>Lenin Comprés</b> es un profesional de los medios interactivos, las ciencias del aprendizaje y las artes escénicas. Ejerce como profesor y tecnólogo creativo en la Escuela de Artes <a href="https://itp.nyu.edu/itp/people/?tab=staff">TISCH de la Universidad de Nueva York</a> y es egresado del <a href="https://www.tc.columbia.edu/human-development/cognitive-studies-in-education/">Teacher’s College de la Universidad de Columbia</a>. Ha escrito obras premiadas en la República Dominicana como el guión de la película <a href="https://www.imdb.com/title/tt7552938/">Mis 500 locos</a>, co-escrita junto a Waddys Jáquez y que representó al país en los premios Oscars del 2021. También es el creador del primer juego de mesa original de autoría dominicana, con el primer y único libro instructivo enteramente escrito en verso, <a href="http://jackrabbits.lenino.net">Lenino’s JACK RABBITS</a>.`
`Lenin Comprés (también conocido como Prof. Lenino) es un profesional en medios interactivos, ciencias de la educación y artes escénicas. Se desempeña como profesor y tecnólogo creativo en la <a href="https://itp.nyu.edu/itp/people/?tab=staff"> Escuela de Artes TISCH de la Universidad de Nueva York</a> y es graduado de Teachers College de la Universidad de Columbia. Lenin es coautor del guion galardonado de <a href="https://www.imdb.com/title/tt7552938/">Mis 500 locos</a>, que representó a la República Dominicana en los Óscares de 2021. También es el creador de <a href="http://jackrabbits.lenino.net">Lenino’s JACK RABBITS</a>, el primer juego de mesa original escrito por un dominicano, que cuenta con un manual de instrucciones completamente en verso y rima. Como artista, se presenta bajo su seudónimo Lenino como un cuentacuentos musicómico.`
] : [
`<b>Lenin Comprés</b> is a professional in interactive media, education sciences, and performing arts. He is a professor and creative technologist at <a href="https://itp.nyu.edu/itp/people/?tab=staff">New York University's TISCH School of the Arts</a> and a graduate of <a href="https://www.tc.columbia.edu/human-development/cognitive-studies-in-education/">Columbia University's Teacher's College</a>. He has written award-winning works in the Dominican Republic such as the script for the movie <a href="https://www.imdb.com/title/tt7552938/">A State of Madness</a>—co-written with Waddys Jáquez—which represented the country at the 2021 Oscars. He is also the creator of the first original Dominican-authored board game—with the first and only instructional booklet written entirely in verse and rhyme—<a href="http://jackrabbits.lenino.net">Lenino’s JACK RABBITS</a>.`
`Lenin Comprés (also known as Prof. Lenino) is a professional in interactive media, educational sciences, and performing arts. He serves as a professor and creative technologist at <a href="https://itp.nyu.edu/itp/people/?tab=staff">New York University's TISCH School of the Arts</a> and holds a degree from Columbia University's Teachers College. Lenin is the co-writer of the award-winning script for <a href="https://www.imdb.com/title/tt7552938/">A State of Madness</a>, which represented the Dominican Republic at the 2021 Oscars. He is also the creator of <a href="http://jackrabbits.lenino.net">Lenino’s JACK RABBITS</a>, the first original Dominican-authored board game featuring an instructional booklet written entirely in verse and rhyme. As an artist, he performs as a quirky musical storyteller under his Lenino moniker.`
]
}
],
Expand Down

0 comments on commit fc6cdd5

Please sign in to comment.