From acc1c3e36de3a14793a394b3135df4e17bcdcaf0 Mon Sep 17 00:00:00 2001 From: Sencyy Date: Wed, 14 Aug 2024 21:07:54 -0300 Subject: [PATCH] initial commit --- .gitmodules | 6 +++ archetypes/default.md | 5 +++ hugo.toml | 46 +++++++++++++++++++ public/categories/index.html | 67 ++++++++++++++++++++++++++++ public/categories/index.xml | 11 +++++ public/categories/page/1/index.html | 10 +++++ public/css/style.css | 12 +++++ public/index.html | 59 ++++++++++++++++++++++++ public/index.xml | 11 +++++ public/page/1/index.html | 10 +++++ public/sitemap.xml | 11 +++++ public/tags/index.html | 67 ++++++++++++++++++++++++++++ public/tags/index.xml | 11 +++++ public/tags/page/1/index.html | 10 +++++ site.tar.gz | Bin 0 -> 2072 bytes themes/minindie | 1 + themes/smol | 1 + 17 files changed, 338 insertions(+) create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 hugo.toml create mode 100644 public/categories/index.html create mode 100644 public/categories/index.xml create mode 100644 public/categories/page/1/index.html create mode 100644 public/css/style.css create mode 100644 public/index.html create mode 100644 public/index.xml create mode 100644 public/page/1/index.html create mode 100644 public/sitemap.xml create mode 100644 public/tags/index.html create mode 100644 public/tags/index.xml create mode 100644 public/tags/page/1/index.html create mode 100644 site.tar.gz create mode 160000 themes/minindie create mode 160000 themes/smol diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..b0495b7 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "themes/minindie"] + path = themes/minindie + url = https://git.sr.ht/~bacardi55/MinIndie +[submodule "themes/smol"] + path = themes/smol + url = https://github.com/colorchestra/smol diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..d0e215c --- /dev/null +++ b/hugo.toml @@ -0,0 +1,46 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = "Sencyy's website" +theme = 'smol' +author = 'Sencyy' + +# Parameters +[params] + subtitle = "A blog for my personal stuff" + dateFmt = "02.01.2006 15:04" + +# Header +[menu] + [[menu.main]] + identifier = "posts" + name = "Posts" + url = "/posts/" + weight = 1 + + [[menu.main]] + identifier = "categories" + name = "Categories" + url = "/categories/" + weight = 2 + + [[menu.main]] + identifier = "tags" + name = "Tags" + url = "/tags/" + weight = 3 + +# Footer + [[menu.footer]] + name = "Github" + url = "https://github.com/example" + weight = 1 + + [[menu.footer]] + name = "Mastodon" + url = "https://example.com/@user" + weight = 2 + + [[menu.footer]] + name = "Imprint" + url = "/imprint" + weight = 3 diff --git a/public/categories/index.html b/public/categories/index.html new file mode 100644 index 0000000..5e3db94 --- /dev/null +++ b/public/categories/index.html @@ -0,0 +1,67 @@ + + + + + + + + Categories + + + + + + + +
+ ======================
+ == Sencyy's website ==
+ ====================== +
A blog for my personal stuff

+

+

+

+ +
+ + +
+ + +
+

Categories

+ +
+ + + +
+ +1 of 0 + +
+ +
+ + + + + diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..4dce8cc --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,11 @@ + + + + Categories on Sencyy's website + https://example.org/categories/ + Recent content in Categories on Sencyy's website + Hugo + en-us + + + diff --git a/public/categories/page/1/index.html b/public/categories/page/1/index.html new file mode 100644 index 0000000..fc56390 --- /dev/null +++ b/public/categories/page/1/index.html @@ -0,0 +1,10 @@ + + + + https://example.org/categories/ + + + + + + diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..585aaac --- /dev/null +++ b/public/css/style.css @@ -0,0 +1,12 @@ +html {overflow-y: scroll} +:root { --bgcolor: white; --fontcolor: #444; --linkcolor: #00e; --visitedcolor: #551a8b; --precolor: #fff; --prebgcolor: #000;} +@media (prefers-color-scheme: dark) { :root { --bgcolor: black; --fontcolor: white; --linkcolor: #5bf; --visitedcolor: #ae5ee0; --precolor: #fff; --prebgcolor: #383838;}} +body{max-width:800px;margin:40px auto;padding:0 10px;font:14px/1.5 monospace;color:var(--fontcolor); background: var(--bgcolor)}a:link{color: var(--linkcolor)}a:visited{color: var(--visitedcolor)}a:active{color: var(--visitedcolor)}h1,h2,h3{line-height:1.2} +p > code{color: var(--precolor); background: var(--prebgcolor); padding:2px} +code{color: var(--precolor); background: var(--prebgcolor); padding:2px} +pre{color: var(--precolor); background: var(--prebgcolor); padding:24px; overflow-x: auto} +article{padding:24px 0} +.center {display: block;margin-left: auto;margin-right: auto;width: 100%;} +figcaption {color: #888; font: 12px/1.5 monospace; text-align: center;} +figure {margin: auto} +img {display: block; max-width: 100%; height: auto; margin: auto} diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..6aa2e77 --- /dev/null +++ b/public/index.html @@ -0,0 +1,59 @@ + + + + + + + + + Sencyy's website + + + + + + + +
+ ======================
+ == Sencyy's website ==
+ ====================== +
A blog for my personal stuff

+

+

+

