Footer

Site Start Time

By default NexT shows current year in the footer like © 2018. You can configure it to show the time gap like © 2015 - 2018 by editing values in since section in theme config file.

next/_config.yml
1
2
footer:
since: 2015

By default NexT shows black user icon without animation between year and copyright information in the footer. You can configure it by editing values in icon section in theme config file.

The name of footer icon can be founded in Font Awesome site. heart is recommended.

next/_config.yml
1
2
3
footer:
icon:
name: user

Set up animated of footer icon by changing the value of icon.animated:

  • true → Icon will be animated.
  • false → Icon will not be animated.
next/_config.yml
1
2
3
footer:
icon:
animated: false

Set up color of footer icon by changing the value of icon.color. Please use Hex Code, and red (#ff0000) is recommended for heart icon.

next/_config.yml
1
2
3
footer:
icon:
color: “#808080”

By default NexT shows the name of author from site config file. You can configure it by editing values in copyright section in theme config file.

next/_config.yml
1
2
footer:
copyright:

Site Platform Information

By default NexT shows Hexo and Theme & scheme information like Powered by Hexo v3.7.1 | Theme — NexT.Muse v6.3.0. You can configure it by editing values in powered and theme section in theme config file.


  • true → Displaying Powered by Hexo Information.

  • false → Not Displaying Powered by Hexo Information.


next/_config.yml
1
2
3
footer:
powered:
enable: true

  • true → Displaying Hexo Version Information.

  • false → Not Displaying Hexo Version Information.


next/_config.yml
1
2
3
footer:
powered:
version: true

  • true → Displaying Theme & Scheme Information.

  • false → Not Displaying Theme & Scheme Information.


next/_config.yml
1
2
3
footer:
theme:
enable: true

  • true → Displaying Theme NexT Version Information.

  • false → Not Displaying Theme NexT Version Information.


next/_config.yml
1
2
3
footer:
theme:
version: true

Adding Custom Information

If you want, any custom text can be defined within footer in custom_text section in theme config file like:

next/_config.yml
1
2
footer:
custom_text: Hosted by <a target="_blank" rel="external nofollow" href="https://pages.coding.me"><b>Coding Pages</b></a>