- Created a new SCSS file for webmention styles to enhance the appearance of comments and reactions.
- Added HTML partial for share buttons including Twitter, Facebook, LinkedIn, Reddit, and WhatsApp.
- Updated the main SCSS file to include webmention styles and removed the old CSS file for webmentions.
- Updated asset integrity for the compiled CSS file.
Adds a script to automatically add syndication links to posts' frontmatter based on RSS feeds from Mastodon, Bluesky and Medium.
It also updates the Makefile to include the new script, the `.gitignore` file to ignore the log file, and the syndication partial to correctly render syndication links.
It uses the source URL inside the content to find the local file.
- Created `micro.html` for handling reply, repost, like, bookmark, and RSVP links.
- Added `postCard.html` for rendering individual post items with icons based on post type.
- Introduced `search-form.html` for search input and `search-index.html` for displaying search results.
- Implemented `series.html` to show related posts in a series format.
- Added `socialIcons.html` for rendering social media links.
- Created `syndication.html` to display syndication links for posts.
- Introduced `tags.html` for displaying tags and categories associated with posts.
- Added `webmention.html` for integrating webmention functionality.
- Updated SASS files for styling adjustments.
Implements Atom feed generation for blog posts, photos, and the main site feed.
This allows users to subscribe to content using Atom-compatible feed readers.
Includes an XSLT stylesheet for rendering Atom feeds in a human-readable format in browsers.
Adds support for displaying microposts (e.g. Mastodon toots) on the home
page. This includes adding a new "secondarysections" parameter to the
configuration, updating the index layout to display these posts, and
adding a default comment section to the micro archetype.
- Integrated Lunr.js library for indexing and searching content.
- Created search.js to handle search queries and display results dynamically.
- Implemented displayResults function to format and show search results.
- Enhanced search functionality with boosted fields for title and content.
- Added search.min.js for optimized production use.