Merge pull request #5 from status-im/develop
Removed stub links and fixed JS for fetching posts
This commit is contained in:
commit
85ff631c1e
|
@ -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
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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({
|
||||
|
|
Loading…
Reference in New Issue