如何在带有 Gitlab Pages repo 的 Jekyll 项目中使用远程主题?

How to use remote theme in Jekyll project with Gitlab Pages repo?

我正在使用 linux/firefox,但在 GitLab 页面中保存的 Jekyll 项目的 .config.yml 中使用 remote_theme: 时,jekyll 主题不起作用回购。如果我在本地克隆主题 just-the-docs (https://pmarsceill.github.io/just-the-docs/),在 .config.yml 中使用 theme: 时它工作正常。但是,当使用由同一作者 pmarsceill/jtd-remote 编写的远程主题示例并添加 remote_theme: 而不是 theme: 时,我遇到了同样的问题。主题未生效

我以 jtd-remote 为例,它给出了同样的错误,不过,我的目标是让 just-the-docs 作为远程主题工作。

Clone 'https://github.com/pmarsceill/jtd-remote'
Add url to _config.yml.
Add index.md to top level.
Add to GitLab repo and configure pages.
Browse to repo url on 4000, theme does not take effect.

使用just-the-docs时,我的.config.yml出现如下:

# Site settings
title: My site Test
description: "Testing"
baseurl: "/"
url: "https://mysite.gitlab.io"

color_scheme: "dark"
search_enabled: false

# Build settings
remote_theme: pmarsceill/just-the-docs
#remote_theme: "pmarsceill/just-the-docs@v0.3.3"

plugins:
  - jekyll-feed
  - jekyll-remote-theme
  - jekyll-seo-tag
  - jekyll-sitemap
  - jekyll-mermaid
  - jekyll-spaceship

非常感谢任何帮助。

GitLab 不支持 Jekyll 的远程主题。