Skip to content

Commit 6ad240c

Browse files
committed
Refactor home
I'm just going to copy the styles rather than migrate everything for now
1 parent 1b0a077 commit 6ad240c

23 files changed

+919
-121
lines changed

content/collections/pages/blog.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
id: blog
33
title: Blog
44
icon: blog
5+
show_title: false
56
---
67

78
TODO

content/collections/pages/home.md

+69-27
Original file line numberDiff line numberDiff line change
@@ -2,59 +2,83 @@
22
id: home
33
title: 'About me'
44
icon: home
5+
show_title: false
56
---
67

78
<h1 class="sr-only">Noel De Martin</h1>
89

9-
<span class="mb-4 text-3xl font-medium text-blue-darkest tracking-wide">
10+
<span class="h1">
1011
Hi there!
1112
</span>
1213

14+
<div class="text-xl">
15+
1316
My name is Noel. I am a developer and entrepreneur who loves to learn, solve problems, and build products that make an impact.
1417

1518
Welcome to my personal website. Take your time to look around, and if you want to talk with me don't hesitate on <a href="mailto:{{contact:email}}?subject=Hi+there!">sending an email</a>.
1619

20+
</div>
21+
1722
<span class="block my-4 text-2xl text-center font-medium text-blue-darkest w-full">
1823
If you want to learn how I...
1924
</span>
2025

2126
<div class="flex flex-col md:flex-row">
2227

23-
{{ partial:home/cta title="Am" }}
24-
Keep reading!
25-
{{ /partial:home/cta }}
28+
{{ partial:home/cta title="Am" }}Keep reading!{{ /partial:home/cta }}
2629

27-
{{ partial:home/cta title="Think" }}
28-
Read my [Blog](/blog)
29-
{{ /partial:home/cta }}
30+
{{ partial:home/cta title="Think" }}Read my [Blog](/blog){{ /partial:home/cta }}
3031

