├── 404.php ├── README ├── archive.php ├── author.php ├── category.php ├── comments.php ├── css ├── editor-style.css └── rtl-editor-style.css ├── footer.php ├── full-width-page.php ├── functions.php ├── header.php ├── image.php ├── images └── robot.png ├── index.php ├── loop.php ├── page.php ├── rtl.css ├── screenshot.png ├── search.php ├── sidebar.php ├── single.php ├── style.css └── tag.php /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/404.php -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/README -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/archive.php -------------------------------------------------------------------------------- /author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/author.php -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/category.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/comments.php -------------------------------------------------------------------------------- /css/editor-style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: HandcraftedWP 3 | 4 | All your awesome Editor Styles go here, we like WYSIWYG 5 | 6 | */ 7 | 8 | body{} -------------------------------------------------------------------------------- /css/rtl-editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/css/rtl-editor-style.css -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/footer.php -------------------------------------------------------------------------------- /full-width-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/full-width-page.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/header.php -------------------------------------------------------------------------------- /image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/image.php -------------------------------------------------------------------------------- /images/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/images/robot.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/index.php -------------------------------------------------------------------------------- /loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/loop.php -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/page.php -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/rtl.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/search.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/sidebar.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/style.css -------------------------------------------------------------------------------- /tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randyjensen/handcrafted-wp-theme/HEAD/tag.php --------------------------------------------------------------------------------