14 lines
479 B
JavaScript
14 lines
479 B
JavaScript
import { wrap } from '../terminal.js';
|
|
|
|
export const name = 'about';
|
|
export const title = 'About';
|
|
export const order = 10;
|
|
export const aliases = ['me'];
|
|
export const description = 'A short introduction';
|
|
|
|
// Edit this function to customize your About page.
|
|
export function render({ config }) {
|
|
const persona = config.persona || {};
|
|
return wrap((persona.about || 'Tell visitors who you are.') + '\n\n' + (persona.bio || 'This is your space on the internet.')).join('\n');
|
|
}
|