commit b123fc62b55803469177d66f4cc49fd8c7b10652 Author: Late Night Defender Date: Sun Jun 16 16:25:08 2024 +0700 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8dd6d56 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +public/ +.hugo_build.lock 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/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..4d5fbc1 --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,3 @@ +.link-readawrite { + background: rgb(0, 203, 195); + } \ No newline at end of file diff --git a/assets/icons/readawrite.svg b/assets/icons/readawrite.svg new file mode 100644 index 0000000..d511681 --- /dev/null +++ b/assets/icons/readawrite.svg @@ -0,0 +1,45 @@ + + diff --git a/config/_default/module.toml b/config/_default/module.toml new file mode 100644 index 0000000..d40421a --- /dev/null +++ b/config/_default/module.toml @@ -0,0 +1,2 @@ +[[imports]] +path = "github.com/jpanther/lynx" \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..d5a3745 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module forge.techtransthai.org/latenightdef/blachp.techtransthai.org + +go 1.22.4 + +require github.com/jpanther/lynx v1.4.0 // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..b58388f --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/jpanther/lynx v1.4.0 h1:ymYkoVjFXkdzSD6YBjF6zsTUK3kSi3QTxtxpHtsnlhw= +github.com/jpanther/lynx v1.4.0/go.mod h1:nUK1+IfScKhRA3/jBH+YCYfpO3znP5Nsm6ROFGpma44= diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..3791bf3 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,66 @@ +# baseURL = "https://blachp.techtransthai.org/" +languageCode = "th" +defaultContentLanguage = "th" + +title = "BlaCHp" +# copyright = "Copy, _right?_ :thinking_face:" + +enableEmoji = true +disableKinds = ["taxonomy", "term"] + +[params.author] + name = "BlaCHp" + # headline = "An awesome person" + # image = "img/author.jpg" # path relative to static directory + + links = [ + { readawrite = { href = "https://www.readawrite.com/?action=user_page&user_id_publisher=1225708", text = "readAwrite" } }, + # { email = "mailto:hello@your_domain.com" }, + # { link = "https://link-to-some-website.com/" }, + # { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" }, + # { apple = "https://www.apple.com" }, + # { bandcamp = "https://username.bandcamp.com" }, + # { bluesky = "https://bsky.app/profile/username" }, + # { codepen = "https://codepen.io/username" }, + # { dev = "https://dev.to/username" }, + # { discord = "https://discord.gg/invitecode" }, + # { dribbble = "https://dribbble.com/username" }, + # { facebook = "https://facebook.com/username" }, + # { flickr = "https://www.flickr.com/photos/username/" }, + # { foursquare = "https://foursquare.com/username" }, + # { github = "https://github.com/username" }, + # { gitlab = "https://gitlab.com/username" }, + # { google = "https://www.google.com/" }, + # { instagram = "https://instagram.com/username" }, + # { keybase = "https://keybase.io/username" }, + # { kickstarter = "https://www.kickstarter.com/profile/username" }, + # { lastfm = "https://last.fm/user/username" }, + # { linkedin = "https://linkedin.com/in/username" }, + # { mastodon = "https://mastodon.instance/@username" }, + # { medium = "https://medium.com/username" }, + # { microsoft = "https://www.microsoft.com/" }, + # { patreon = "https://www.patreon.com/username" }, + # { pinterest = "https://pinterest.com/username" }, + # { reddit = "https://reddit.com/user/username" }, + # { slack = "https://workspace.url/team/userid" }, + # { snapchat = "https://snapchat.com/add/username" }, + # { soundcloud = "https://soundcloud.com/username" }, + # { spotify = "https://spotify.com/user/username" }, + # { stack-exchange = "https://stackexchange.com/users/userid/username" }, + # { stack-overflow = "https://stackoverflow.com/users/userid/username" }, + # { steam = "https://steamcommunity.com/profiles/userid" }, + # { telegram = "https://t.me/username" }, + # { threads = "https://threads.com/username" }, + # { tiktok = "https://tiktok.com/@username" }, + # { tumblr = "https://username.tumblr.com" }, + # { twitch = "https://twitch.tv/username" }, + # { twitter = "https://twitter.com/username" }, + # { whatsapp = "https://wa.me/phone-number" }, + # { x = "https://x.com/username" }, + # { youtube = "https://youtube.com/username" }, + ] + +[module] + [module.hugoVersion] + extended = false + min = "0.86.1" \ No newline at end of file