<data:post.title>返回博客标题而非帖子标题</data:post.title>

时间:2014-06-22 12:27:39

标签: post blogger blogspot

您好我正在尝试将静态html和css设计转换为博客模板。我遇到了一个问题,我希望post includable能够返回帖子标题,而是返回博客标题。这是帖子的可包含代码,下面是在包含html结构的main includable中调用的包含代码。请关于我如何解决这个问题的任何想法都会非常感激。

<b:includable id='post' var='post'>
        <!--Article Summary-->
            <b:if cond='data:post.title'>
                <h1 class="article-title">
                    <data:post.title/>
                </h1>
            <b:else/>
                <h1 class="article-title">
                    <data:post.title/>
                </h1>
            </b:if>
            <p class="posted-by">
                by
                <em class="author-name"><data:post.author/></em>
                on
                <span class="date"><data:post.dateHeader/></span>
            </p>
            <p class="article-content">
                <data:post.body/>
            </p>
            <a href="" class="large-button orange-button-color button">READ MORE</a>
        </b:includable>
<b:if cond="data:blog.url ==  data:blog.homepageUrl">
  <div class="article-summary">
<img class="article-image" src="https://lh3.googleusercontent.com/article-main-image.jpg" alt="article-main-image"/>
<b:include name="post"/>
</div>
</b:if>

1 个答案:

答案 0 :(得分:0)

是正确的,所以我很好奇你是否从正确的地方包括在内。例如,您是在MOBILE部分与模板的NON-MOBILE部分吗?