├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── new_group.yml └── workflows │ └── issue_new_group.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets └── scss │ └── pages │ └── post.scss ├── config.toml ├── content ├── _index.md ├── blogs.md ├── chronicle.md ├── contest.md ├── groups.md ├── lanqiao.md ├── ojs.md └── studyMaterials.md ├── data ├── blogs.json ├── contest.json ├── groups.json ├── lanqiao.json ├── ojs.json └── studyMaterials.json ├── i18n └── zh-cn.yaml ├── layouts ├── _default │ └── baseof.html ├── partials │ ├── anchored-headings.html │ └── post-pagination.html └── shortcodes │ ├── blog_datatable.html │ ├── contest_datatable.html │ ├── data_datatable.html │ ├── datatable.html │ ├── lanqiao_datatable.html │ └── oj_datatable.html ├── lint_rules.yml ├── netlify.toml ├── scripts ├── extract_issue_info.py ├── modify_groups_json.py └── modify_groups_md.py └── static ├── CNAME └── favicon.ico /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/.github/ISSUE_TEMPLATE/new_group.yml -------------------------------------------------------------------------------- /.github/workflows/issue_new_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/.github/workflows/issue_new_group.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | 3 | public/ 4 | resources/ 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/scss/pages/post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/assets/scss/pages/post.scss -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/blogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/blogs.md -------------------------------------------------------------------------------- /content/chronicle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/chronicle.md -------------------------------------------------------------------------------- /content/contest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/contest.md -------------------------------------------------------------------------------- /content/groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/groups.md -------------------------------------------------------------------------------- /content/lanqiao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/lanqiao.md -------------------------------------------------------------------------------- /content/ojs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/ojs.md -------------------------------------------------------------------------------- /content/studyMaterials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/content/studyMaterials.md -------------------------------------------------------------------------------- /data/blogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/data/blogs.json -------------------------------------------------------------------------------- /data/contest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/data/contest.json -------------------------------------------------------------------------------- /data/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/data/groups.json -------------------------------------------------------------------------------- /data/lanqiao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/data/lanqiao.json -------------------------------------------------------------------------------- /data/ojs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/data/ojs.json -------------------------------------------------------------------------------- /data/studyMaterials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/data/studyMaterials.json -------------------------------------------------------------------------------- /i18n/zh-cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/i18n/zh-cn.yaml -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/partials/anchored-headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/partials/anchored-headings.html -------------------------------------------------------------------------------- /layouts/partials/post-pagination.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/shortcodes/blog_datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/shortcodes/blog_datatable.html -------------------------------------------------------------------------------- /layouts/shortcodes/contest_datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/shortcodes/contest_datatable.html -------------------------------------------------------------------------------- /layouts/shortcodes/data_datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/shortcodes/data_datatable.html -------------------------------------------------------------------------------- /layouts/shortcodes/datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/shortcodes/datatable.html -------------------------------------------------------------------------------- /layouts/shortcodes/lanqiao_datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/shortcodes/lanqiao_datatable.html -------------------------------------------------------------------------------- /layouts/shortcodes/oj_datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/layouts/shortcodes/oj_datatable.html -------------------------------------------------------------------------------- /lint_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/lint_rules.yml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/netlify.toml -------------------------------------------------------------------------------- /scripts/extract_issue_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/scripts/extract_issue_info.py -------------------------------------------------------------------------------- /scripts/modify_groups_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/scripts/modify_groups_json.py -------------------------------------------------------------------------------- /scripts/modify_groups_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/scripts/modify_groups_md.py -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | acmer.info -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmerindex/acmer-info/HEAD/static/favicon.ico --------------------------------------------------------------------------------