-1

在根文件夹中我有

设计极简主义.md

---
title: Case Study: Designing Minimalist Interfaces For Teaching New Cognitive Tool Use
layout: default
---

# Case Study: Designing Minimalist Interfaces For Teaching New Cognitive Tool Use

Quantum Pilot is a SHMUP-puzzle about fighting clone ships that mirror how you attack them. (...)

默认布局:

<html>
<body style="background-color:black">
<body link="white">
<body vlink="white">
<style>
a {
    text-decoration: none;
}
</style>
<h1><a href="index.html">main</h1>
<div class="row-fluid">
    <div class="span8" style="color:white">
        {{ content }}
    </div>
</div>

当我运行 jekyll build 时,我得到_site/designing_minimalist/index.html

但我的 root/index.html 文件具有默认布局:

<html>
<body style="background-color:black">
<body link="white">
<body vlink="white">
<style>
a {
    text-decoration: none;
}
</style>
<h1><a href="index.html">main</h1>
<div class="row-fluid">
    <div class="span8" style="color:white">
        <p><a href="https://itunes.apple.com/us/app/quantum-pilot/id935956154?mt=8">>Quantum Pilot: Clone enemies remember how you killed them and fight back mirroring your attack</a></p>

<p><a href="designing_minimalist/index.html">>Case Study: Designing Minimalist Interfaces For Teaching New Cognitive Tool Use</a></p>

    </div>
</div>

根/index.md

---
title: main.
layout: default
---

[>Quantum Pilot: Clone enemies remember how you killed them and fight back mirroring your attack](https://itunes.apple.com/us/app/quantum-pilot/id935956154?mt=8)

[>Case Study: Designing Minimalist Interfaces For Teaching New Cognitive Tool Use](designing_minimalist/index.html)

为什么默认布局未应用于我的静态页面?

4

1 回答 1

1

标题中的冒号不起作用。删除冒号解决了这个问题。

于 2015-04-12T01:05:23.773 回答