├── .gitignore ├── 404.php ├── archive.php ├── comments.php ├── css └── global.css ├── footer.php ├── functions.php ├── header.php ├── index.php ├── page.php ├── readme.txt ├── screenshot.png ├── search.php ├── sidebar.php ├── single.php └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | **/.sass-cache 2 | **/.DS_Store 3 | **/node_modules 4 | **/*.swp 5 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Page Not Found

4 |

5 | Did you type the URL?
6 | You may have typed the address (URL) incorrectly. Check it to make sure you've got the exact right spelling, capitalization, etc. 7 |

8 |

9 | Did you follow a link from somewhere else at this site?
10 | If you reached this page from another part of this site. 11 |

12 |

13 | Did you follow a link from another site?
14 | Links from other sites can sometimes be outdated or misspelled. 15 |

16 | 17 | 18 | -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | 5 | Author: 6 | 7 | Category: 8 | 9 | Tag: 10 | 11 | Archive for 12 | 13 | Archive for 14 | 15 | Archive 16 | 17 |

18 | 19 | 20 | 21 | 22 |

23 | 24 |

25 | 26 | 27 | 28 |

No posts found

29 | 30 | 31 | max_num_pages > 1 ) : ?> 32 | 35 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 | 2 |

Comments

3 | 6 | 7 | 1 && get_option( 'page_comments' ) ) : ?> 8 | 9 | 10 | 11 | 12 | 13 |

Comments are closed.

14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /css/global.css: -------------------------------------------------------------------------------- 1 | div { position: relative; } 2 | 3 | /* does not support IE 6/7 */ 4 | .clearfix:after { 5 | content:""; 6 | display:table; 7 | clear:both; 8 | } 9 | 10 | /* WordPress Presentational Classes*/ 11 | .aligncenter { display:block; margin:0 auto } 12 | .alignleft { float:left } 13 | .alignright { float:right } 14 | .wp-caption { border:1px solid #666; text-align:center; background:#ccc; padding:10px; margin:10px } -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | 'Primary Menu']); 4 | 5 | register_sidebar([ 6 | 'id' => 'sidebar-1', 7 | 'name' => 'Sidebar' 8 | ]); 9 | 10 | add_theme_support( 'automatic-feed-links' ); 11 | 12 | function my_init_method() { 13 | if( !is_admin() ) { 14 | wp_enqueue_script( 'jquery' ); 15 | wp_register_style( 'global', get_bloginfo('template_directory') . '/css/global.css'); 16 | wp_enqueue_style( 'global' ); 17 | } 18 | } 19 | add_action( 'init', 'my_init_method' ); 20 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | > 3 | 4 | 5 | 6 | <?php 7 | if( ! is_home() ): 8 | wp_title( '|', true, 'right' ); 9 | endif; 10 | bloginfo( 'name' ); 11 | ?> 12 | 13 | 14 | 15 | 16 | > 17 | 18 | 'primary') ); ?> -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

6 | 7 |

8 | 9 | 10 | 11 |

No posts found

12 | 13 | 14 | max_num_pages > 1 ) : ?> 15 | 18 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | Clean Start 2 | 3 | --- 4 | 5 | Minimal theme created as a starting point for custom theme development. Stripped down to the bare 6 | minimum templates and markup for a functional theme. 7 | 8 | --- 9 | 10 | v1.2 07.09.2014 11 | • Now using WordPress's jQuery 12 | • Theme CSS now enqueued in functions.php 13 | • Switched some custom elements to use WordPress functions 14 | • Registered a primary menu 15 | 16 | v1.1 01.31.2012 17 | Updated jQuery version 18 | 19 | v1.0 10.25.2011 20 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModernClimate/clean-start/9ae2a2a72faf35dda9b170790ae24ebdc11a2e1c/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | 5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 |

Nothing Found

13 |

14 | Sorry, but nothing matched your search criteria. Please try again with some different keywords. 15 |

16 | 17 | 18 | max_num_pages > 1 ) : ?> 19 | 22 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: Clean Start 3 | Theme URI: http://clean-start-theme.com/ 4 | Description: Starting point for custom theme making. 5 | Version: 1.2 6 | Author: Ackmann & Dickenson 7 | Author URI: http://ackmanndickenson.com 8 | 9 | Tags: clean, basic, starter 10 | 11 | The CSS and HTML are released under the GPL: 12 | http://www.opensource.org/licenses/gpl-3.0.html 13 | */ --------------------------------------------------------------------------------