mirror of
https://github.com/svemagie/blog-eleventy-indiekit.git
synced 2026-04-02 16:44:56 +02:00
Strip personal data from templates so the theme ships clean for any deployer. Collection pages now use generatePageOnEmptyData so empty post types show encouraging placeholders instead of 404s. Navigation is conditional on enabled post types and installed plugins. Sidebar widgets split into individual components with plugin-aware visibility. Slashes page explains required plugins for root-level page creation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
498 B
JavaScript
22 lines
498 B
JavaScript
/**
|
|
* CV Data — Empty defaults.
|
|
*
|
|
* When the indiekit-endpoint-cv plugin is installed, it serves CV data
|
|
* via its API endpoint and the homepage plugin renders it.
|
|
*
|
|
* Without the plugin, users can edit this file directly:
|
|
* - Add entries to the `experience` array
|
|
* - Add entries to the `projects` array
|
|
* - Modify the `skills` object
|
|
*/
|
|
|
|
export default {
|
|
lastUpdated: null,
|
|
experience: [],
|
|
projects: [],
|
|
skills: {},
|
|
languages: [],
|
|
education: [],
|
|
interests: [],
|
|
};
|