initial commit
This commit is contained in:
parent
53ed2ce0a7
commit
d3f7404cd6
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
public/
|
||||
resources/
|
||||
hugo_stats.json
|
||||
.hugo_build.lock
|
||||
8
Makefile
Normal file
8
Makefile
Normal file
@ -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
|
||||
|
||||
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
||||
26
content/posts/my-first-post.md
Normal file
26
content/posts/my-first-post.md
Normal file
@ -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 <iostream>
|
||||
|
||||
int main() {
|
||||
|
||||
return 0;
|
||||
}
|
||||
```
|
||||
Loading…
x
Reference in New Issue
Block a user