diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..9b4126c --- /dev/null +++ b/config.toml @@ -0,0 +1,4 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'Zerai.xyz' +theme = 'lugo' \ No newline at end of file diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..955e264 --- /dev/null +++ b/content/about.md @@ -0,0 +1,8 @@ +--- +title: "About" +date: 2022-08-16T23:05:07-04:00 +tags: ['personal','test'] +# draft: true +--- + +Hello 👋 \ No newline at end of file diff --git a/content/blog/hello-world.md b/content/blog/hello-world.md new file mode 100644 index 0000000..11cb1db --- /dev/null +++ b/content/blog/hello-world.md @@ -0,0 +1,6 @@ +--- +title: "Hello World" +date: 2022-08-16T23:13:10-04:00 +# draft: true +--- +hello world diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..36c1bb5 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,3 @@ +[build] + command = "hugo" + publish = "public" diff --git a/public/about/index.html b/public/about/index.html new file mode 100644 index 0000000..21f2fa2 --- /dev/null +++ b/public/about/index.html @@ -0,0 +1,31 @@ + + + + About | Zerai.xyz + + + + + + + + + + + +
+

About

+
+

Hello 👋

+ + +
+
+ + + + diff --git a/public/blog/hello-world/index.html b/public/blog/hello-world/index.html new file mode 100644 index 0000000..dfe94ac --- /dev/null +++ b/public/blog/hello-world/index.html @@ -0,0 +1,31 @@ + + + + Hello World | Zerai.xyz + + + + + + + + + + +
+

Hello World

+
+

hello world

+ + +
+
+ + + + diff --git a/public/blog/index.html b/public/blog/index.html new file mode 100644 index 0000000..cb03bce --- /dev/null +++ b/public/blog/index.html @@ -0,0 +1,30 @@ + + + + Blogs | Zerai.xyz + + + + + + + + + + +
+

Blogs

+
+ +
+ +
+ + + + diff --git a/public/blog/index.xml b/public/blog/index.xml new file mode 100644 index 0000000..52480d4 --- /dev/null +++ b/public/blog/index.xml @@ -0,0 +1,24 @@ + + + Zerai.xyz + http://example.org/blog/ + Recent content in Blogs on Zerai.xyz + Hugo -- gohugo.io + en-us + Tue, 16 Aug 2022 23:13:10 -0400 + + + + + + Hello World + http://example.org/blog/hello-world/ + Tue, 16 Aug 2022 23:13:10 -0400 + + http://example.org/blog/hello-world/ + <p>hello world</p> + + + + + diff --git a/public/categories/index.html b/public/categories/index.html new file mode 100644 index 0000000..1383882 --- /dev/null +++ b/public/categories/index.html @@ -0,0 +1,28 @@ + + + + Categories | Zerai.xyz + + + + + + + + + + +
+

Categories

+
+ +
+ +
+ + + + diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..764d512 --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,13 @@ + + + Zerai.xyz + http://example.org/categories/ + Recent content in Categories on Zerai.xyz + Hugo -- gohugo.io + en-us + + + + + + diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..a8adf07 --- /dev/null +++ b/public/index.html @@ -0,0 +1,33 @@ + + + + + Zerai.xyz + + + + + + + + + + +
+

Zerai.xyz

+
+ +
+ +
+ + + + diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..c764cbd --- /dev/null +++ b/public/index.xml @@ -0,0 +1,33 @@ + + + Zerai.xyz + http://example.org/ + Recent content on Zerai.xyz + Hugo -- gohugo.io + en-us + Tue, 16 Aug 2022 23:13:10 -0400 + + + + + + Blogs + http://example.org/blog/ + Tue, 16 Aug 2022 23:13:10 -0400 + + http://example.org/blog/ + + + + + About + http://example.org/about/ + Tue, 16 Aug 2022 23:05:07 -0400 + + http://example.org/about/ + <p>Hello 👋</p> + + + + + diff --git a/public/rss.svg b/public/rss.svg new file mode 100644 index 0000000..dfda038 --- /dev/null +++ b/public/rss.svg @@ -0,0 +1 @@ + diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..f15d601 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,28 @@ + + + + http://example.org/blog/ + 2022-08-16T23:13:10-04:00 + + http://example.org/blog/hello-world/ + 2022-08-16T23:13:10-04:00 + + http://example.org/ + 2022-08-16T23:13:10-04:00 + + http://example.org/about/ + 2022-08-16T23:05:07-04:00 + + http://example.org/tags/personal/ + 2022-08-16T23:05:07-04:00 + + http://example.org/tags/ + 2022-08-16T23:05:07-04:00 + + http://example.org/tags/test/ + 2022-08-16T23:05:07-04:00 + + http://example.org/categories/ + + diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..d3b2088 --- /dev/null +++ b/public/style.css @@ -0,0 +1,45 @@ +body { + font-family: sans-serif ; + background: #110000 ; + color: #ccc ; +} + +main { + max-width: 800px ; + margin: auto ; +} + +img { + max-width: 100% ; +} + +header h1 { + text-align: center ; +} + +footer { + text-align: center ; + clear: both ; +} + +/* For TAGLIST.HTML */ +.taglist { + text-align: center ; + clear: both ; +} + +/* For NEXTPREV.HTML */ +#nextprev { + /* The container for both the previous and next articles. */ +} +#prevart { + float: left ; + text-align: left ; +} +#nextart { + float: right ; + text-align: right ; +} +#nextart,#prevart { + max-width: 33% ; +} diff --git a/public/tags/index.html b/public/tags/index.html new file mode 100644 index 0000000..337bb94 --- /dev/null +++ b/public/tags/index.html @@ -0,0 +1,32 @@ + + + + Tags | Zerai.xyz + + + + + + + + + + +
+

