Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 month 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-05T19:36:41.000Z (over 1 year ago)
- Last Synced: 2024-11-04T16:44:29.274Z (about 2 months ago)
- Topics: blog, ipfs, ipfs-search, jekyll
- Language: Ruby
- Homepage: https://blog.ipfs-search.com
- Size: 105 MB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# blog
blog.ipfs-search.comCreated 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
```