+ +
+ + +
+ + +
+ +1 of 0 + +
+ +
+ + + + + diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..5aa4799 --- /dev/null +++ b/public/index.xml @@ -0,0 +1,11 @@ + + + + Sencyy's website + https://example.org/ + Recent content on Sencyy's website + Hugo + en-us + + + diff --git a/public/page/1/index.html b/public/page/1/index.html new file mode 100644 index 0000000..349f50c --- /dev/null +++ b/public/page/1/index.html @@ -0,0 +1,10 @@ + + + + https://example.org/ + + + + + + diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..66aa3f5 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,11 @@ + + + + https://example.org/categories/ + + https://example.org/ + + https://example.org/tags/ + + diff --git a/public/tags/index.html b/public/tags/index.html new file mode 100644 index 0000000..202f15a --- /dev/null +++ b/public/tags/index.html @@ -0,0 +1,67 @@ + + + + + + + + Tags + + + + + + + +
+ ======================
+ == Sencyy's website ==
+ ====================== +
A blog for my personal stuff

+

+

+

+ +
+ + +
+ + +
+

Tags

+ +
+ + + +
+ +1 of 0 + +
+ +
+ + + + + diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..a6ce604 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,11 @@ + + + + Tags on Sencyy's website + https://example.org/tags/ + Recent content in Tags on Sencyy's website + Hugo + en-us + + + diff --git a/public/tags/page/1/index.html b/public/tags/page/1/index.html new file mode 100644 index 0000000..e444b76 --- /dev/null +++ b/public/tags/page/1/index.html @@ -0,0 +1,10 @@ + + + + https://example.org/tags/ + + + + + + diff --git a/site.tar.gz b/site.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..65b409add8e12db2e3453c83ea7b9737cc22dfd8 GIT binary patch literal 2072 zcmV+z2?`cWK7{d(nX3y-Lp4nM!t6OTR)$Q&cp&J*C!vwhfKL51bzFGa; z;lgqTeb;tu*9AJu95~Je>NhXi#l1y`5c3{l_AdF)XuIu9X|TD8@w$5*25d3BG|hB9ig7j% zlc59G2rn5Or8o$}WIi;J#oM`bL(56mhNbsWOcR=?*e4^|{R(H_S7z{Ggr+d7c}AB> zFhsJo5aq)b5Baoi3c+M!IZ@tRO!1JSI&V&deHO0BT{H{plhW_k5}J2wW2ftF=h-@fmM8ZE3L2r(KGs8_%WVf|Ec7FCQ>8=Z zwxjzbVI)I0L71lz-tg^6VLQs*(2dB9$u4$JGO>vAk=#D8Jol7i;&qMl z-6k_k{YvW~$u(T_;NyVzx+l1-tE($Rv}zNe=40_sxB@pd;q*B$kTs4|2wORaj~SWM zEF`(%8Jvi-8JzDP%n#>acz!fcM|{AVOui-0s2gDtkhRViyQwkG#s9rtJ^!}{Jy+R( z8}R=0w|{^B^1okxLVO3nCKd@ngt_&Tq`S;D{*2&Y(s}2_gkhB67~H^|BqYO(W*WqO z5NIT9to?I2r^wVHd($ngr1uv%1FINozkT^TIFnjGtB_o$G-H)+L;x}l$SU-Sj7C19 zFbP?RBMAR-M8=igxpj8Q@5^vC*8bc5?Nj$NjZ@6RX+$br{`}LJ1al(TM6Qe2CM9DY zF7f<#A_90GR&{4M4x`O*A5(2TnH_Uh7BaZ_RqTZC-uJFXIl3lO?%O;=wsqd|ACCv$ zC?nw91aH0|1ZKE^OlGVdCfwSj#(*P;+7fVQnv_w)X&Qy#-@rc`S)TtDd}rB}v|aH; zj6c?-aDOQU?Ao``r_!G-tUa|Ak*3k?%<>?-oJ-xxBxFNxUHh`4_mV5qgG{+%xzz z3I%bEh`kWwFyYgZ|M+4-gN5h}nVpVYgbwGGbZ|9;6qppN@|{o9%?R11?VQseU#XKS zEM-0FU>>r?a;p0@-t{HA`Gt*|-3@Cg{MbwT)o%s5k>WXNwgCK~`mb&C`fuOqtNL#nDD-bNxdR@df7ev{ zZw00P8%zVv<^N9KuIK-*rRx8!;6Cv`WVkYd6gjaBbWi8eMG!1==Q5=AaY7RaVavGn zbUY&2D!D;Mr4mISRGX@~0gRhL9A4?n93jZp$G6H-hRts}qR^}1 zZ9`)`-2dBdf1vz-8#vH^L+^mI^`C)N^Z$&RuzU+Vd&{Nc>gz43VL|_*BiL%{9h|L*8lUD zf*!7aNBsR?>A!iL(*JX(0cX#DSiM^OKQJ9j#s6*KIqN?MhcKQ{3Ob0-UQbo1F4mhU z5S_^XpZy@%Is119Zax1W^c-dXZQ#-8zaWX-v)PU3A*!`Md?=VaT<(MNrr&rein)&wUhr4en56-_$W-!eTJ|0Ap0y2!c6$_ z7th$=7eaz7UBY{HBD^Vxv%8nge7VHw?fdz|N_{{UCP*~9v&3LXPgO3r$D1m?N|%Xk zqkHTzfByxSpyIz4Q0TwWLxAVc|JD6}4+22t|J#77{}%PU7peSKY){pE|0p$I*_W#J zs%q~mK=J->^bp`9{{G)Ldn*2G16BPubqMeg`X4w-|E=Iq|IMTUXV3q+N9R8Vuw7LA z-vXYq{#$%2?g^FOBH(&GHQ&8JZ=%|J484|vG%?26`tNc6?>OrFzpdak)qiotMrsq@|jy;;*2IBWlA{rms6{`