https://github.com/ipfs-search/blog
ipfs-search.com official blog
https://github.com/ipfs-search/blog
blog ipfs ipfs-search jekyll
Last synced: about 1 year ago
JSON representation
ipfs-search.com official blog
- Host: GitHub
- URL: https://github.com/ipfs-search/blog
- Owner: ipfs-search
- License: cc0-1.0
- Created: 2021-03-30T10:42:05.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-06-05T19:36:41.000Z (about 3 years ago)
- Last Synced: 2025-04-20T17:24:00.885Z (about 1 year ago)
- Topics: blog, ipfs, ipfs-search, jekyll
- Language: Ruby
- Homepage: https://blog.ipfs-search.com
- Size: 105 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# blog
blog.ipfs-search.com
Created using Jekyll and Minimal Mistakes
## Documentation:
[Jekyll](https://jekyllrb.com/docs/posts/)
[Minmal mistakes](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/)
## Creating Posts
To create a post, add a file to the _posts directory with the following format:
YEAR-MONTH-DAY-title.MARKUP
## Drafts
Drafts for posts can be put in `/_drafts`
## Author bio
Details about authors can be added to `/_data/authors.yml` and called by adding `author : AUTHOR_NAME` to the Frontmatter of the post.
## Building locally
### Installing dependencies
Requires Ruby and Jekyll installed:
```
$ gem install --user-install bundler jekyll
$ bundle install
```
### Executing local build, with livereload
```bash
$ bundle exec jekyll serve --livereload --incremental
```