├── .DS_Store ├── .gitignore ├── README.md ├── auth └── main.go ├── contentpolicy └── main.go ├── db └── main.go ├── git └── main.go ├── go.mod ├── go.sum ├── home └── main.go ├── ipban └── main.go ├── layout └── main.go ├── main.go ├── post └── main.go ├── profile └── main.go ├── spam ├── main.go └── word_list.txt ├── static ├── favicon.webp ├── styles.css └── triangle.svg ├── submit └── main.go ├── templates ├── contentpolicy.html ├── home.html ├── layout.html ├── login.html ├── post.html ├── profile.html ├── register.html ├── submit.html └── theme.html ├── utils └── main.go └── vote └── main.go /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /forum.db 3 | /main 4 | /lfx 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/README.md -------------------------------------------------------------------------------- /auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/auth/main.go -------------------------------------------------------------------------------- /contentpolicy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/contentpolicy/main.go -------------------------------------------------------------------------------- /db/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/db/main.go -------------------------------------------------------------------------------- /git/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/git/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/go.sum -------------------------------------------------------------------------------- /home/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/home/main.go -------------------------------------------------------------------------------- /ipban/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/ipban/main.go -------------------------------------------------------------------------------- /layout/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/layout/main.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/main.go -------------------------------------------------------------------------------- /post/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/post/main.go -------------------------------------------------------------------------------- /profile/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/profile/main.go -------------------------------------------------------------------------------- /spam/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/spam/main.go -------------------------------------------------------------------------------- /spam/word_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/spam/word_list.txt -------------------------------------------------------------------------------- /static/favicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/static/favicon.webp -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/static/styles.css -------------------------------------------------------------------------------- /static/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/static/triangle.svg -------------------------------------------------------------------------------- /submit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/submit/main.go -------------------------------------------------------------------------------- /templates/contentpolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/contentpolicy.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/post.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/submit.html -------------------------------------------------------------------------------- /templates/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/templates/theme.html -------------------------------------------------------------------------------- /utils/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/utils/main.go -------------------------------------------------------------------------------- /vote/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakefox/lfx/HEAD/vote/main.go --------------------------------------------------------------------------------