Init hugo server

This commit inits a new Hugo repository with a default draft article,
but without a theme yet
This commit is contained in:
Melora Hugues 2023-06-19 13:19:59 +02:00
parent eb13935dc5
commit f7627ba6ea
8 changed files with 52 additions and 1 deletions

View file

@ -0,0 +1,16 @@
---
title: "First Post"
date: 2023-06-19T11:37:35+02:00
draft: true
---
## Title
This is my content
```python
def method(args):
print("toto")
return args
```