diff --git a/user.go b/user.go index 47905ae..6f1b5fc 100644 --- a/user.go +++ b/user.go @@ -100,7 +100,7 @@ func (user User) CreateNewPost(title string) (Post, error) { initial_content := "" initial_content += "---\n" initial_content += "title: " + title + "\n" - initial_content += "date: " + time.Now().UTC().Format(time.RFC3339) + "\n" + initial_content += "date: " + time.Now().UTC().Format(time.RFC822) + "\n" initial_content += "---\n" initial_content += "\n" initial_content += "Write your post here.\n"