ジキルのドキュメントをフォローしようとしていますが、画像の表示方法に行き詰まっています
---
layout: post
title: "My first post!"
date: 2016-10-20 16:17:57 +0200
categories: jekyll update
regenerate: true
---
This is in the `_posts` directory.
It can be edited then rebuild the site to see the changes.
You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
![name of the image][{{site.url}}/assets/P6740674.JPG]
この質問は非常に基本的であるので、私は非常に愚かな質問をしていますが、私の質問に対する答えは見つかりません
私のシステムの設定エラーの可能性はありますか?私はApache2、Ruby gemsなどを使用しています。
前もって感謝します
site.url
を使用したい場合は、_config.yml
ファイルにurl
変数を追加する必要があります。詳細は Jekyllのドキュメント をご覧ください。
ただし、site.url
をまったく使用する必要がない場合もあります。 /
スラッシュで始まるURLは、ドメインのトップレベルを基準にしています。したがって、これを行うことができます:
![image tooltip here](/assets/image.jpg)
デフォルトでimages
の下に作成されたassets
ディレクトリが表示されました。次のように画像を配置しました。
assets/images/myimage.jpg
と投稿に次の行を追加します。
![My image Name](/assets/images/myimage.jpg)
bundle exec jekyll serve
を実行して、エラーがないか確認します。ファイルの場所の不一致について言及した場合は、ここにエラーが表示されます。