Skip to content

Commit dfdbc82

Browse files
committed
customized landing with moving message
1 parent b6c6ae7 commit dfdbc82

File tree

5 files changed

+45
-6
lines changed

5 files changed

+45
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ Changes made to fulfil my needs:
121121
* Added sass compilation tags in config.xml
122122
* Added [PDF viewer](https://github.com/alesordo/alesordo.github.io)
123123
* Added scss and modified ```portfolYOU.scss```
124+
* Customized landing page
124125

125126
<div align="center">
126127
<sub><sup>© 2025 Alejandro Garnung Menéndez, licensed under the <a href="./LICENSE">MIT License</a>.</sup></sub>

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
source : . # Indica la raíz de tu proyecto. Jekyll busca aquí todo el contenido y los archivos necesarios para generar el sitio
33
title : agarnung.github.io
44
description : >-
5-
A work in progress...
5+
Under continuous development
66
incremental : false
77

88
# URL base donde se aloja el sitio:

_includes/landing.html

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,52 @@
11
<div class="row justify-content-center align-items-center p-4">
2-
<div class="col-lg-4 col-md-6 text-center mt-4">
2+
<div class="col-md-6 text-center mt-4">
33

44
<!-- Fine Circle Responsive Image -->
55
<div id="container" class="my-2">
66
<div id="dummy"></div>
77
<div id="element">
8-
<img src="{{ site.author.image }}" alt="{{ site.title }}" class="circle-image wow animated zoomIn" data-wow-delay=".1s">
8+
<img src="{{ site.author.image }}" alt="{{ site.title }}" class="circle-image wow animated zoomIn"
9+
data-wow-delay=".1s" data-toggle="tooltip" title="me">
910
</div>
1011
</div>
1112

12-
<p class="text-muted wow animated slideInUp" data-wow-delay=".15s">{{ site.description }}</p>
13+
<div class="text-muted wow animated slideInUp" data-wow-delay=".2s">
14+
<div class="container mt-4">
15+
<h3 class="font-weight-bold">Hi! Welcome to my website</h3>
16+
</div>
17+
</div>
18+
19+
20+
</div>
1321

22+
<section class="p-4 align-items-start" class="text-muted wow animated slideInUp" data-wow-delay=".1s">
23+
<div class="col-lg-8 mx-auto markdown-body" style="text-align: justify;">
24+
<p>
25+
I am Alejandro, <span id="age"></span> years old. Here, you can take a look at my (personal) <a href="/projects">projects</a> (I have selected several that are available on my GitHub profile), <a href="/blog">blog</a> (where I document and share insights about computer vision, image processing, math, geometry, engineering, among other topics), <a href="/publications">publications</a> (a mix of informal, formal, and quasi-formal documents I find valuable for anyone interested in my fields), and, if you'd like to know more about me, <a href="/about">additional information</a>.
26+
</p>
1427
</div>
15-
</div>
28+
</section>
29+
30+
</div>
31+
32+
<div style="white-space: nowrap; overflow: hidden; position: relative; width: 100%; height: 50px; background-color: transparent;">
33+
<div style="display: inline-block; position: absolute; animation: scroll-left 10s linear infinite; font-family: monospace; color: grey;">
34+
&lt;div&gt; 🚀 {{ site.description }} 🚀 &lt;/div&gt;
35+
</div>
36+
</div>
37+
38+
<style>
39+
@keyframes scroll-left {
40+
0% {
41+
transform: translateX(200%);
42+
}
43+
100% {
44+
transform: translateX(-100%);
45+
}
46+
}
47+
48+
div[style*="animation: scroll-left"] {
49+
white-space: nowrap;
50+
}
51+
</style>
52+

assets/TODO.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@
99
- Zoom aislado en el visor de PDF
1010
- Refractorizar para no meter en el markdown tanto javascript/html.
1111
- Habilitar mediante tag en el .md la posibilidad de añadir una foto miniatura en la previsualización del post del blog
12+
- Dynamically calculate my age and the year of the copyright
13+
- Debajo de mi foto, ahí algo dinámico (hora del día, quote of the day, etc.)

pages/about.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ My interests focus on the research and development of analytical techniques and
1818
{% include about/skills.html title="Other Skills" source=site.data.other-skills %}
1919
</div>
2020

21-
2221
## **Education**
2322
<div class="row">
2423
{% include about/timeline.html %}

0 commit comments

Comments
 (0)