31-
{{ partial:home/cta title="Work" }}
32-
Check out my [Projects](/projects)
33-
or [What I'm doing now](/now)
34-
{{ /partial:home/cta }}
32+
{{ partial:home/cta title="Work" }}Check out my [Projects](/projects)<br/>or [What I'm doing now](/now){{ /partial:home/cta }}
3533

3634
</div>
3735

38-
## My values
36+
<h2 class="text-center text-3xl !mt-10 md:text-2xl md:text-left" id="my-values">My values</h2>
37+
38+
<div class="flex flex-col-reverse w-full md:flex-row">
39+
40+
<div class="max-w-readable [&>p:first-of-type]:!mt-0 [&>p:last-of-type]:!mb-0">
3941

4042
Values are abstract concepts, and sometimes they are perceived as buzzwords. But values are important to me and I try to embed them in my actions.
4143

4244
These are my values:
4345

44-
- Autonomy
45-
- Awareness
46-
- Continuous improvement
47-
- Creativity
48-
- Education
49-
- Joy
50-
- Openness
51-
- Privacy
52-
- Quality > Quantity
53-
- Simplicity > Complexity
54-
- Sustainability
55-
- Work-life balance
56-
57-
## My background
46+
<ul class="flex flex-wrap mt-2">
47+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Autonomy</strong></li>
48+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Awareness</strong></li>
49+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Continuous improvement</strong></li>
50+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Creativity</strong></li>
51+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Education</strong></li>
52+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Joy</strong></li>
53+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Openness</strong></li>
54+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Privacy</strong></li>
55+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Quality > Quantity</strong></li>
56+
<li class="my-1 w-full md:w-1/2"><strong class="font-medium">Simplicity > Complexity</strong></li>
57+
<li class="my-1 w-full md:w-1/2 md:mb-0"><strong class="font-medium">Sustainability</strong></li>
58+
<li class="my-1 w-full md:w-1/2 md:mb-0"><strong class="font-medium">Work-life balance</strong></li>
59+
</ul>
60+
61+
</div>
62+
63+
<div class="relative flex flex-grow self-stretch justify-center mb-4 md:mb-0 md:ml-4">
64+
<div class="flex items-center justify-center w-32 h-32 md:absolute md:inset-0 md:m-8 md:w-auto md:h-auto">
65+
{{ partial:icons/my-values class="w-full" }}
66+
</div>
67+
</div>
68+
69+
</div>
70+
71+
<h2 class="text-center text-3xl !mt-10 md:text-2xl md:text-left" id="my-background">My background</h2>
72+
73+
<div class="flex flex-col w-full md:flex-row">
74+
75+
<div class="relative flex flex-grow self-stretch justify-center mb-4 md:mb-0 md:mr-4">
76+
<div class="flex items-center justify-center w-32 h-32 md:absolute md:inset-0 md:m-8 md:w-auto md:h-auto">
77+
{{ partial:icons/my-background class="w-full" }}
78+
</div>
79+
</div>
80+
81+
<div class="max-w-readable [&>p:first-of-type]:!mt-0 [&>p:last-of-type]:!mb-0">
5882

5983
I have been working in the software industry since 2011. I enjoy programming in and of itself, but I've always cared about the impact of my code. That's what led me to **entrepreneurship**, and I was involved in startups and bootstrapped projects for a while. In 2019 I migrated into **mission-driven organizations**, but now [I'm thinking of doing entrepreneurship again](/blog/the-end-of-the-chapter#here-we-go-again).
6084

@@ -64,7 +88,15 @@ If you want to know more, some years ago I wrote a summary of my career in my bl
6488

6589
Or, if you prefer, you can just read [my CV](/cv.pdf){:target="\_blank"}.
6690

67-
## Beyond the code
91+
</div>
92+
93+
</div>
94+
95+
<h2 class="text-center text-3xl !mt-10 md:text-2xl md:text-left" id="beyond-the-code">Beyond the code</h2>
96+
97+
<div class="flex flex-col-reverse w-full md:flex-row">
98+
99+
<div class="max-w-readable [&>p:first-of-type]:!mt-0 [&>p:last-of-type]:!mb-0">
68100

69101
This website and my online persona are mostly about my career and professional life. But maybe you'd like to see a little bit behind the curtain.
70102

@@ -73,3 +105,13 @@ I am an avid Manga reader and I occasionally watch Anime as well. I also watch M
73105
I also enjoy cooking (and eating, of course!). I specially like spicy food and craft beer, and I recently started growing plants at home. Eventually it would be nice to have a small vegetable garden, but for now I'm just learning to keep plants alive.
74106

75107
On occasion I like going for a hike, and I love traveling and learning about other cultures. You may like to know that my two favorite novels are [The Sherlock Holmes Anthology](https://en.wikipedia.org/wiki/Canon_of_Sherlock_Holmes){:target="\_blank"} and [Musashi](/blog/lessons-learned-musashi-by-eiji-yoshikawa). I enjoy many art forms, and I have more content pending to consume than I'll be able in my life-time. Which makes for a very fun ride :).
108+
109+
</div>
110+
111+
<div class="relative flex flex-grow self-stretch justify-center mb-4 md:mb-0 md:ml-4">
112+
<div class="flex items-center justify-center w-32 h-32 md:absolute md:inset-0 md:m-8 md:w-auto md:h-auto">
113+
{{ partial:icons/beyond-the-code class="w-full" }}
114+
</div>
115+
</div>
116+
117+
</div>

content/collections/pages/projects.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
id: projects
3+
title: Projects
4+
icon: projects
5+
---
6+
7+
In this page, you can find what I've been working on throughout my career. This only includes personal projects though, if you're curious about my professional experience you can look at [my CV](/cv.pdf).
8+
9+
I've also given [some talks](/talks) you may want to check out.

content/trees/collections/pages.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
tree:
22
- entry: home
33
- entry: blog
4+
- entry: projects

0 commit comments

Comments
 (0)