Octopress site.title没变?

时间:2013-12-12 05:38:05

标签: html css octopress

我创建了一个使用Octopress的新博客和一个名为Oscailte by coogie的主题。我虽然遇到了一些麻烦。我标题为博客,除了着陆页之外,所有页面都在拉动正确的页面标题,这是拉出默认标题 - "这是您主页的标题"。

_config.yml中的代码:

title: TheHopefulWebDev
subtitle: TheHopefulWebDev
author: Joseph Sawyer
simple_search: http://google.com/search
description: TheHopefulWebDev

/source/_includes/custom/header.html

中的代码
<div class="grid__item two-fifths lap-four-sixths palm-one-whole">
  <a href="{{ root_url }}/" class="site-title">{{ site.title }}</a>
</div>

这显示正确。所以我不明白为什么它不能在着陆页上为网站提取正确的标题。

我感谢任何帮助。

编辑:我应该补充一点,它在浏览器标题栏中显示的完整标题是&#34;这是您主页的标题 - TheHopefulWebDev&#34;。试图删除&#34;这是标题..&#34;位于/_deploy/index.html,现在它显示为:

<title>TheHopefulWebDev</title>

关闭服务器,使用rake预览重新启动,仍然获得相同的标题。 :/

1 个答案:

答案 0 :(得分:1)

想出来。不得不编辑/source/_layouts/default.html,顶部有以下内容:

---
title: Main
---

现在标题栏显示“Main - The Hopeful Web Dev”

希望它有所帮助。