├── .gitignore ├── img ├── logo.gif ├── more.gif ├── xml.gif ├── bullet.gif ├── body-bg.gif ├── box-tile.gif ├── box-top.gif ├── comment.gif ├── header-bg.gif ├── mf-lg-ora.gif ├── nav-top.gif ├── nhov-top.gif ├── subnav-bg.gif ├── box-bottom.gif ├── btn-search.gif ├── bullet-alt.gif ├── com-bubble.gif ├── footer-top.gif ├── nav-bottom.gif ├── nhov-bottom.gif ├── comment-bubble.gif ├── footer-bottom.gif └── greenbar-top.gif ├── screenshot.png ├── 404.php ├── links.php ├── footer.php ├── template-parts ├── content-none.php ├── content-page.php ├── content.php └── content-single.php ├── archives.php ├── page.php ├── searchform.php ├── single.php ├── css └── print.css ├── sidebar.php ├── index.php ├── archive.php ├── header.php ├── search.php ├── functions.php ├── phpcs.xml ├── comments.php ├── comments-popup.php └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/logo.gif -------------------------------------------------------------------------------- /img/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/more.gif -------------------------------------------------------------------------------- /img/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/xml.gif -------------------------------------------------------------------------------- /img/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/bullet.gif -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/screenshot.png -------------------------------------------------------------------------------- /img/body-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/body-bg.gif -------------------------------------------------------------------------------- /img/box-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/box-tile.gif -------------------------------------------------------------------------------- /img/box-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/box-top.gif -------------------------------------------------------------------------------- /img/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/comment.gif -------------------------------------------------------------------------------- /img/header-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/header-bg.gif -------------------------------------------------------------------------------- /img/mf-lg-ora.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/mf-lg-ora.gif -------------------------------------------------------------------------------- /img/nav-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/nav-top.gif -------------------------------------------------------------------------------- /img/nhov-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/nhov-top.gif -------------------------------------------------------------------------------- /img/subnav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/subnav-bg.gif -------------------------------------------------------------------------------- /img/box-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/box-bottom.gif -------------------------------------------------------------------------------- /img/btn-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/btn-search.gif -------------------------------------------------------------------------------- /img/bullet-alt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/bullet-alt.gif -------------------------------------------------------------------------------- /img/com-bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/com-bubble.gif -------------------------------------------------------------------------------- /img/footer-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/footer-top.gif -------------------------------------------------------------------------------- /img/nav-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/nav-bottom.gif -------------------------------------------------------------------------------- /img/nhov-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/nhov-bottom.gif -------------------------------------------------------------------------------- /img/comment-bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/comment-bubble.gif -------------------------------------------------------------------------------- /img/footer-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/footer-bottom.gif -------------------------------------------------------------------------------- /img/greenbar-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/microformats-wordpress-theme/master/img/greenbar-top.gif -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |