WIP: move blog to hugo
All checks were successful
Build and deploy website / Build and Push Hugo Site (push) Successful in 1m16s

This commit is contained in:
Radu C. Martin 2025-04-08 09:27:07 +02:00
parent 747c75dffc
commit f7f1c6f09b
43 changed files with 523 additions and 601 deletions

View file

@ -0,0 +1,32 @@
---
title: About
slug: about
menu:
main:
weight: 5
params:
icon: person
readingTime: false
license: false
---
## About me
Hi, I'm Radu, and this is my personal blog.
I'm a Mechanical Engineer by training, and a Software Developer by (current)
trade.
This blog is a place where I document things Ive built, explored, or
learned — whether its through code, a side project, or just a good book or film.
Its part journal, part playground, and sometimes just a place to organize my
thoughts.
The quality, quantity and length of posts will
## Data Privacy Policy
I dont really expect this blog to get much traffic… or any, really. But since its a publicly accessible page—and given the limited resources I can allocate to it—I like to keep an eye on general activity.
I dont need in-depth tracking or detailed analytics, so commercial tracking solutions arent a good fit here.
Instead, this site uses a self-hosted instance of [Umami](https://github.com/umami-software/umami) for basic analytics. All data is anonymized, stored locally, and never shared with third parties.

View file

@ -0,0 +1,11 @@
---
title: "Archives"
date: 2022-03-06
layout: "archives"
slug: "archives"
menu:
main:
weight: 2
params:
icon: archives
---

View file

@ -0,0 +1,38 @@
---
title: Links
links:
- title: GitHub
description: GitHub is the world's largest software development platform.
website: https://github.com
image: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
- title: TypeScript
description: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
website: https://www.typescriptlang.org
image: ts-logo-128.jpg
menu:
main:
weight: 4
params:
icon: link
draft: true
comments: false
---
To use this feature, add `links` section to frontmatter.
This page's frontmatter:
```yaml
links:
- title: GitHub
description: GitHub is the world's largest software development platform.
website: https://github.com
image: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
- title: TypeScript
description: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
website: https://www.typescriptlang.org
image: ts-logo-128.jpg
```
`image` field accepts both local and external images.

View file

@ -0,0 +1,13 @@
---
title: "Search"
slug: "search"
layout: "search"
outputs:
- html
- json
menu:
main:
weight: 3
params:
icon: search
---