使用 jekyll 更改个人站点配置

Changing personal site configuration with jekyll

我正在尝试使用 jekyll 构建 a site。我设法使数学工作并上传了一些文件。现在内容的整体分布不是最优的。

Here 是页面的来源。我怎样才能做这个简单的改变?我知道我正在使用 Minima 模板。

回复:头

我认为“HEAD”来自 History.markdown 文件。奇怪的是,“HEAD”没有出现在本地 jekyll serve 开发环境中。我怀疑 code belowjekyll 中获取 History.markdown,在渲染 header.html 时获取 about.md

https://github.com/rjraya/rjraya.github.io/blob/ddc6a2f5c5804961da6ac79472b7f77052bef267/_includes/header.html#L20-L27

    <div class="trigger">
      {%- for path in page_paths -%}
        {%- assign my_page = site.pages | where: "path", path | first -%}
        {%- if my_page.title -%}
        <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
        {%- endif -%}
      {%- endfor -%}
    </div>

RE: 页面标题 URL Computational reflections

将此行中的 href/ 更改为 /blog https://github.com/rjraya/rjraya.github.io/blob/ddc6a2f5c5804961da6ac79472b7f77052bef267/_includes/header.html#L7

<a class="site-title" rel="author" href="{{ "/blog" | relative_url }}">{{ site.title | escape }}</a>

回复:关于 URL

about.md 页面中删除 permalink : /about/about.md 将在下一步进入主页(例如 /)。 https://github.com/rjraya/rjraya.github.io/blob/gh-pages/about.md

RE: 在首页rjraya.github.io显示about.md信息,在rjraya.github.io/blog

下显示_posts个markdown文件

jekyll 使用基于 markdown 文件名分配永久链接的默认行为。

index.md 重命名为 blog.md。这会将 _posts 个文件的列表从 / 移动到 /blog

about.md 重命名为 index.md。这会将 about.md 的内容从 /about 移动到 /.