1diff --git a/content/posts/initial.org b/content/posts/initial.org
2index 83309c7f9497aab2f6a4cd5637391c03536c659b..43264252d47f353629b91d5ae31a8e1c47f74c95 100644
3--- a/content/posts/initial.org
4+++ b/content/posts/initial.org
5@@ -1,11 +1,40 @@
6 ---
7-title: "Initial"
8-date: 2020-07-11T20:20:57+02:00
9-draft: true
10+title: "Writing Hugo blog in Org (File Export)"
11+author: ["Kaushal Modi"]
12+date: 2017-09-10
13+lastmod: 2100-12-21T00:00:00+00:00
14+tags: ["hugo", "org"]
15+categories: ["emacs"]
16+gamma: 10
17 ---
18+* First heading within the post :hugo:
19+- This post will be exported as
20+ =content/posts/writing-hugo-blog-in-org-file-export.md=.
21+- Its title will be "Writing Hugo blog in Org".
22+- It will have /hugo/ and /org/ tags and /emacs/ as category.
23+- The /lastmod/ property in the front-matter is set automatically to
24+ the time of export.
25+- The menu item /identifier/ is auto-set.
26+- The menu item /weight/ and post /weight/ if needed have to be
27+ manually specified as shown above.
28+** A sub-heading under that heading
29+- It's draft state will be marked as =true= because of =#+hugo_draft:
30+ true=.
31
32-Demo test
33+With the point _anywhere_, do =C-c C-e H h= to export this whole file
34+titled /Writing Hugo blog in Org/ to a Hugo post.
35+
36+The exported Markdown has a little comment footer as set in the /Local
37+Variables/ section below.
38+* Demo Source Code
39+
40+#+begin_src python
41+if __name__ == "__main__":
42+ print("Hello World")
43+#+end_src
44
45-Are u whaching
46-Demo
47-jhgjhgjhgjh
48+ [[file:file]]notes
49+* COMMENT Local Variables :ARCHIVE:
50+# Local Variables:
51+# org-hugo-footer: "\n\n[//]: # \"Exported with love from a post written in Org mode\"\n[//]: # \"- https://github.com/kaushalmodi/ox-hugo\""
52+# End: