A simple blog engine front-end.
Simple starter code for a blog, pulling from https://jsonplaceholder.typicode.com
Try to make a blog web-app that does the following:
- Has a HomePage with a list of all the blog posts with:
- Title
- Author
- Has a Post specific page with:
- Post title
- Post body
- Author Name
- Author Email
- Anchor link that when clicked update the existing page with all the post's comments.
- Has an Author specific page with:
- Author name
- Author email
- Author address
- Link to a page with all the author's blog posts.
Take a look at the detailed documentation here:
Here are some of the routes available:
- https://jsonplaceholder.typicode.com/posts
- https://jsonplaceholder.typicode.com/comments
- https://jsonplaceholder.typicode.com/albums
- https://jsonplaceholder.typicode.com/photos
- https://jsonplaceholder.typicode.com/todos
- https://jsonplaceholder.typicode.com/users
- https://jsonplaceholder.typicode.com/users/1/posts
- https://jsonplaceholder.typicode.com/users/1/users
- https://jsonplaceholder.typicode.com/posts/1/comments
- https://jsonplaceholder.typicode.com/comments?postId=1
- https://jsonplaceholder.typicode.com/posts?userId=1