diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b8bd73 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public/* \ No newline at end of file diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..6c5695d --- /dev/null +++ b/config.toml @@ -0,0 +1,65 @@ +# baseURL = "https://your_domain.com/" +languageCode = "en" +defaultContentLanguage = "en" + +title = "Thai Linux User Community" +# copyright = "Copy, _right?_ :thinking_face:" + +enableEmoji = true +disableKinds = ["taxonomy", "term"] + +[params.author] + # name = "Your name here" + # headline = "An awesome person" + # image = "img/author.jpg" # path relative to static directory + + links = [ + # { 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/GhGhKZcFFv" }, + # { 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" 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..0b828e8 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module codeberg.org/TechTransThai/thailinux.techtransthai.org + +go 1.23.1 + +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=