Install the theme
Install Paper Theme via everkm-publish and set it in your site's everkm.yaml.
Content structure
your-site/
├── _home.md # Hero content for virtual homepage
├── _about.md # About page (virtual template)
└── posts/
└── *.md # Blog posts
Featured posts
Add the featured tag to surface posts on the homepage:
tags:
- featured
Custom header links
Configure header_nav in __everkm/everkm.yaml to add external or in-site links to the top nav. They appear after About by default; set at_before: true to place them before the posts list.
config:
header_nav:
- title: Everkm
url: https://everkm.com
at_before: true
You can also set about to an absolute URL so the header About item opens an external page. Full field reference: Theme Configuration.
Typography samples
Blockquotes use a left accent border and reduced opacity, matching Astro Paper.
Inline code uses a muted background. Fenced blocks:
| Feature | Status |
|---|---|
| Dark mode | ✅ |
| View Transitions | ✅ |
| Algolia search | ✅ (with algolia config) |
- Unordered list item
- Another item with bold and italic
- Ordered list
- Second step
End of typography demo.