Tags

+
+ +
+ +
+ + + + diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..41e9405 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,32 @@ + + + Zerai.xyz + http://example.org/tags/ + Recent content in Tags on Zerai.xyz + Hugo -- gohugo.io + en-us + Tue, 16 Aug 2022 23:05:07 -0400 + + + + + + personal + http://example.org/tags/personal/ + Tue, 16 Aug 2022 23:05:07 -0400 + + http://example.org/tags/personal/ + + + + + test + http://example.org/tags/test/ + Tue, 16 Aug 2022 23:05:07 -0400 + + http://example.org/tags/test/ + + + + + diff --git a/public/tags/personal/index.html b/public/tags/personal/index.html new file mode 100644 index 0000000..55e90eb --- /dev/null +++ b/public/tags/personal/index.html @@ -0,0 +1,30 @@ + + + + Personal | Zerai.xyz + + + + + + + + + + +
+

Personal

+
+ +
+ +
+ + + + diff --git a/public/tags/personal/index.xml b/public/tags/personal/index.xml new file mode 100644 index 0000000..e65e430 --- /dev/null +++ b/public/tags/personal/index.xml @@ -0,0 +1,24 @@ + + + Zerai.xyz + http://example.org/tags/personal/ + Recent content in personal on Zerai.xyz + Hugo -- gohugo.io + en-us + Tue, 16 Aug 2022 23:05:07 -0400 + + + + + + About + http://example.org/about/ + Tue, 16 Aug 2022 23:05:07 -0400 + + http://example.org/about/ + <p>Hello 👋</p> + + + + + diff --git a/public/tags/test/index.html b/public/tags/test/index.html new file mode 100644 index 0000000..f2de801 --- /dev/null +++ b/public/tags/test/index.html @@ -0,0 +1,30 @@ + + + + Test | Zerai.xyz + + + + + + + + + + +
+

Test

+
+ +
+ +
+ + + + diff --git a/public/tags/test/index.xml b/public/tags/test/index.xml new file mode 100644 index 0000000..929bbdc --- /dev/null +++ b/public/tags/test/index.xml @@ -0,0 +1,24 @@ + + + Zerai.xyz + http://example.org/tags/test/ + Recent content in test on Zerai.xyz + Hugo -- gohugo.io + en-us + Tue, 16 Aug 2022 23:05:07 -0400 + + + + + + About + http://example.org/about/ + Tue, 16 Aug 2022 23:05:07 -0400 + + http://example.org/about/ + <p>Hello 👋</p> + + + + + diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..d3b2088 --- /dev/null +++ b/static/style.css @@ -0,0 +1,45 @@ +body { + font-family: sans-serif ; + background: #110000 ; + color: #ccc ; +} + +main { + max-width: 800px ; + margin: auto ; +} + +img { + max-width: 100% ; +} + +header h1 { + text-align: center ; +} + +footer { + text-align: center ; + clear: both ; +} + +/* For TAGLIST.HTML */ +.taglist { + text-align: center ; + clear: both ; +} + +/* For NEXTPREV.HTML */ +#nextprev { + /* The container for both the previous and next articles. */ +} +#prevart { + float: left ; + text-align: left ; +} +#nextart { + float: right ; + text-align: right ; +} +#nextart,#prevart { + max-width: 33% ; +} diff --git a/themes/lugo b/themes/lugo new file mode 160000 index 0000000..75810cd --- /dev/null +++ b/themes/lugo @@ -0,0 +1 @@ +Subproject commit 75810cd2908c96ffed43e6c4646daf2413c4b3b1