Compare commits

..

No commits in common. "5ef4dda34ec102e6f911888072bd8e1191af59ee" and "458dc2dafe7e4f2963156c25a5137a20ca25320d" have entirely different histories.

3 changed files with 4 additions and 12 deletions

View file

@ -59,12 +59,12 @@ All commands are run from the root of the project, from a terminal:
- [x] Initial project setup
- [x] Basic theme implementation
- [x] Better full-text search without `Fuse.js`
- [x] A mode to make the site 0 javascript
- [x] Multiple authors via YAML
- [ ] A mode to make the site 0 javascript
- [ ] Multiple authors via YAML
- [ ] i18n support
- [ ] Integrate with Fediverse w/ activityPub
- [ ] Plain text version when visiting the site via `curl`
- [x] Better support for printing version
- [ ] Better support for printing version
- [ ] Add support for more comment engines
- [ ] Add support for umami statics
- [ ] Improve documentation

View file

@ -52,7 +52,7 @@ const cover = customFeaturedImage || matchedImage_src?.src || `/post/${slug}/fea
<Content />
</div>
<div class="extra-post" style="margin-top: 2rem; border-top: 1px solid var(--border-color); padding-top: 1rem;">
<div style="margin-top: 2rem; border-top: 1px solid var(--border-color); padding-top: 1rem;">
<ReplyViaEmail title={entry.data.title} email={authorInfo.email} />
<br>
<a href="/blog">&larr; Back to posts</a>

View file

@ -290,12 +290,4 @@ div.content {
.content-box {
padding: 1rem;
}
}
/* Printing */
@media print {
/* Hide elements not needed for print */
nav.nav,.search-container,footer,div.extra-post {
display: none;
}
}