Tumblr カスタムテーマ Day Page Navigation の rel-next, rel-prev

Example Day Page Navigation

<html>
    <body>
        <h1>{Title}</h1>

        {block:DayPage}
            <h2>{Month} {DayOfMonth}, {Year}</h2>
        {/block:DayPage}

        <ol id="posts">
            {block:Posts}
                ...
            {/block:Posts}
        </ol>

        <div id="footer">
            {block:Pagination}
                {block:PreviousPage}
                    <a href="{PreviousPage}">&#171; Previous</a>
                {/block:PreviousPage}

                {block:NextPage}
                    <a href="{NextPage}">Next &#187;</a>
                {/block:NextPage}
            {/block:Pagination}

            {block:DayPagination}
                {block:PreviousDayPage}
                    <a href="{PreviousDayPage}">
                        &#171; {ShortMonth} {DayOfMonth}
                    </a>
                {/block:PreviousDayPage}

                {block:NextDayPage}
                    <a href="{NextDayPage}">
                        {ShortMonth} {DayOfMonth} &#187;
                    </a>
                {/block:NextDayPage}
            {/block:DayPagination}
        </div>
    </body>
</html>        
Creating a custom HTML theme | Tumblr

rel-next と rel-prev を設定すると、

        <div id="footer">
            {block:Pagination}
                {block:PreviousPage}
                    <a href="{PreviousPage}" rel="prev">&#171; Previous</a> &nbsp;&nbsp;
                {/block:PreviousPage}
                {block:NextPage}
                    <a href="{NextPage}" rel="next">Next &#187;</a>

                {/block:NextPage}
            {/block:Pagination}

            {block:DayPagination}
                {block:NextDayPage}
                    <a href="{NextDayPage}" rel="prev">&#171; {ShortMonth} {DayOfMonth}</a>
                {/block:NextDayPage}
                {block:PreviousDayPage}
                    <a href="{PreviousDayPage}" rel="next">{ShortMonth} {DayOfMonth} &#187;</a>
                {/block:PreviousDayPage}
            {/block:DayPagination}
        </div>

今日の日付のlinkを貼っておきたいんだが、これは自分で作らないとダメか。



http://taizooo.tumblr.com/day/2008/06/11 の次の日のlinkが http://taizooo.tumblr.com/day/2008/06/11 になっておる。これじゃダメじゃん。

こんな感じでっす。バグってますぜ。