fix root html template logout path
authorJustin Wind <justin.wind+git@gmail.com>
Tue, 22 Feb 2022 22:34:08 +0000 (14:34 -0800)
committerJustin Wind <justin.wind+git@gmail.com>
Tue, 22 Feb 2022 22:34:08 +0000 (14:34 -0800)
src/template/root-html.js

index 14b9d4773c7e8dfcb5e5659a1b6b2cf6ef471b73..6771fdd91b8103e6b667d4eef52daccbf8559b31 100644 (file)
@@ -3,7 +3,7 @@
 const th = require('./template-helper');
 
 function hAppSection(pageTitle, logoUrl) {
-  return `      <section class="h-app hidden">
+  return `      <section hidden class="h-app">
         <h2>h-app Information for IndieAuth Logins</h2>
         <img src="${logoUrl}" class="u-logo">
         <a href="" class="u-url p-name">${pageTitle}</a>
@@ -166,5 +166,5 @@ module.exports = (ctx, options) => {
     contactSection(contactHTML),
     hAppSection(pageTitle, options.manager.logoUrl),
   ];
-  return th.htmlPage(1, ctx, htmlOptions, content);
+  return th.htmlPage(0, ctx, htmlOptions, content);
 };
\ No newline at end of file