diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3533e71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +public/ +resources/ +hugo_stats.json +.hugo_build.lock diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a2331b9 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +deploy: generate + rsync -avz -e 'ssh -p 21098' public/ adrizyks@server198.web-hosting.com:~/public_html/blog.adrianabeyta.com/ +generate: public/* + hugo +test: + cygstart http://localhost:1313/ + hugo server + \ No newline at end of file diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/content/posts/my-first-post.md b/content/posts/my-first-post.md new file mode 100644 index 0000000..bdbfebc --- /dev/null +++ b/content/posts/my-first-post.md @@ -0,0 +1,26 @@ ++++ +title = 'My First Post' +date = 2024-08-10T17:25:00-06:00 +draft = true ++++ +# Introduction + +Hello, I am trying out this new [Hugo](https://gohugo.io) template for my *tech blog*. + +# Test + +- Equation 1: + +$$O(n^2)$$ + +More text + +## Code block +```cpp +#include + +int main() { + + return 0; +} +``` diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..ddb2242 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = 'https://blog.adrianabeyta.com/' +languageCode = 'en-us' +title = 'Oroboros' +theme = 'poison'