WordPress minimum template files from scratch
<html>
<head><?php wp_head(); ?></head>
<body>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title( '<h3>', '</h3>' );
the_content();
}
}
wp_footer();
?>
</body>
</html>
/*
Theme Name: Minimum Theme
Theme URI: http://minimumtheme.com
Description: A description about the theme
Author: Author Name
Author URI: http://www.author.com
Version: 1.0
Tags: responsive, black, white, columns, custom menu, etc.
*/