👋 hello, welcome to here.
This is repository of my static blog, which was originally built using hexo, but has now been migrated to hugo.
If you are here because you would like to read my blog, please follow this link: https://blog.imlk.top/
You may be curious about those symbolic link files called images
and objects
.
Basically, there are located at:
/images
/objects
/content/posts/images
/content/posts/objects
These are not hugo generated files. Just a compromise to keep both the local markdown editor and the resource file url working correctly.
All the static file (e.g. images
and objects
) should be placed in /static
.
However, hugo won't ignore these symbolic link files, cause it copy them multiple times. So remember to modify ignoreFiles
in config.yaml
after create new symbolic link files.
ignoreFiles:
- 'posts/images'
- 'posts/objects'
- 'images'
- 'objects'
active branches:
Currently only two branches are active:
master
: Source files of posts, assets files, layout files. You can just run hugo
on this branch to generate a website.
hugo-generated
: The static web site generated by hugo. This branch is configured as the content of this git page.