{"id":30030258,"url":"https://github.com/signalfire/wp-alpha","last_synced_at":"2026-04-29T20:31:39.157Z","repository":{"id":307870074,"uuid":"1030941705","full_name":"signalfire/wp-alpha","owner":"signalfire","description":"Basic Vite theme for WordPress using Tailwind 4","archived":false,"fork":false,"pushed_at":"2025-08-02T17:09:07.000Z","size":153,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-02T19:33:06.364Z","etag":null,"topics":["tailwind","tailwind-css","tailwindcss","vite","wordpress","wordpress-theme"],"latest_commit_sha":null,"homepage":"https://signalfire.co.uk","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/signalfire.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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":"2025-08-02T16:58:52.000Z","updated_at":"2025-08-02T17:10:32.000Z","dependencies_parsed_at":"2025-08-02T19:33:10.969Z","dependency_job_id":"980e15f2-811c-40f4-aa8e-2288001599c9","html_url":"https://github.com/signalfire/wp-alpha","commit_stats":null,"previous_names":["signalfire/wp-alpha"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/signalfire/wp-alpha","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/signalfire%2Fwp-alpha","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/signalfire%2Fwp-alpha/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/signalfire%2Fwp-alpha/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/signalfire%2Fwp-alpha/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/signalfire","download_url":"https://codeload.github.com/signalfire/wp-alpha/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/signalfire%2Fwp-alpha/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32443306,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T20:22:27.477Z","status":"ssl_error","status_checked_at":"2026-04-29T20:22:26.507Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["tailwind","tailwind-css","tailwindcss","vite","wordpress","wordpress-theme"],"created_at":"2025-08-06T19:01:19.011Z","updated_at":"2026-04-29T20:31:39.121Z","avatar_url":"https://github.com/signalfire.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Signalfire WP Alpha WordPress Theme\n\nA modern, minimal WordPress theme scaffold built with **Tailwind CSS v4** and **Vite** for lightning-fast development.\n\n## Features\n\n- ⚡ **Vite** for fast builds and HMR (Hot Module Replacement)\n- 🎨 **Tailwind CSS v4** with JIT mode for optimal performance\n- 📱 **Responsive** design with mobile-first approach\n- ♿ **Accessible** markup and navigation\n- 🧩 **Modular** JavaScript components with ES Modules\n- 🔧 **Developer-friendly** with ESLint, Prettier, and EditorConfig\n- 🚀 **Performance-focused** with optimized asset loading\n\n## Quick Start\n\n### Prerequisites\n\n- Node.js 18+ and npm/yarn\n- WordPress 6.0+\n- PHP 8.0+\n\n### Installation\n\n1. **Clone or download** this theme to your WordPress themes directory:\n   ```bash\n   cd wp-content/themes/\n   git clone [repository-url] signalfire-wp-alpha\n   ```\n\n2. **Install dependencies**:\n   ```bash\n   cd signalfire-wp-alpha\n   npm install\n   ```\n\n3. **Start development server**:\n   ```bash\n   npm run dev\n   ```\n\n4. **Activate the theme** in WordPress admin dashboard\n\n5. **Build for production**:\n   ```bash\n   npm run build\n   ```\n\n## Development Workflow\n\n### Development Mode\n```bash\nnpm run dev\n```\n- Starts Vite dev server on `http://localhost:5173`\n- Enables HMR for instant updates\n- Automatically compiles Tailwind CSS\n\n### Production Build\n```bash\nnpm run build\n```\n- Builds optimized assets to `/dist` directory\n- Minifies CSS and JavaScript\n- Generates manifest.json for asset versioning\n\n### Code Quality\n```bash\nnpm run lint    # Run ESLint\nnpm run format  # Run Prettier\n```\n\n## File Structure\n\n```\nsignalfire-wp-alpha/\n├── theme-src/           # Source files (development)\n│   ├── main.js         # Main entry point\n│   ├── css/\n│   │   └── main.css    # Tailwind CSS entry\n│   ├── js/\n│   │   ├── theme.js    # Main theme JavaScript\n│   │   └── modules/    # Modular components\n│   └── components/     # Reusable JS components\n├── dist/               # Built assets (production)\n├── *.php              # WordPress template files\n├── vite.config.js     # Vite configuration\n├── tailwind.config.js # Tailwind configuration\n└── package.json       # Dependencies and scripts\n```\n\n## Customization\n\n### Tailwind CSS\n- Edit `tailwind.config.js` to customize design tokens\n- Add custom components in `theme-src/css/main.css`\n- Use `@layer` directives for proper CSS organization\n\n### JavaScript\n- Add new modules in `theme-src/js/modules/`\n- Import modules in `theme-src/js/theme.js`\n- Use ES6+ features and modules\n\n### WordPress Features\n- Navigation menus\n- Widget areas\n- Custom logo support\n- Post thumbnails\n- Translation ready\n\n## Browser Support\n\n- Modern browsers (Chrome, Firefox, Safari, Edge)\n- ES2022+ features\n- CSS Grid and Flexbox\n\n## Performance\n\n- Critical CSS inlined automatically\n- JavaScript modules loaded efficiently\n- Optimized asset caching with versioning\n- Lazy loading for images\n\n## Contributing\n\n1. Follow WordPress coding standards\n2. Use ESLint and Prettier for code formatting\n3. Test across different browsers and devices\n4. Ensure accessibility standards are met\n\n## License\n\nGPL v2 or later","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsignalfire%2Fwp-alpha","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsignalfire%2Fwp-alpha","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsignalfire%2Fwp-alpha/lists"}