Add static string to title in the Digital Garden

Add a Javascript file to your Git repository at src/site/_data/metadata.js.

module.exports = {
  title: "Björn Stierand - "
};

Modify the Nunjucks template at src/site/_includes/layouts/note.njk to include the metadata.title element.

[..]

<!DOCTYPE html>
<html lang="{{ meta.mainLanguage }}">
  <head>
    <title>{% if title %}{{ metadata.title }}{{ title }}{% else %}{{ metadata.title }}{{ page.fileSlug }}{% endif %}</title>

[..]