diff --git a/source/_data/sidebar.yml b/source/_data/sidebar.yml index b86d5e2..237886b 100644 --- a/source/_data/sidebar.yml +++ b/source/_data/sidebar.yml @@ -2,8 +2,6 @@ docs: Nimbus: introduction: index.html building: building.html - options: options.html - libs: libs.html milestones: milestones.html design: design.html team: team.html diff --git a/source/docs/building.md b/source/docs/building.md index 932081f..b7bd0ab 100644 --- a/source/docs/building.md +++ b/source/docs/building.md @@ -21,7 +21,7 @@ This document will explain how to install, test, and run Nimbus on your local ma ``` - on Linux ```bash - sudo apt-get install rocksdb # or your own Linux distribution's equivalent + sudo apt-get install librocksdb-dev rocksdb # or your own Linux distribution's equivalent curl https://nim-lang.org/choosenim/init.sh -sSf | sh ``` diff --git a/themes/navy/source/js/fetch_blog_posts.js b/themes/navy/source/js/fetch_blog_posts.js index 4195494..7a99536 100644 --- a/themes/navy/source/js/fetch_blog_posts.js +++ b/themes/navy/source/js/fetch_blog_posts.js @@ -1,5 +1,5 @@ $(document).ready(function () { - let url = 'https://our.status.im/ghost/api/v0.1/posts/?limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba'; + let url = 'https://our.status.im/ghost/api/v0.1/posts/?filter=tag:nimbus&order=published_at%20asc&limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba'; var urlBase = [location.protocol, '//', location.host, location.pathname].join(''); $.ajax({