summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/responders.js1
-rw-r--r--src/templates/layout.html1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/responders.js b/src/responders.js
index eeec42a..19f8489 100644
--- a/src/responders.js
+++ b/src/responders.js
@@ -66,6 +66,7 @@ function layout(config, pageTitle, pageElement) {
   return hyperfast(templates.layout, {
     title: title(config.author.name, pageTitle),
     ".h-card .p-name": config.author.name,
+    ".h-card .p-note": config.site.description,
     ".h-card .u-photo": {
       alt: config.author.name,
       src: config.author.photo
diff --git a/src/templates/layout.html b/src/templates/layout.html
index 6035209..284e939 100644
--- a/src/templates/layout.html
+++ b/src/templates/layout.html
@@ -11,6 +11,7 @@
         <img class="u-photo" alt="" src="" />
         <h1 class="p-name">hello world</h1>
       </a>
+      <p class="p-note">site description</p>
       <nav>
         <ul>
           <li><a href="/">test link</a></li>