├── .githooks └── pre-commit ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── activitypub ├── activity.go ├── actor.go ├── object.go ├── pem.go ├── structs.go ├── util.go └── webfinger.go ├── config └── config.go ├── db ├── database.go ├── migrations │ ├── 0001_initial.up.sql │ ├── 0002_actor_column_rename.down.sql │ ├── 0002_actor_column_rename.up.sql │ ├── 0003_add_optionsmask_to_actor.down.sql │ ├── 0003_add_optionsmask_to_actor.up.sql │ ├── 0004_add_performance_indexes.down.sql │ ├── 0004_add_performance_indexes.up.sql │ ├── 0005_merge_banned_tables.down.sql │ └── 0005_merge_banned_tables.up.sql ├── post.go └── report.go ├── doc ├── dead.sh ├── migration.md └── systemtheme.sh ├── fchan.example.cfg ├── go.mod ├── go.sum ├── main.go ├── routes ├── actor.go ├── admin.go ├── api.go ├── banned.go ├── boardmgmt.go ├── delete.go ├── feeds.go ├── main.go ├── news.go ├── nodeinfo.go ├── settings.go ├── structs.go ├── util.go └── webfinger.go ├── shell.nix ├── startdb.sh ├── static ├── clover.png ├── cross-nsfw.png ├── cross-tomorrrow.png ├── cross.png ├── css │ ├── common.css │ ├── flags.css │ ├── tegaki.css │ └── themes │ │ ├── default.css │ │ ├── gruvbox.css │ │ ├── system.css │ │ └── tomorrow.css ├── faq.html ├── favicon.png ├── flags.png ├── flash.png ├── js │ ├── embed.js │ ├── flashpopup.js │ ├── footerscript.js │ ├── highlight.js │ ├── posts.js │ ├── prettify.js │ ├── startpainter.js │ ├── tegaki.min.js │ ├── themes.js │ └── timer.js ├── locked.png ├── notfound.png ├── onion.png ├── pin.png ├── ruffle.html ├── ruffle │ ├── 9c36c557a4b50e36c72a.wasm │ ├── LICENSE_APACHE │ ├── LICENSE_MIT │ ├── README.md │ ├── core.ruffle.3890a89f057d897d1f0b.js │ ├── core.ruffle.3890a89f057d897d1f0b.js.map │ ├── core.ruffle.b590f7ff2c1fe33b40e2.js │ ├── core.ruffle.b590f7ff2c1fe33b40e2.js.map │ ├── f8c3777cf196da51854e.wasm │ ├── package.json │ ├── ruffle.js │ └── ruffle.js.map ├── rules.html └── sensitive.png ├── util ├── blacklist.go ├── flags.go ├── key.go ├── magick.go ├── proxy.go ├── tripcode.go ├── tripphrase │ ├── adj.txt │ ├── adv.txt │ ├── article.txt │ ├── noun.txt │ ├── tripphrase.go │ └── verb.txt ├── util.go └── verification.go └── views ├── admin.html ├── anews.html ├── archive.html ├── ban.html ├── banned.html ├── catalog.html ├── embed.html ├── index-flash.html ├── index-image.html ├── index-text.html ├── index.html ├── layouts └── main.html ├── list.html ├── manage.html ├── news.html ├── npost.html ├── partials ├── bottom.html ├── extboards.html.example ├── flash_embed.html ├── footer.html ├── general_scripts.html ├── post_nav.html ├── post_scripts.html ├── posts-text.html ├── posts.html └── top.html ├── report.html ├── status.html └── verify.html /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/README.md -------------------------------------------------------------------------------- /activitypub/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/activitypub/activity.go -------------------------------------------------------------------------------- /activitypub/actor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/activitypub/actor.go -------------------------------------------------------------------------------- /activitypub/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/activitypub/object.go -------------------------------------------------------------------------------- /activitypub/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/activitypub/pem.go -------------------------------------------------------------------------------- /activitypub/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/activitypub/structs.go -------------------------------------------------------------------------------- /activitypub/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/activitypub/util.go -------------------------------------------------------------------------------- /activitypub/webfinger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/activitypub/webfinger.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/config/config.go -------------------------------------------------------------------------------- /db/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/database.go -------------------------------------------------------------------------------- /db/migrations/0001_initial.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0001_initial.up.sql -------------------------------------------------------------------------------- /db/migrations/0002_actor_column_rename.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0002_actor_column_rename.down.sql -------------------------------------------------------------------------------- /db/migrations/0002_actor_column_rename.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0002_actor_column_rename.up.sql -------------------------------------------------------------------------------- /db/migrations/0003_add_optionsmask_to_actor.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE actor DROP COLUMN IF EXISTS optionsmask; -------------------------------------------------------------------------------- /db/migrations/0003_add_optionsmask_to_actor.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0003_add_optionsmask_to_actor.up.sql -------------------------------------------------------------------------------- /db/migrations/0004_add_performance_indexes.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0004_add_performance_indexes.down.sql -------------------------------------------------------------------------------- /db/migrations/0004_add_performance_indexes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0004_add_performance_indexes.up.sql -------------------------------------------------------------------------------- /db/migrations/0005_merge_banned_tables.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0005_merge_banned_tables.down.sql -------------------------------------------------------------------------------- /db/migrations/0005_merge_banned_tables.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/migrations/0005_merge_banned_tables.up.sql -------------------------------------------------------------------------------- /db/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/post.go -------------------------------------------------------------------------------- /db/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/db/report.go -------------------------------------------------------------------------------- /doc/dead.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/doc/dead.sh -------------------------------------------------------------------------------- /doc/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/doc/migration.md -------------------------------------------------------------------------------- /doc/systemtheme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/doc/systemtheme.sh -------------------------------------------------------------------------------- /fchan.example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/fchan.example.cfg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/main.go -------------------------------------------------------------------------------- /routes/actor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/actor.go -------------------------------------------------------------------------------- /routes/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/admin.go -------------------------------------------------------------------------------- /routes/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/api.go -------------------------------------------------------------------------------- /routes/banned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/banned.go -------------------------------------------------------------------------------- /routes/boardmgmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/boardmgmt.go -------------------------------------------------------------------------------- /routes/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/delete.go -------------------------------------------------------------------------------- /routes/feeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/feeds.go -------------------------------------------------------------------------------- /routes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/main.go -------------------------------------------------------------------------------- /routes/news.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/news.go -------------------------------------------------------------------------------- /routes/nodeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/nodeinfo.go -------------------------------------------------------------------------------- /routes/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/settings.go -------------------------------------------------------------------------------- /routes/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/structs.go -------------------------------------------------------------------------------- /routes/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/util.go -------------------------------------------------------------------------------- /routes/webfinger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/routes/webfinger.go -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/shell.nix -------------------------------------------------------------------------------- /startdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/startdb.sh -------------------------------------------------------------------------------- /static/clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/clover.png -------------------------------------------------------------------------------- /static/cross-nsfw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/cross-nsfw.png -------------------------------------------------------------------------------- /static/cross-tomorrrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/cross-tomorrrow.png -------------------------------------------------------------------------------- /static/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/cross.png -------------------------------------------------------------------------------- /static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/css/common.css -------------------------------------------------------------------------------- /static/css/flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/css/flags.css -------------------------------------------------------------------------------- /static/css/tegaki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/css/tegaki.css -------------------------------------------------------------------------------- /static/css/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/css/themes/default.css -------------------------------------------------------------------------------- /static/css/themes/gruvbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/css/themes/gruvbox.css -------------------------------------------------------------------------------- /static/css/themes/system.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/css/themes/system.css -------------------------------------------------------------------------------- /static/css/themes/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/css/themes/tomorrow.css -------------------------------------------------------------------------------- /static/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/faq.html -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/flags.png -------------------------------------------------------------------------------- /static/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/flash.png -------------------------------------------------------------------------------- /static/js/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/embed.js -------------------------------------------------------------------------------- /static/js/flashpopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/flashpopup.js -------------------------------------------------------------------------------- /static/js/footerscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/footerscript.js -------------------------------------------------------------------------------- /static/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/highlight.js -------------------------------------------------------------------------------- /static/js/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/posts.js -------------------------------------------------------------------------------- /static/js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/prettify.js -------------------------------------------------------------------------------- /static/js/startpainter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/startpainter.js -------------------------------------------------------------------------------- /static/js/tegaki.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/tegaki.min.js -------------------------------------------------------------------------------- /static/js/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/themes.js -------------------------------------------------------------------------------- /static/js/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/js/timer.js -------------------------------------------------------------------------------- /static/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/locked.png -------------------------------------------------------------------------------- /static/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/notfound.png -------------------------------------------------------------------------------- /static/onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/onion.png -------------------------------------------------------------------------------- /static/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/pin.png -------------------------------------------------------------------------------- /static/ruffle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle.html -------------------------------------------------------------------------------- /static/ruffle/9c36c557a4b50e36c72a.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/9c36c557a4b50e36c72a.wasm -------------------------------------------------------------------------------- /static/ruffle/LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/LICENSE_APACHE -------------------------------------------------------------------------------- /static/ruffle/LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/LICENSE_MIT -------------------------------------------------------------------------------- /static/ruffle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/README.md -------------------------------------------------------------------------------- /static/ruffle/core.ruffle.3890a89f057d897d1f0b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/core.ruffle.3890a89f057d897d1f0b.js -------------------------------------------------------------------------------- /static/ruffle/core.ruffle.3890a89f057d897d1f0b.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/core.ruffle.3890a89f057d897d1f0b.js.map -------------------------------------------------------------------------------- /static/ruffle/core.ruffle.b590f7ff2c1fe33b40e2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/core.ruffle.b590f7ff2c1fe33b40e2.js -------------------------------------------------------------------------------- /static/ruffle/core.ruffle.b590f7ff2c1fe33b40e2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/core.ruffle.b590f7ff2c1fe33b40e2.js.map -------------------------------------------------------------------------------- /static/ruffle/f8c3777cf196da51854e.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/f8c3777cf196da51854e.wasm -------------------------------------------------------------------------------- /static/ruffle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/package.json -------------------------------------------------------------------------------- /static/ruffle/ruffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/ruffle.js -------------------------------------------------------------------------------- /static/ruffle/ruffle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/ruffle/ruffle.js.map -------------------------------------------------------------------------------- /static/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/rules.html -------------------------------------------------------------------------------- /static/sensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/static/sensitive.png -------------------------------------------------------------------------------- /util/blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/blacklist.go -------------------------------------------------------------------------------- /util/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/flags.go -------------------------------------------------------------------------------- /util/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/key.go -------------------------------------------------------------------------------- /util/magick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/magick.go -------------------------------------------------------------------------------- /util/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/proxy.go -------------------------------------------------------------------------------- /util/tripcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/tripcode.go -------------------------------------------------------------------------------- /util/tripphrase/adj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/tripphrase/adj.txt -------------------------------------------------------------------------------- /util/tripphrase/adv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/tripphrase/adv.txt -------------------------------------------------------------------------------- /util/tripphrase/article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/tripphrase/article.txt -------------------------------------------------------------------------------- /util/tripphrase/noun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/tripphrase/noun.txt -------------------------------------------------------------------------------- /util/tripphrase/tripphrase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/tripphrase/tripphrase.go -------------------------------------------------------------------------------- /util/tripphrase/verb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/tripphrase/verb.txt -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/util.go -------------------------------------------------------------------------------- /util/verification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/util/verification.go -------------------------------------------------------------------------------- /views/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/admin.html -------------------------------------------------------------------------------- /views/anews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/anews.html -------------------------------------------------------------------------------- /views/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/archive.html -------------------------------------------------------------------------------- /views/ban.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/ban.html -------------------------------------------------------------------------------- /views/banned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/banned.html -------------------------------------------------------------------------------- /views/catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/catalog.html -------------------------------------------------------------------------------- /views/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/embed.html -------------------------------------------------------------------------------- /views/index-flash.html: -------------------------------------------------------------------------------- 1 | list.html -------------------------------------------------------------------------------- /views/index-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/index-image.html -------------------------------------------------------------------------------- /views/index-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/index-text.html -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/index.html -------------------------------------------------------------------------------- /views/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/layouts/main.html -------------------------------------------------------------------------------- /views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/list.html -------------------------------------------------------------------------------- /views/manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/manage.html -------------------------------------------------------------------------------- /views/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/news.html -------------------------------------------------------------------------------- /views/npost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/npost.html -------------------------------------------------------------------------------- /views/partials/bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/bottom.html -------------------------------------------------------------------------------- /views/partials/extboards.html.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/extboards.html.example -------------------------------------------------------------------------------- /views/partials/flash_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/flash_embed.html -------------------------------------------------------------------------------- /views/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/footer.html -------------------------------------------------------------------------------- /views/partials/general_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/general_scripts.html -------------------------------------------------------------------------------- /views/partials/post_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/post_nav.html -------------------------------------------------------------------------------- /views/partials/post_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/post_scripts.html -------------------------------------------------------------------------------- /views/partials/posts-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/posts-text.html -------------------------------------------------------------------------------- /views/partials/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/posts.html -------------------------------------------------------------------------------- /views/partials/top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/partials/top.html -------------------------------------------------------------------------------- /views/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/report.html -------------------------------------------------------------------------------- /views/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/status.html -------------------------------------------------------------------------------- /views/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anomalous69/FChannel/HEAD/views/verify.html --------------------------------------------------------------------------------