/** * -------------------------------------------------------------------- * @docmd/template-summer * A bright, hopeful, summer-feel layout for docmd 0.8.7+. * * • Top: logo + (new) centred search bar + menubar at the BOTTOM of the logo bar * • Side: clean section list with icons * • Main: airy content with right-rail TOC * • Below: centred "last updated + edit" footer * * Implements the `template` plugin capability. Partial override set * intentionally small — the resolver will fall back to the default * for any slot not listed here. * * File-system layout: this package ships `.ejs`, `.css`, and `.js` files * alongside the compiled JS. Path resolution uses `import.meta.url` * (URL-relative) so the same code works in dev (`src/index.ts`) and * after `tsc` (`dist/index.js`). The build step copies `templates/` and * `assets/` into `dist/` so the URL math is identical in both places. * -------------------------------------------------------------------- */ import type { PluginDescriptor, PluginModule, TemplateHook, TemplateAssetHook } from '@docmd/api'; export declare const plugin: PluginDescriptor; declare const summerTemplate: PluginModule & { templates: TemplateHook[]; templateAssets: TemplateAssetHook[]; }; export default summerTemplate;