Повреждение домашней страницы Jekyll на github - PullRequest
0 голосов
/ 25 марта 2020

У меня простой веб-сайт Jekyll. Он работает как положено на локальном сервере, но при загрузке на github он отображается по-другому. Я предполагаю, что это потому, что bundle exe c jekyll serve ведет себя по-разному на github.

Так выглядит на локальном сервере (я использую тему минимумы )

enter image description here

и на github

enter image description here

Дополнительные ссылки в строке меню все указывают на страницы на сайте

index.md

---
layout: home
---
Welcome to the Psionman Set. This is a series of lessons that I wrote to help me get to grips with some new (to me) technology.

(Some were done for my private use, but you can read them).

[Wx Python from scratch]({{ site.baseurl }}{% link wx_python/wxpython_from_scratch.md %})

И дерево на локальном сервере

.
├── 404.html
├── about.markdown
├── _config.yml
├── Gemfile
├── Gemfile.lock
├── index.md
├── _posts
├── _site
│   ├── 404.html
│   ├── about
│   │   └── index.html
│   ├── assets
│   │   ├── main.css
│   │   ├── main.css.map
│   │   └── minima-social-icons.svg
│   ├── feed.xml
│   ├── index.html
│   └── wx_python
│       ├── images
│       │   ├── basic_frame.png
│       │   ├── datepicker.png
│       ├── introduction.html
│       ├── post01.html
│       ├── post02.html
│       ├── post03.html
│       ├── post04.html
│       ├── snippets
│       │   ├── basic_frame.py
│       │   ├── basic_panel.py
│       └── wxpython_from_scratch.html
└── wx_python
    ├── images
    │   ├── basic_frame.png
    │   ├── datepicker.png
    ├── introduction.md
    ├── post01.md
    ├── post02.md
    ├── snippets
    │   ├── basic_frame.py
    │   ├── basic_panel.py
    └── wxpython_from_scratch.md

[EDIT]

Кажется, что элементы в строке меню создаются из заголовка в файле md

## WxPython from Scratch

Github Кажется, поднял первый заголовок и поместил его в строку меню

Может кто-нибудь показать мне, как их подавить?

...