With a view to be a HIPPIE
- Liquid 100%
| partials | ||
| .gitignore | ||
| app.liquid | ||
| default.liquid | ||
| full.liquid | ||
| LICENSE.md | ||
| page.liquid | ||
| README.md | ||
| simple.liquid | ||
| status.liquid | ||
| world.liquid | ||
HIPPIE views
Collection of templates, mainly for the use with HIPPIE, written in different languages like Liquid or Nunjucks.
Content
The templates use the global data key site.
It can have the following content:
{
"type": "object",
"title": "HIPPIE site data",
"description": "Global site data for HIPPIE",
"properties": {
"title": {
"type": "object",
"description": "Title configuration with prefix and suffix",
"properties": {
"prefix": {
"type": "string",
"description": "Text to prepend to the title"
},
"suffix": {
"type": "string",
"description": "Text to append to the title"
}
},
"required": ["prefix", "suffix"]
},
"favicons": {
"type": "array",
"description": "Array of favicon URLs or data URIs",
"items": {
"type": "string",
"description": "Favicon URL or base64-encoded data URI"
}
},
"styles": {
"type": "array",
"description": "Array of stylesheet definitions",
"items": {
"type": "object",
"properties": {
"href": {
"type": "string",
"description": "Path to the stylesheet"
},
"media": {
"type": "string",
"description": "Media query (e.g., 'all', 'screen', 'print')"
}
},
"required": ["href", "media"]
}
}
},
"required": ["title", "favicons", "styles"]
}