Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

bob983/hexo-multiauthor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multi author support for Hexo

Build Status Coverage Status Code Climate npm version

Description

Tested wit Hexo 3.x

This plugin adds support for multiple authors. You can add author to a post by adding authorId to frontmatter. You can see it in action at http://blog.cngroup.dk. It uses modified twbootstrap template.

title: Sample post
date: 2014/01/10 12:00
tags: [hexo]
authorId: LSK

At this point, this plugin expects a file source/_authors/LSK.yml exists. Following content is supported:

name: Luke Skywalker
about: Pilot

When the public content is generated, plugin will group posts by authors and generate pages for each author. In order to reach the author page, you need to tweak the templates.

layout/partial/post/title.ejs:

<% if (item.link){ %>
  <% if (item.title){ %>
    <h1 class="title"><a href="<%- item.link %>" target="_blank"><%= item.title %></a></h1>
  <% } else { %>
    <h1 class="title"><a href="<%- item.link %>" target="_blank"><%= item.link %></a></h1>
  <% } %>
<% } else { %>
  <% if (index){ %>
    <h1 class="title"><a href="<%- config.root %><%- item.path %>"><%= item.title %></a></h1>
  <% } else { %>
    <h1 class="title"><%= item.title %></h1>
  <% } %>
   <% if (author && item.author) { %>
    <a href="<%- config.root %><%- 'author/' + item.authorId %>"><h4><%= item.author.name %></h4></a>
   <% } %>
<% } %> 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages