WIP: streamline some stuff
All checks were successful
Build and deploy website / Build and Push Hugo Site (push) Successful in 36s
All checks were successful
Build and deploy website / Build and Push Hugo Site (push) Successful in 36s
WIP: move blog to hugo
This commit is contained in:
parent
06e94159b1
commit
1f62e2064d
45 changed files with 489 additions and 609 deletions
32
content/page/about/index.md
Normal file
32
content/page/about/index.md
Normal 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 I’ve built, explored, or
|
||||
learned — whether it’s through code, a side project, or just a good book or film.
|
||||
It’s 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 don’t really expect this blog to get much traffic… or any, really. But since it’s a publicly accessible page—and given the limited resources I can allocate to it—I like to keep an eye on general activity.
|
||||
|
||||
I don’t need in-depth tracking or detailed analytics, so commercial tracking solutions aren’t 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.
|
11
content/page/archives/index.md
Normal file
11
content/page/archives/index.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: "Archives"
|
||||
date: 2022-03-06
|
||||
layout: "archives"
|
||||
slug: "archives"
|
||||
menu:
|
||||
main:
|
||||
weight: 2
|
||||
params:
|
||||
icon: archives
|
||||
---
|
38
content/page/links/index.md
Normal file
38
content/page/links/index.md
Normal 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.
|
13
content/page/search/index.md
Normal file
13
content/page/search/index.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: "Search"
|
||||
slug: "search"
|
||||
layout: "search"
|
||||
outputs:
|
||||
- html
|
||||
- json
|
||||
menu:
|
||||
main:
|
||||
weight: 3
|
||||
params:
|
||||
icon: search
|
||||
---
|
Loading…
Add table
Add a link
Reference in a new issue