all repos — archive/homestead @ 248c74916e22f397ff95944ac2596b9e40b302e5

My future indieweb platform

feat: Add photo to marked-up h-chard
Alan Pearce alan@alanpearce.eu
Sat, 01 Jul 2017 11:00:25 +0200
commit

248c74916e22f397ff95944ac2596b9e40b302e5

parent

e5c2da0871ecbc92e2638dcf7dd4d15f12ddcff0

M config/default.tomlconfig/default.toml
@@ -2,7 +2,10 @@ [server] port = 3000
 
 [site]
-author = "John Doe"
+
+[site.author]
+name = "John Doe"
+photo = "/static/johndoe.jpg"
 
 [posts]
 folder = "./posts"
M src/responders.jssrc/responders.js
@@ -76,11 +76,13 @@ ctx.body = prependDoctype(       templates
         .layout()
         .pipe(rheo())
+        .attribute(".u-photo", "alt", config.site.author.name)
+        .attribute(".u-photo", "src", config.site.author.photo)
         .outer("main", showPage("home"))
         .inner(".posts", function(postsTemplate) {
           return postsStream.pipe(postsTemplate.map(renderPostListItem(ctx)));
         })
-        .pipe(setTitle(config.site.author))
+        .pipe(setTitle(config.site.author.name))
         .render()
     );
   },
@@ -94,7 +96,7 @@ .pipe(rheo())         .outer("main", showPage("post"))
         .inner("article h1", rheo(post.data.get("title")))
         .outer("article main", rheo(post.body))
-        .pipe(setTitle(config.site.author, post.data.get("title")))
+        .pipe(setTitle(config.site.author.name, post.data.get("title")))
         .render()
     );
   },
@@ -106,11 +108,11 @@ templates         .layout()
         .pipe(rheo())
         .outer("main", showPage("taxon"))
-        .inner("h1", rheo(config.site.author))
+        .inner("h1", rheo(config.site.author.name))
         .inner(".posts", function(postsTemplate) {
           return taxonItems.pipe(postsTemplate.map(renderPostListItem(ctx)));
         })
-        .pipe(setTitle(config.site.author))
+        .pipe(setTitle(config.site.author.name))
         .render()
     );
   }
M src/templates/layout.htmlsrc/templates/layout.html
@@ -6,7 +6,10 @@ <title></title>   </head>
   <body>
     <header class="h-card">
-      <h1 class="p-name">hello world</h1>
+      <a class="u-url" href="/">
+        <img class="u-photo" alt="" src="" />
+        <h1 class="p-name">hello world</h1>
+      </a>
     </header>
     <main></main>
   </body>
M test/app.test.jstest/app.test.js
@@ -46,7 +46,9 @@ mf.getAsync(options).then(data => {           t.deepEqual(data.items, [
             {
               properties: {
-                name: ["John Doe"]
+                name: ["John Doe"],
+                url: ["/"],
+                photo: ["/static/johndoe.jpg"]
               },
               type: ["h-card"]
             }
A test/testsite/static/johndoe.jpg

Not showing binary file.