Compare commits
3 commits
458dc2dafe
...
5ef4dda34e
Author | SHA1 | Date | |
---|---|---|---|
|
5ef4dda34e | ||
|
ea3d8accc3 | ||
|
85fceee138 |
3 changed files with 12 additions and 4 deletions
|
@ -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`
|
||||
- [ ] A mode to make the site 0 javascript
|
||||
- [ ] Multiple authors via YAML
|
||||
- [x] A mode to make the site 0 javascript
|
||||
- [x] Multiple authors via YAML
|
||||
- [ ] i18n support
|
||||
- [ ] Integrate with Fediverse w/ activityPub
|
||||
- [ ] Plain text version when visiting the site via `curl`
|
||||
- [ ] Better support for printing version
|
||||
- [x] Better support for printing version
|
||||
- [ ] Add support for more comment engines
|
||||
- [ ] Add support for umami statics
|
||||
- [ ] Improve documentation
|
||||
|
|
|
@ -52,7 +52,7 @@ const cover = customFeaturedImage || matchedImage_src?.src || `/post/${slug}/fea
|
|||
<Content />
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 2rem; border-top: 1px solid var(--border-color); padding-top: 1rem;">
|
||||
<div class="extra-post" 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">← Back to posts</a>
|
||||
|
|
|
@ -290,4 +290,12 @@ 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue