Yes. It’s simple, get over it.
I like simple. I also like that this design has ZERO non-content images*. Even the logo is done with some fancy CSS and one of the best fonts ever.
I spent a lot of time taking OUT textile, markdown, and all the other various formatting mark ups I’ve used in the past and rewriting everything to be in plain ‘ol HTML since it’s much, much easier to maintain and continue using as the web moves forward.
I cleaned up my portfolio, removed some dead links, and should hopefully be updating it soon with Help.com (if given CNET permission) and BF2S.com. I also took some time to duplicate the “Jeff is something“ feature that’s starting to spring up all over the place. You can subscribe to my updates feed for quick, short updates on what I’m doing. Finally, I made the thumbnails for the portfolio section a little larger.
Also, while working on this new theme, I found that developing a fresh theme for Wordpress pretty much totally sucks. The problem is that there is no way to truly preview a theme. Instead, I read lots of people talking about setting up “sandboxes” and duplicating databases and a whole lot of nonsense work that, in most cases, is waaaay too much work.
So, I made a very quick, very hacky plugin which will override your current theme with another for a given user (admin) or IP address. Here’s the quick and dirty of it:
<?php
/*
Plugin Name: Theme Trial
Plugin URI: http://jrm.cc
Description: Loads a custom defined theme for admins/users from ip instead of the publicly viewable setting
Version: 1.0
Author: Jeff Minard
Author URI: http://jrm.cc/
*/
function tt_replace($template=’‘) {
// ip based
return( $_SERVER[‘REMOTE_ADDR’] 'YOUR_IP_HERE' ) ? 'YOUR_NEW_TEMPLATE' : $template;
// user profile based
// return( get_profile('ID') 1 ) ? ‘YOUR_NEW_TEMPLATE’ : $template;
}
add_filter(‘template’, ‘tt_replace’);
add_filter(‘stylesheet’, ‘tt_replace’);
?>
It does the trick pretty dang nicely, if I do say so. Just make sure to change the uppercased variables as noted to match your environment. I also made one other small plugin which simply kills off the upload pane (which is really if you never, ever use it. FTP ftw.) If you are interested, ask and I’ll put it up.
* = Untrue if using IE. Try the site in IE less than 7 (which still has CSS bugs/missing items). My sentiments with that browser are established and documented — I’m tired of “fixing” for it on my own personal site. Just. Don’t. Care.