GitXplorerGitXplorer
y

yask123.github.io

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
6b36f59e8663fa055d1ae9556724fc02f2f49fb6

smarted guy in the room

yyask123 committed 4 years ago
Unverified
dec60a8ba7fd073a5953047ffa182de19ba8d588

change bio

yyask123 committed 4 years ago
Unverified
d9ba5ada09b98cf70351935e9e10e2f352f32bf1

update intro bio;

yyask123 committed 4 years ago
Unverified
252be35a1b73969a1a16834ac5b62c6b5f6f24e5

add profile picture

yyask123 committed 4 years ago
Unverified
3ce5e175248d401bba3c3540ec74dec62223a450

another commit

yyask123 committed 4 years ago
Unverified
cfecda2673713dcad66ba47ca9f730744f3b8be7

first commit

yyask123 committed 4 years ago

README

The README file for this repository.

Next.js blogging template for Netlify

Netlify Status MADE BY Next.js

Next.js blogging template for Netlify is a boilerplate for building blogs with only Netlify stacks.

There are some boilerplate or tutorials for the combination of Next.js and Netlify on GitHub. These resources have documentation and good tutorial to get started Next.js and Netlify quickly, but they are too simple to build blogs with standard features like tagging.

Next.js blogging template for Netlify has already implemented these standard features for building blogs with only using Next.js and Netlify stacks.

Demo

Deploy on your environment by clicking here:

Deploy to Netlify

Or access the following demo site:

Next.js blog template for Netlify

Features

  • Tagging: organizes content by tags
  • Author: displays author names who write a post
  • Pagination: limits the number of posts per page
  • CMS: built with CMS to allow editors modifying content with the quickest way
  • SEO optimized: built-in metadata like JSON-LD
  • Shortcode: extends content writing with React component like WordPress shortcodes

Dependencies

Getting started

To create your blog using the template, open your terminal, cd into the directory you'd like to create the app in, and run the following command:

npx create-next-app your-blog --example "https://github.com/wutali/nextjs-netlify-blog-template"

After that, set up your project as following the Netlify blog:

A Step-by-Step Guide: Deploying on Netlify

Customization

This template is just a template and a boilerplate in which users can customize anything after the project was cloned and started. The following instructions introduce common customization points like adding new metadata or applying a new design theme.

Styling pages by a customized theme

All source codes related to the blog are under components, pages, and layouts directory. You can modify it freely if you want to apply your design theme. All components use styled-jsx and css-modules to define their styles, but you can choose any styling libraries for designing your theme.

The directory tree containing the blog source code are described below:

meta: yaml files defining metadata like authors or tags
public: images, favicons and other static assets
src
├── assets: other assets using inside of components
├── components: pieces of components consisting of pages
├── layouts: layout components for each post page
├── lib: project libraries like data fetching or pagination
└── pages: page components managing by Next.js

Organizing content by categories

The category metadata that associates with content have the same relationship with the authors' one. Then reference these implementations for adding new metadata:

You understood they have four steps to add the category metadata on your project after you read the above source codes:

  1. Define the category metadata on the above Netlify config file
  2. Create an empty file named with categories.yml under meta directory
  3. Create a new module for fetching category metadata
  4. Display the category metadata on layouts or other components you want

It is all you have to do. After that, you can access Netlify CMS and create new categories at any time.

Locale settings for Netlify CMS

Modify config.yml and index.html under public/admin directory as following instructions:

Netlify CMS - Configuration Options #Locale

References

License

MIT