A clean, minimal Ghost theme with archive filtering and search functionality.
- Clean single-column layout
- Archive dropdown in header for filtering posts by year
- Search functionality in header
- Fully responsive design
- Modern, minimal aesthetic
- Fast and lightweight
-
Download the theme files
cd /path/to/your/ghost/content/themes/ git clone <your-repo-url> aurio # Or download and extract the ZIP file
-
Restart Ghost
ghost restart
-
Activate the theme
- Go to your Ghost admin panel:
https://notes.aurio.no/ghost - Navigate to Settings → Design
- Click Change theme and activate Aurio
- Go to your Ghost admin panel:
aurio/
├── assets/
│ ├── css/
│ │ └── style.css # Main stylesheet
│ └── js/
│ └── archive.js # Archive dropdown & search functionality
├── partials/
│ ├── header.hbs # Site header with archive & search
│ ├── sidebar.hbs # Sidebar (for social links if configured)
│ └── footer.hbs # Site footer
├── default.hbs # Base template
├── index.hbs # Home page (post list)
├── post.hbs # Single post template
├── page.hbs # Static page template
└── package.json # Theme configuration
Edit assets/css/style.css to customize colors:
/* Primary color */
a { color: #0066cc; }
/* Hover color */
a:hover { color: #004080; }
/* Background */
body { background-color: #f8f9fa; }The partials/header.hbs includes:
- Logo or site title
- Site title text next to logo
- Search box
- Archive dropdown
- Navigation menu
The theme uses a centered single-column layout. Adjust the width in assets/css/style.css:
.site-wrapper {
max-width: 900px;
}The header includes a dropdown that displays all posts grouped by year with post counts. The JavaScript automatically:
- Fetches published posts
- Groups them by year
- Displays years in dropdown with post counts
- Filters posts on the home page when a year is selected
- Updates URL with year parameter for direct linking
The search box in the header provides real-time filtering of posts based on title and excerpt content.
- Ghost 5.0 or higher
- Modern web browser with JavaScript enabled
For issues or questions, please visit the GitHub repository.
To work on this theme locally:
- Clone the repository into your Ghost themes folder
- Make your changes
- Restart Ghost to see updates
- For CSS/JS changes, clear your browser cache
Developed for notes.aurio.no
