2015-03-02 64 views
4

我正嘗試在Github頁面上託管我的Jekyll博客。該博客目前正在上線hereJekyll在Github頁面上不顯示圖像並且已經斷開鏈接

正如您所看到的,當您點擊博客帖子時,圖像丟失+,它顯示404。如何解決這個問題? Here's the link到我的公開博客回購,這是我的_config.yml文件:

# Build settings 
markdown: redcarpet 
highlighter: pygments 

# Site settings 
title: "Sam Yonski" 
description: > # this means to ignore newlines until "email:" 
Reading and writing... 
email: [email protected] 

#blog logo 
logo: "/assets/images/sam_yonski_logo.png" 

# blog cover 
cover: "/assets/images/cA4aKEIPQrerBnp1yGHv_IMG_9534-3-2.jpg" 

name: 'Sam Yonski' 
author: 'Sam Yonski' 
author_image: "/assets/images/author.jpg" 
paginate: 5 

url: "https://ofcan.github.io" # the base hostname & protocol for your site 
baseurl: "/sam_yonski" 

回答

9

在_config.yml設置baseurl: /sam_yonski

,並打電話給你的資源:

<link rel="stylesheet" href="{{ site.baseurl }}/css/css.css"> 
<script src="{{ site.baseurl }}/js/scripts.js"></script> 
<img src="{{ site.baseurl }}/path/to/img/toto.jpg"> 
<a href="{{ site.baseurl }}/linkto/">Link</a> 

Jekyll documentation here

+1

這點很重要,但是爲了解決這個問題,最好還包括一些額外的內容,例如GH頁面路徑包含項目名稱。 [這](http://stackoverflow.com/a/19173888/1048479)回答是一個很好的參考 – 2015-03-03 00:10:26

+0

真正的解決方案是人RTFM。我的回答很短,因爲我有點無聊[一次又一次回答同一個問題](https://stackoverflow.com/search?tab=newest&q=user%3a1548376%20 [jekyll]%20site.baseurl) – 2015-03-03 08:57:13

+4

@DavidJacquel我也遇到過這個問題,看起來手冊可能需要更清晰一些,因爲我讀過它,仍然浪費了一些時間。 +1雖然作爲你的答案(在多個問題上)是讓傑基爾建立和工作,我想要的夢幻般的指導。 – 2015-12-20 15:16:58

相關問題