Compare commits

..

2 Commits

2 changed files with 3 additions and 3 deletions

View File

@ -9,8 +9,8 @@
<link rel="icon" href="/ad_pubfiles_pub.d/images/favicon.svg"> <link rel="icon" href="/ad_pubfiles_pub.d/images/favicon.svg">
</head> </head>
<body> <body>
<p>${page.all?'private mode':'public mode'}</p> ${page.all?'<p>private mode</p>':''}
${page.indexPage ? '' : '<a href="/">↖index</a>'} ${page.indexPage ? '' : '<p><a href="/">↖index</a></p>'}
${page._body} ${page._body}
</html> </html>
` `

View File

@ -6,6 +6,6 @@
<h1>${page.title}</h1> <h1>${page.title}</h1>
<p><span>${page.fnd.addr} ${page.fnd.tags || ''}</span></p> <p><span>${page.fnd.addr} ${page.fnd.tags || ''}</span></p>
${page._body} ${page._body}
<a href="/">↖index</a> <p><a href="/">↖index</a></p>
` `
}) })