├── font ├── bold.woff ├── italic.woff ├── normal.woff └── italic-bold.woff ├── screenshot.png ├── screenshot.psd ├── README.md ├── sidebar.php ├── editor-style-rtl.css ├── content-none.php ├── content-page.php ├── page.php ├── 404.php ├── page-templates ├── full-width.php └── front-page.php ├── js ├── navigation.js ├── theme-customizer.js ├── html5.js └── android.js ├── sidebar-front.php ├── single.php ├── content-quote.php ├── content-link.php ├── content-image.php ├── footer.php ├── content-status.php ├── content-aside.php ├── tag.php ├── category.php ├── search.php ├── archive.php ├── index.php ├── comments.php ├── author.php ├── header.php ├── content.php ├── image.php ├── inc └── custom-header.php ├── rtl.css ├── css └── ie.css ├── editor-style.css ├── languages └── twentytwelve.pot ├── functions.php └── style.css /font/bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damao/Android/HEAD/font/bold.woff -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damao/Android/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damao/Android/HEAD/screenshot.psd -------------------------------------------------------------------------------- /font/italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damao/Android/HEAD/font/italic.woff -------------------------------------------------------------------------------- /font/normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damao/Android/HEAD/font/normal.woff -------------------------------------------------------------------------------- /font/italic-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damao/Android/HEAD/font/italic-bold.woff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Android 2 | ======= 3 | 4 | Android Developer Style WordPress Theme 5 | 6 | #ChangeLog 7 | 8 | 2013.7.23 调整文章内导航代码顺序,SEO,推荐更新 9 | 10 | 11 | ##搜索 12 | 快捷键 / 直接跳到搜索框 13 | AJAX 结果展示 14 | 样式优化 15 | 16 | support [http://ooxx.me/theme-android.orz](http://ooxx.me/theme-android.orz) -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 |
17 | -------------------------------------------------------------------------------- /editor-style-rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Twenty Twelve 3 | Description: Used to style the TinyMCE editor for RTL languages. 4 | See also rtl.css file. 5 | */ 6 | 7 | html .mceContentBody { 8 | direction: rtl; 9 | unicode-bidi: embed; 10 | } 11 | li { 12 | margin: 0 24px 0 0; 13 | margin: 0 1.714285714rem 0 0; 14 | } 15 | dl { 16 | margin: 0 24px; 17 | margin: 0 1.714285714rem; 18 | } 19 | tr th { 20 | text-align: right; 21 | } 22 | td { 23 | padding: 6px 0 6px 10px; 24 | text-align: right; 25 | } 26 | .wp-caption { 27 | text-align: right; 28 | } -------------------------------------------------------------------------------- /content-none.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |