diff options
author | EuAndreh <eu@euandre.org> | 2020-08-12 07:16:58 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-12 07:16:58 -0300 |
commit | f99df9104f9bc6f7d0c078cb95b919c67497a470 (patch) | |
tree | 1ad413e82c205a9b5676046125c08c05d5c82380 | |
parent | _layouts/til.html: Mirror _layouts/post.html content (diff) | |
download | euandre.org-f99df9104f9bc6f7d0c078cb95b919c67497a470.tar.gz euandre.org-f99df9104f9bc6f7d0c078cb95b919c67497a470.tar.xz |
Add post and TIL templates
-rw-r--r-- | _config.yml | 1 | ||||
-rw-r--r-- | templates/post.md | 7 | ||||
-rw-r--r-- | templates/til.md | 7 |
3 files changed, 15 insertions, 0 deletions
diff --git a/_config.yml b/_config.yml index 4990238..9896de2 100644 --- a/_config.yml +++ b/_config.yml @@ -26,6 +26,7 @@ exclude: - spelling/ - scripts/ - result + - templates/ collections: pastebins: diff --git a/templates/post.md b/templates/post.md new file mode 100644 index 0000000..d953683 --- /dev/null +++ b/templates/post.md @@ -0,0 +1,7 @@ +--- +title: FIXME +date: FIXME +layout: post +lang: FIXME +ref: FIXME-post +--- diff --git a/templates/til.md b/templates/til.md new file mode 100644 index 0000000..e0c8f94 --- /dev/null +++ b/templates/til.md @@ -0,0 +1,7 @@ +--- +title: FIXME +date: FIXME +layout: til +lang: FIXME +ref: FIXME-til +--- |