diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-09T13·27+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-09T13·27+0000 |
commit | d206a2812fc07e9ae8af016d3dc9d24a8bcf0508 (patch) | |
tree | fd5ddddb62457a5f5b5e67f68c5156dcecee7da6 /blog/content | |
parent | 2e0ad09a0275dd11e0e8b3db1cbd04e72b9d196c (diff) |
Prefer hugo for blog.wpcarro.dev
Instead of creating my own static website generator, I'm trying Hugo. Huge is a newer alternative to Jekyll. So far, I like what I see. - Ignoring /blog/public since this is where `huge -D` generates the static assets. - Using a TailwindCSS theme. - Creating a dumby post about Emacs to test deployments. - Deleting all Common Lisp and Nix code that powered my previous, half-baked blog.
Diffstat (limited to 'blog/content')
-rw-r--r-- | blog/content/english/my-first-post.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/blog/content/english/my-first-post.md b/blog/content/english/my-first-post.md new file mode 100644 index 000000000000..266cc3ab2282 --- /dev/null +++ b/blog/content/english/my-first-post.md @@ -0,0 +1,14 @@ +--- +title: "Professional Emacs" +date: 2020-03-09T11:50:28Z +draft: false +--- +# Professional Emacs + +Some people don't think it's possible. Is it possible? + +## Elisp + +```elisp +(defvar answer 'yes) +``` |