feat: Initial commit

This commit is contained in:
ptrcnull 2020-11-24 22:49:31 +01:00
commit bd1406fd28
7 changed files with 66 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/smol"]
path = themes/smol
url = ssh://git@git.ddd.rip/ptrcnull/smol.git

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

36
config.toml Normal file
View File

@ -0,0 +1,36 @@
baseURL = "http://example.org/"
languageCode = "en-us"
title = "ptrcnull.me"
theme = "smol"
[params]
subtitle = "writeups and other stuff"
dateFmt = "02.01.2006 15:04"
[menu]
[[menu.main]]
identifier = "posts"
name = "Posts"
url = "/posts/"
weight = 1
[[menu.main]]
identifier = "writeups"
name = "Writeups"
url = "/writeups/"
weight = 2
[[menu.footer]]
name = "GitHub"
url = "https://github.com/ptrcnull"
weight = 1
[[menu.footer]]
name = "Telegram"
url = "https://t.me/ptrcnull"
weight = 2
[[menu.footer]]
name = "Mail"
url = "mailto:hello@ptrcnull.me"
weight = 3

16
content/_index.md Normal file
View File

@ -0,0 +1,16 @@
---
title: "ptrcnull's nerdposting"
date: 2020-11-24T19:24:33+01:00
draft: false
---
![avatar](/avatar.png)
Hi! I'm Patrycja.
DevOps Engineer at [HackingDept](https://hackingdept.com),
CTF player at [p4](https://p4.team),
Golang/TypeScript programmer,
[open-sourcerer](https://github.com/ptrcnull).
Self-hosting enthusiast, maintains some public services, loves Docker, Hitokage and Flutter.

BIN
static/avatar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

1
themes/smol Submodule

@ -0,0 +1 @@
Subproject commit c41d408a511696674a7ccc28872f8753b955888f

4
update.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
pushd $(dirname $0)/themes/smol
git pull
popd