{"id":24085848,"url":"https://github.com/philwareham/textpattern-hive-framework","last_synced_at":"2025-05-02T23:18:46.847Z","repository":{"id":36977421,"uuid":"296048125","full_name":"philwareham/textpattern-hive-framework","owner":"philwareham","description":"A collection of Textpattern CMS website theme modules using Hive Framework as a scaffold.","archived":false,"fork":false,"pushed_at":"2025-04-28T05:03:06.000Z","size":7668,"stargazers_count":4,"open_issues_count":3,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-28T06:22:11.554Z","etag":null,"topics":["textpattern-theme"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/philwareham.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-09-16T13:54:52.000Z","updated_at":"2025-03-18T10:09:10.000Z","dependencies_parsed_at":"2023-10-12T18:11:19.209Z","dependency_job_id":"870a8694-9fc4-467e-a13e-be529cb8379f","html_url":"https://github.com/philwareham/textpattern-hive-framework","commit_stats":{"total_commits":529,"total_committers":2,"mean_commits":264.5,"dds":0.4026465028355387,"last_synced_commit":"0d6d967764bf4d5cba104012e863733fe37a1745"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philwareham%2Ftextpattern-hive-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philwareham%2Ftextpattern-hive-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philwareham%2Ftextpattern-hive-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philwareham%2Ftextpattern-hive-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/philwareham","download_url":"https://codeload.github.com/philwareham/textpattern-hive-framework/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251262052,"owners_count":21561034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["textpattern-theme"],"created_at":"2025-01-10T01:54:43.564Z","updated_at":"2025-05-01T16:05:58.603Z","avatar_url":"https://github.com/philwareham.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hive website theme framework for Textpattern CMS\n\nA collection of Textpattern CMS website theme modules using [Hive Framework](https://github.com/philwareham/hive-framework) as a scaffold. Requires Textpattern CMS version 4.8.5 or higher.\n\n**Currently in development - not ready for production use yet!**\n\n## Supported web browsers\n\n* Chrome, Edge, Firefox, Safari and Opera the last two recent stable releases.\n* Firefox ESR latest major point release.\n\nOlder versions of the above and other browsers may work, but these are the ones we verify.\n\n## Instructions/installation/help/etc\n\nTODO\n\n## Image categories\n\nFor some of the images modules, you will need to create image categories within Textpattern and assign to the images you want to appear in the module. As follows:\n\n1. `gallery` category, for images that are to appear in `gallery--xxx` image modules types.\n2. `logo-wall` category, for images that are to appear in `logo-wall--xxx` image modules types.\n\n## Shortcodes\n\nTextpattern 4.7 introduced support for user-definable `\u003ctxp:output_form /\u003e` attributes (and also the short tags syntax `\u003ctxp::...\u003e`), allowing for 'shortcodes' within articles and templates (**note:** remember to also use `notextile.` when these tags are used within Textile content).\n\nThis site uses the following tags:\n\n### Image\n\nTo create a HTML5 image snippet:\n\n    \u003ctxp::media_image id=\"\" class=\"\" dark-option=\"\" set-width=\"\" set-height=\"\" /\u003e\n\n`id` accepts either a single image ID, or comma separated image IDs if you want multiple images.\n\n`class` is optional, for if you need to provide specific CSS class names for the image(s).\n\n`dark-option` is optional (for a single image ID only), for if you need to provide an alternative image when website is in Dark Mode.\n\n`set-width` and `set-height` are optional (for a single image ID), for if you need to provide explicit maximum dimensions (in pixels) for the image(s). Otherwise (when not set), images default to being fully responsive, expanding to fill their container, or up to 100% of their size—whichever is reached first (unless a class of `overstetch` is applied, in which case an image can expand beyond 100% if the container allows).\n\nFor example, comma separated image IDs:\n\n    \u003ctxp::media_image id=\"41, 42, 50\" /\u003e\n\nFor example, image with an alternative dark theme version and a set width and height in pixels:\n\n    \u003ctxp::media_image id=\"51\" dark-option=\"52\" set-width=\"400\" set-height=\"125\" /\u003e\n\n### Video\n\nTo create a HTML5 video snippet:\n\n    \u003ctxp::media_video width=\"\" height=\"\" mp4-url=\"\" webm-url=\"\" poster-url=\"\" name=\"\" description=\"\" duration-seconds=\"\"/\u003e\n\n`poster-url`, `name`, `description` and `duration-seconds` are optional, but should be provided if possible to provide valid Schema.org microdata. If not used, remove those attributes from your shortcode.\n\nFor example:\n\n    \u003ctxp::media_video width=\"640\" height=\"480\" mp4-url=\"/video/video1.mp4\" webm-url=\"/video/video1.webm\" poster-url=\"/video/video1-poster.png\" name=\"Cat video\" description=\"My great video of cats.\" duration-seconds=\"20\" /\u003e\n\n### File\n\nTo create a file download snippet:\n\n    \u003ctxp::media_file category=\"\" filename=\"\" primary-button=\"\" large-button=\"\" /\u003e\n\n`category` and `filename` are interchangeable (use one or the other, where appropriate)—if both are provided then `category` is used in preference and `filename` is ignored.\n\n`primary-button` is optional. If set to `1`, this will render a more prominent button.\n\n`large-button` is optional. If set to `1`, this will render a larger style button.\n\nFor example:\n\n    \u003ctxp::media_file category=\"current-release-zip\" primary-button=\"1\" large-button=\"1\" /\u003e\n\n### Links\n\nTo create a link or list of links:\n\n    \u003ctxp::links id=\"\" category=\"\" class=\"\" rel=\"\" target=\"\" referrerpolicy=\"\" /\u003e\n\n`id` accepts either a single link ID, or comma separated link IDs if you want multiple links listed.\n\n`id` and `category` are interchangeable (use one or the other, where appropriate)—if both are provided then `id` is used in preference and `category` is ignored.\n\n`class` is optional, for if you need to provide specific CSS class names for the link anchors(s). For example, `class=\"button\"` would render any links in the style of a button.\n\n`rel` is optional, for if you need to provide a [rel attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel) for the link anchors(s). For example, `rel=\"external\"`.\n\n`target` is optional, for if you need to provide a [target attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target) for the link anchors(s). For example, `target=\"_blank\"`.\n\n`referrerpolicy` is optional, for if you need to provide a [referrerpolicy attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy) for the link anchors(s). For example, `referrerpolicy=\"no-referrer\"`.\n\nFor example:\n\n    \u003ctxp::links id=\"1, 3, 11, 12\" class=\"button button-primary\" rel=\"external nofollow\" /\u003e\n\n## License\n\nTextpattern templates licensed under GPLv2 license. Hive Framework licensed under MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilwareham%2Ftextpattern-hive-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphilwareham%2Ftextpattern-hive-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilwareham%2Ftextpattern-hive-framework/lists"}