├── .github └── workflows │ ├── build.yml │ └── prettier.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── assets ├── img │ └── favicon.ico ├── js │ ├── challenges.js │ ├── index.js │ ├── notifications.js │ ├── page.js │ ├── scoreboard.js │ ├── settings.js │ ├── setup.js │ ├── teams │ │ ├── list.js │ │ ├── private.js │ │ └── public.js │ ├── theme │ │ ├── highlight.js │ │ ├── styles.js │ │ └── times.js │ ├── users │ │ ├── list.js │ │ ├── private.js │ │ └── public.js │ └── utils │ │ ├── alerts.js │ │ ├── clipboard.js │ │ ├── collapse.js │ │ ├── graphs │ │ ├── echarts │ │ │ ├── categories.js │ │ │ ├── index.js │ │ │ ├── scoreboard.js │ │ │ ├── solve-percentage.js │ │ │ └── userscore.js │ │ └── vega │ │ │ ├── categories.js │ │ │ ├── scoreboard.js │ │ │ ├── solve-percentage.js │ │ │ └── userscore.js │ │ ├── math.js │ │ ├── notifications │ │ ├── alerts.js │ │ ├── read.js │ │ └── toasts.js │ │ └── tooltips.js └── scss │ ├── includes │ ├── components │ │ ├── _challenge.scss │ │ ├── _graphs.scss │ │ ├── _jumbotron.scss │ │ ├── _sticky-footer.scss │ │ └── _table.scss │ ├── icons │ │ ├── _award-icons.scss │ │ └── _flag-icons.scss │ └── utils │ │ ├── _cursors.scss │ │ ├── _fonts.scss │ │ ├── _lolight.scss │ │ ├── _min-height.scss │ │ └── _opacity.scss │ └── main.scss ├── package.json ├── postcss.config.js ├── static ├── assets │ ├── challenges.e93edf43.js │ ├── clipboard.7856f2eb.js │ ├── echarts.128204f2.js │ ├── index.26ddae96.js │ ├── index.80ee8e6c.js │ ├── main.0aaf0d88.css │ ├── notifications.3f010f9a.js │ ├── page.c7ccc6c8.js │ ├── scoreboard.efc6c10a.js │ ├── settings.0e2e5354.js │ ├── setup.0fd022ad.js │ ├── teams_list.24ecabdf.js │ ├── teams_private.acfd18cb.js │ ├── teams_public.24befd13.js │ ├── users_list.54551e4f.js │ ├── users_private.12881884.js │ ├── users_public.d58d657e.js │ └── userscore.24cb7d0e.js ├── img │ └── favicon.ico ├── manifest.json └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-v4compatibility.ttf │ ├── fa-v4compatibility.woff2 │ ├── lato-all-400-normal.woff │ ├── lato-all-700-normal.woff │ ├── lato-latin-400-normal.woff │ ├── lato-latin-400-normal.woff2 │ ├── lato-latin-700-normal.woff │ ├── lato-latin-700-normal.woff2 │ ├── lato-latin-ext-400-normal.woff │ ├── lato-latin-ext-400-normal.woff2 │ ├── lato-latin-ext-700-normal.woff │ ├── lato-latin-ext-700-normal.woff2 │ ├── raleway-all-400-normal.woff │ ├── raleway-cyrillic-400-normal.woff │ ├── raleway-cyrillic-400-normal.woff2 │ ├── raleway-cyrillic-ext-400-normal.woff │ ├── raleway-cyrillic-ext-400-normal.woff2 │ ├── raleway-latin-400-normal.woff │ ├── raleway-latin-400-normal.woff2 │ ├── raleway-latin-ext-400-normal.woff │ ├── raleway-latin-ext-400-normal.woff2 │ ├── raleway-vietnamese-400-normal.woff │ └── raleway-vietnamese-400-normal.woff2 ├── templates ├── base.html ├── challenge.html ├── challenges.html ├── components │ ├── errors.html │ ├── navbar.html │ └── notifications.html ├── config.html ├── confirm.html ├── errors │ ├── 403.html │ ├── 404.html │ ├── 429.html │ ├── 500.html │ └── 502.html ├── login.html ├── macros │ └── forms.html ├── notifications.html ├── page.html ├── register.html ├── reset_password.html ├── scoreboard.html ├── settings.html ├── setup.html ├── teams │ ├── invite.html │ ├── join_team.html │ ├── new_team.html │ ├── private.html │ ├── public.html │ ├── team_enrollment.html │ └── teams.html └── users │ ├── private.html │ ├── public.html │ └── users.html ├── vite.config.js └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/.github/workflows/prettier.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | static 2 | **/*.html -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/README.md -------------------------------------------------------------------------------- /assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/js/challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/challenges.js -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/index.js -------------------------------------------------------------------------------- /assets/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/notifications.js -------------------------------------------------------------------------------- /assets/js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/page.js -------------------------------------------------------------------------------- /assets/js/scoreboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/scoreboard.js -------------------------------------------------------------------------------- /assets/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/settings.js -------------------------------------------------------------------------------- /assets/js/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/setup.js -------------------------------------------------------------------------------- /assets/js/teams/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/teams/list.js -------------------------------------------------------------------------------- /assets/js/teams/private.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/teams/private.js -------------------------------------------------------------------------------- /assets/js/teams/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/teams/public.js -------------------------------------------------------------------------------- /assets/js/theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/theme/highlight.js -------------------------------------------------------------------------------- /assets/js/theme/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/theme/styles.js -------------------------------------------------------------------------------- /assets/js/theme/times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/theme/times.js -------------------------------------------------------------------------------- /assets/js/users/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/users/list.js -------------------------------------------------------------------------------- /assets/js/users/private.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/users/private.js -------------------------------------------------------------------------------- /assets/js/users/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/users/public.js -------------------------------------------------------------------------------- /assets/js/utils/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/alerts.js -------------------------------------------------------------------------------- /assets/js/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/clipboard.js -------------------------------------------------------------------------------- /assets/js/utils/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/collapse.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/echarts/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/echarts/categories.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/echarts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/echarts/index.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/echarts/scoreboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/echarts/scoreboard.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/echarts/solve-percentage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/echarts/solve-percentage.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/echarts/userscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/echarts/userscore.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/vega/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/vega/categories.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/vega/scoreboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/vega/scoreboard.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/vega/solve-percentage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/vega/solve-percentage.js -------------------------------------------------------------------------------- /assets/js/utils/graphs/vega/userscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/graphs/vega/userscore.js -------------------------------------------------------------------------------- /assets/js/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/math.js -------------------------------------------------------------------------------- /assets/js/utils/notifications/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/notifications/alerts.js -------------------------------------------------------------------------------- /assets/js/utils/notifications/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/notifications/read.js -------------------------------------------------------------------------------- /assets/js/utils/notifications/toasts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/notifications/toasts.js -------------------------------------------------------------------------------- /assets/js/utils/tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/js/utils/tooltips.js -------------------------------------------------------------------------------- /assets/scss/includes/components/_challenge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/components/_challenge.scss -------------------------------------------------------------------------------- /assets/scss/includes/components/_graphs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/components/_graphs.scss -------------------------------------------------------------------------------- /assets/scss/includes/components/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/components/_jumbotron.scss -------------------------------------------------------------------------------- /assets/scss/includes/components/_sticky-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/components/_sticky-footer.scss -------------------------------------------------------------------------------- /assets/scss/includes/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/components/_table.scss -------------------------------------------------------------------------------- /assets/scss/includes/icons/_award-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/icons/_award-icons.scss -------------------------------------------------------------------------------- /assets/scss/includes/icons/_flag-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/icons/_flag-icons.scss -------------------------------------------------------------------------------- /assets/scss/includes/utils/_cursors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/utils/_cursors.scss -------------------------------------------------------------------------------- /assets/scss/includes/utils/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/utils/_fonts.scss -------------------------------------------------------------------------------- /assets/scss/includes/utils/_lolight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/utils/_lolight.scss -------------------------------------------------------------------------------- /assets/scss/includes/utils/_min-height.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/utils/_min-height.scss -------------------------------------------------------------------------------- /assets/scss/includes/utils/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/includes/utils/_opacity.scss -------------------------------------------------------------------------------- /assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/assets/scss/main.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/challenges.e93edf43.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/challenges.e93edf43.js -------------------------------------------------------------------------------- /static/assets/clipboard.7856f2eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/clipboard.7856f2eb.js -------------------------------------------------------------------------------- /static/assets/echarts.128204f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/echarts.128204f2.js -------------------------------------------------------------------------------- /static/assets/index.26ddae96.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/index.26ddae96.js -------------------------------------------------------------------------------- /static/assets/index.80ee8e6c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/index.80ee8e6c.js -------------------------------------------------------------------------------- /static/assets/main.0aaf0d88.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/main.0aaf0d88.css -------------------------------------------------------------------------------- /static/assets/notifications.3f010f9a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/notifications.3f010f9a.js -------------------------------------------------------------------------------- /static/assets/page.c7ccc6c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/page.c7ccc6c8.js -------------------------------------------------------------------------------- /static/assets/scoreboard.efc6c10a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/scoreboard.efc6c10a.js -------------------------------------------------------------------------------- /static/assets/settings.0e2e5354.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/settings.0e2e5354.js -------------------------------------------------------------------------------- /static/assets/setup.0fd022ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/setup.0fd022ad.js -------------------------------------------------------------------------------- /static/assets/teams_list.24ecabdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/teams_list.24ecabdf.js -------------------------------------------------------------------------------- /static/assets/teams_private.acfd18cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/teams_private.acfd18cb.js -------------------------------------------------------------------------------- /static/assets/teams_public.24befd13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/teams_public.24befd13.js -------------------------------------------------------------------------------- /static/assets/users_list.54551e4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/users_list.54551e4f.js -------------------------------------------------------------------------------- /static/assets/users_private.12881884.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/users_private.12881884.js -------------------------------------------------------------------------------- /static/assets/users_public.d58d657e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/users_public.d58d657e.js -------------------------------------------------------------------------------- /static/assets/userscore.24cb7d0e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/assets/userscore.24cb7d0e.js -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /static/webfonts/lato-all-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-all-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/lato-all-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-all-700-normal.woff -------------------------------------------------------------------------------- /static/webfonts/lato-latin-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/lato-latin-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-400-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/lato-latin-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-700-normal.woff -------------------------------------------------------------------------------- /static/webfonts/lato-latin-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-700-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/lato-latin-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-ext-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/lato-latin-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-ext-400-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/lato-latin-ext-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-ext-700-normal.woff -------------------------------------------------------------------------------- /static/webfonts/lato-latin-ext-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/lato-latin-ext-700-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/raleway-all-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-all-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/raleway-cyrillic-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-cyrillic-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/raleway-cyrillic-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-cyrillic-400-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/raleway-cyrillic-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-cyrillic-ext-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/raleway-cyrillic-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-cyrillic-ext-400-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/raleway-latin-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-latin-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/raleway-latin-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-latin-400-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/raleway-latin-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-latin-ext-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/raleway-latin-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-latin-ext-400-normal.woff2 -------------------------------------------------------------------------------- /static/webfonts/raleway-vietnamese-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-vietnamese-400-normal.woff -------------------------------------------------------------------------------- /static/webfonts/raleway-vietnamese-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/static/webfonts/raleway-vietnamese-400-normal.woff2 -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/challenge.html -------------------------------------------------------------------------------- /templates/challenges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/challenges.html -------------------------------------------------------------------------------- /templates/components/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/components/errors.html -------------------------------------------------------------------------------- /templates/components/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/components/navbar.html -------------------------------------------------------------------------------- /templates/components/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/components/notifications.html -------------------------------------------------------------------------------- /templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/config.html -------------------------------------------------------------------------------- /templates/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/confirm.html -------------------------------------------------------------------------------- /templates/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/errors/403.html -------------------------------------------------------------------------------- /templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/errors/404.html -------------------------------------------------------------------------------- /templates/errors/429.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/errors/429.html -------------------------------------------------------------------------------- /templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/errors/500.html -------------------------------------------------------------------------------- /templates/errors/502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/errors/502.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/macros/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/macros/forms.html -------------------------------------------------------------------------------- /templates/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/notifications.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/page.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/reset_password.html -------------------------------------------------------------------------------- /templates/scoreboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/scoreboard.html -------------------------------------------------------------------------------- /templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/settings.html -------------------------------------------------------------------------------- /templates/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/setup.html -------------------------------------------------------------------------------- /templates/teams/invite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/teams/invite.html -------------------------------------------------------------------------------- /templates/teams/join_team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/teams/join_team.html -------------------------------------------------------------------------------- /templates/teams/new_team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/teams/new_team.html -------------------------------------------------------------------------------- /templates/teams/private.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/teams/private.html -------------------------------------------------------------------------------- /templates/teams/public.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/teams/public.html -------------------------------------------------------------------------------- /templates/teams/team_enrollment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/teams/team_enrollment.html -------------------------------------------------------------------------------- /templates/teams/teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/teams/teams.html -------------------------------------------------------------------------------- /templates/users/private.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/users/private.html -------------------------------------------------------------------------------- /templates/users/public.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/users/public.html -------------------------------------------------------------------------------- /templates/users/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/templates/users/users.html -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankli0324/ctfd-pages-theme/HEAD/yarn.lock --------------------------------------------------------------------------------