无法链接github

时间:2016-09-09 14:21:15

标签: html git github jekyll jekyll-bootstrap

在我的github页面上,我在顶部有一个名为projects的标签,我在那里列出了一堆项目。我在顶部创建了第二个标签,称为计划,但我无法填写我的计划。

好的,问题是_postsi没有在_config.yml中定义,任何人都知道如何做到这一点?

我的projects.md调用了我的_posts文件夹(我列出了项目),我试图在我的_postsi文件夹上调用我的initiatives.md(我在那里有填充程序)

https://github.com/tusharjoshi1/tusharjoshi1.github.io www.tusharjoshi1.com

2 个答案:

答案 0 :(得分:0)

听起来您想为帖子使用单独的类别。即你将把你的项目和倡议作为单独的类别。

root
 | -- index.html
 | -- _posts
      | -- projects
           | -- 2014-12-02-Calculating-Molar-Values-Using-VBA.md
           | -- 2015-05-27-Air-Flow-Measurements.md
      | -- initiatives
           | -- 2015-02-13-hamlet-monologue.md
           | -- 2015-02-26-flake-it-till-you-make-it.md

然后,对于您的页面,您将引用该类别。

{% for poem in site.categories.initiatives %}
  {{ initiative.output }}
{% endfor %}

Here's一个链接,涵盖了同样的问题以获取更多信息。

另外,当我发现Hamlet Monologue.md文件并没有包括哈姆雷特的独白时,有点失望... 剧本的事情 我将抓住国王的良心。

答案 1 :(得分:0)

在帖子前面设置要显示在“计划”标签下的类别“计划”之后,将您在initiatives.md中的代码更改为以下

Currently Being Updated.
<ul>
  {% for post in site.categories['initiatives'] %}
    <div>
      <a href="{{ post.url }}">{{ post.title }}</a>
      {{ post.excerpt }}
    <hr>
    </div>
  {% endfor %}
</ul>

请注意initiatives.md

中的以下行
  

{%for site.categories.initiatives%}

应该改为

  

{%for site.categories ['initiative']%}