While I am looking the doc. I saw the following document structure,
.
├── _config.yml
├── _drafts
| ├── begin-with-the-crazy-ideas.textile
| └── on-simplicity-in-technology.markdown
├── _includes
| ├── footer.html
| └── header.html
├── _layouts
| ├── default.html
| └── post.html
├── _posts
| ├── 2007-10-29-why-every-programmer-should-play-nethack.textile
| └── 2009-04-26-barcamp-boston-4-roundup.textile
├── _data
| └── members.yml
├── _site
├── .jekyll-metadata
└── index.html
When I need to include an image inside my post. Where should I put the image to use the feature of site.static_files
mentioned here (Static Files Section in the Documentation)? So that I can use variable like file.path
and file.modified_time
directly.
Previously when I was using Jekyll 2.x, I was doing something like below by creating my own asset directory.
<link rel="stylesheet" href="{{ "/assets/css/index.css" | prepend: site.url }}">