├── LICENSE.md ├── README.md ├── comments.php ├── content-single.php ├── content.php ├── css ├── blog.css └── bootstrap.min.css ├── footer.php ├── functions.php ├── header.php ├── index.php ├── js └── bootstrap.min.js ├── page-custom.php ├── page.php ├── sidebar.php ├── single.php └── style.css /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/README.md -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/comments.php -------------------------------------------------------------------------------- /content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/content-single.php -------------------------------------------------------------------------------- /content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/content.php -------------------------------------------------------------------------------- /css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/css/blog.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/header.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /page-custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/page-custom.php -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/page.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/sidebar.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniarascia/startwordpress/HEAD/style.css --------------------------------------------------------------------------------