I dont think thats quite what I mean.
In header.php you have the following:
<body <?php body_class(); ?>>
<div id="page" class="hfeed">
header id="branding" role="banner">
ETC.
I was hoping to be able to call that div conditionally. So that if its the homepage, it will call div id=”page” with a different class (say, class=”home”) and if it wasnt the home page, it would call it with class=”hfeed”.
Is such a thing doable?