├── README.md ├── footer.php ├── header.php ├── index.php ├── screenshot.png ├── single.php └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # Nothing 2 | 3 | 简单、快速,最原始的追求;配合w3m将会有另一番极致的体验哦! 4 | 5 | ![terminal01](https://cloud.githubusercontent.com/assets/9512362/19558574/dcc6c2c2-96fd-11e6-9a67-42e15f727ea9.png) 6 | ![terminal02](https://cloud.githubusercontent.com/assets/9512362/19558577/de47a8c8-96fd-11e6-8047-6f977c059c7a.png) 7 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 |

版权所有 © 2016   |  Powered By WordPress  |   Design By ttop5

3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php if ( is_home() ) { 6 | bloginfo('name'); echo " - "; bloginfo('description'); 7 | } elseif ( is_category() ) { 8 | single_cat_title(); echo " - "; bloginfo('name'); 9 | } elseif (is_single() || is_page() ) { 10 | single_post_title(); 11 | } elseif (is_search() ) { 12 | echo "搜索结果"; echo " - "; bloginfo('name'); 13 | } elseif (is_404() ) { 14 | echo '页面未找到!'; 15 | } else { 16 | wp_title('',true); 17 | } ?> 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 |
6 | 7 |

[ ]

8 | 9 |

10 | 11 | 12 | 13 |

阅读全文>>>

14 |
15 |
 
16 | 17 | 18 | 19 |

20 | 21 |

未找到

22 |

没有找到任何文章!

23 | 24 |
25 |
26 | 27 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttop5/nothing/954939e8ab97fd97144bf97baed2bbcf55e4d046/screenshot.png -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 |

[ ]

8 | 9 | 10 |
11 |

<< 返回首页

12 |
13 |
14 | 15 |
16 | 没有文章! 17 |
18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: nothing 3 | Theme URI: http://wp-theme.ttop5.net 4 | Description: It's a theme create by ttop5 5 | Version: 1.0 6 | Author: ttop5 7 | Author URI: ttop5 8 | Tags: 简洁,快速,最原始的追求 9 | */ 10 | --------------------------------------------------------------------------------