├── .gitignore ├── screenshot.jpg ├── fonts └── Roboto-Thin.ttf ├── functions.php ├── README.md ├── page.php ├── post.php ├── js ├── carbon.js ├── jquery.pjax.min.js └── jquery.min.js ├── footer.php ├── archive.php ├── header.php ├── index.php ├── page-archive.php ├── css ├── normalize.min.css └── carbon.css ├── comments.php └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblh/typecho-theme-carbon/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iblh/typecho-theme-carbon/HEAD/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | addInput($slogan); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Carbon 2 | 一款极简的typecho主题 3 | 4 | A minimalist typecho theme. 5 | 6 | 移植自[Hexo carbon](https://github.com/icylogic/carbon) 7 | 8 | ## 简介 9 | - 极简主题 10 | - [Github 地址](https://github.com/viosey/typecho-theme-carbon) 11 | - 使用 pjax, 极速的浏览体验 12 | 13 | ## 预览 14 |  15 | 16 | 17 |  18 | 19 | ## License 20 | Open sourced under the GPL v3.0 license. -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | need('header.php'); ?> 2 | 3 |