ori-templates: put index links in <p>s to center

This commit is contained in:
Hans Fast 2026-03-25 16:20:33 +01:00
parent 7a804c0204
commit 563f10e31b
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
</head>
<body>
<p>${page.all?'private mode':'public mode'}</p>
${page.indexPage ? '' : '<a href="/">↖index</a>'}
${page.indexPage ? '' : '<p><a href="/">↖index</a></p>'}
${page._body}
</html>
`

View File

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