不能链接博客上的帖子为github



在我的github页面我有一个标签在顶部称为项目,我有一堆我的项目在那里列出。我在顶部创建了第二个选项卡,称为主动性,但是我不能填写我的主动性。

好的,问题是_postsi没有在_config中定义。有人知道我该怎么做吗?

我的项目。md调用我的_posts文件夹(我有项目列出),我正试图使我的倡议。md调用我的_postsi文件夹(我有填充计划在那里)

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

听起来你想为你的帖子使用单独的类别。也就是说,你将把你的项目和计划作为单独的类别。

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 %}

这里有一个关于这个问题的链接。

还有,当我找到哈姆雷特独白的时候有点失望。md文件中没有哈姆雷特的独白……这出戏很重要我要抓住国王的良心

在你想要出现在"initiatives"标签下的文章前面的内容中设置了"initiatives"类别之后,改变你在initiatives中的代码。

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

注意计划中的下面一行。md

{在site.categories.initiatives中张贴的百分比}

改为

{%表示网站中的帖子。类别("项目")%}

相关内容

  • 没有找到相关文章

最新更新