├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── Screenshot.png ├── Screenshot_mobile.png ├── config.toml ├── content ├── _index.md ├── latex.md ├── no depency and fast.md └── syntax highlighting.md ├── static ├── imgs │ ├── douban.svg │ ├── github.svg │ ├── mail.svg │ ├── mastodon.svg │ ├── rss.svg │ └── zola-favicon.ico └── simple.css ├── templates ├── 404.html ├── base.html ├── index.html └── page.html └── theme.toml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /public -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/Screenshot.png -------------------------------------------------------------------------------- /Screenshot_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/Screenshot_mobile.png -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | sort_by = "date" 3 | +++ -------------------------------------------------------------------------------- /content/latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/content/latex.md -------------------------------------------------------------------------------- /content/no depency and fast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/content/no depency and fast.md -------------------------------------------------------------------------------- /content/syntax highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/content/syntax highlighting.md -------------------------------------------------------------------------------- /static/imgs/douban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/static/imgs/douban.svg -------------------------------------------------------------------------------- /static/imgs/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/static/imgs/github.svg -------------------------------------------------------------------------------- /static/imgs/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/static/imgs/mail.svg -------------------------------------------------------------------------------- /static/imgs/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/static/imgs/mastodon.svg -------------------------------------------------------------------------------- /static/imgs/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/static/imgs/rss.svg -------------------------------------------------------------------------------- /static/imgs/zola-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/static/imgs/zola-favicon.ico -------------------------------------------------------------------------------- /static/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/static/simple.css -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/templates/page.html -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsai002/nodep/HEAD/theme.toml --------------------------------------------------------------------------------