{"id":19215603,"url":"https://github.com/alwaysblank/artemisia","last_synced_at":"2025-11-14T09:02:19.864Z","repository":{"id":94009991,"uuid":"120016491","full_name":"alwaysblank/artemisia","owner":"alwaysblank","description":null,"archived":false,"fork":false,"pushed_at":"2018-11-13T19:14:27.000Z","size":3665,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-04T18:28:56.902Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alwaysblank.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"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}},"created_at":"2018-02-02T18:29:49.000Z","updated_at":"2018-11-13T17:44:26.000Z","dependencies_parsed_at":"2023-03-07T20:30:39.785Z","dependency_job_id":null,"html_url":"https://github.com/alwaysblank/artemisia","commit_stats":null,"previous_names":[],"tags_count":55,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwaysblank%2Fartemisia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwaysblank%2Fartemisia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwaysblank%2Fartemisia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwaysblank%2Fartemisia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alwaysblank","download_url":"https://codeload.github.com/alwaysblank/artemisia/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240290816,"owners_count":19778143,"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":[],"created_at":"2024-11-09T14:14:12.182Z","updated_at":"2025-11-14T09:02:19.795Z","avatar_url":"https://github.com/alwaysblank.png","language":"PHP","funding_links":["https://www.patreon.com/rootsdev"],"categories":[],"sub_categories":[],"readme":"# [Artemisia](https://github.com/alwaysblank/artemisia) 🌿\n\nArtemisia is a fork of [Sage](https://roots.io/sage) that slims things down a bit.\n\n## Features\n\n* PostCSS processing\n  * Runtime stylelint/eslint checks against your browserlist for unsupported technology\n* Automated optional package installation\n* ES6 for JavaScript\n* [Webpack](https://webpack.github.io/) for compiling assets, optimizing images, and concatenating and minifying files\n* [Browsersync](http://www.browsersync.io/) for synchronized browser testing\n* [Laravel Blade](https://laravel.com/docs/5.3/blade) as a templating engine\n* [Controller](https://github.com/soberwp/controller) for passing data to Blade templates\n\n## Requirements\n\nMake sure all dependencies have been installed before moving on:\n\n* [WordPress](https://wordpress.org/) \u003e= 4.7\n* [PHP](https://secure.php.net/manual/en/install.php) \u003e= 7.1.3 (with [`php-mbstring`](https://secure.php.net/manual/en/book.mbstring.php) enabled)\n* [Composer](https://getcomposer.org/download/)\n* [Node.js](http://nodejs.org/) \u003e= 6.9.x\n* [Yarn](https://yarnpkg.com/en/docs/install)\n\n## Theme structure\n\n```shell\nthemes/your-theme-name/   # → Root of your Sage based theme\n├── app/                  # → Theme PHP\n│   ├── Controllers/      # → Controller files\n│   ├── admin.php         # → Theme customizer setup\n│   ├── filters.php       # → Theme filters\n│   ├── helpers.php       # → Helper functions\n│   └── setup.php         # → Theme setup\n├── composer.json         # → Autoloading for `app/` files\n├── composer.lock         # → Composer lock file (never edit)\n├── dist/                 # → Built theme assets (never edit)\n├── node_modules/         # → Node.js packages (never edit)\n├── package.json          # → Node.js dependencies and scripts\n├── resources/            # → Theme assets and templates\n│   ├── assets/           # → Front-end assets\n│   │   ├── config.json   # → Settings for compiled assets\n│   │   ├── build/        # → Webpack and ESLint config\n│   │   ├── fonts/        # → Theme fonts\n│   │   ├── images/       # → Theme images\n│   │   ├── scripts/      # → Theme JS\n│   │   └── styles/       # → Theme stylesheets\n│   ├── functions.php     # → Composer autoloader, theme includes\n│   ├── index.php         # → Never manually edit\n│   ├── screenshot.png    # → Theme screenshot for WP admin\n│   ├── style.css         # → Theme meta information\n│   └── views/            # → Theme templates\n│       ├── layouts/      # → Base templates\n│       └── partials/     # → Partial templates\n└── vendor/               # → Composer packages (never edit)\n```\n\n## Theme setup\n\nEdit `app/setup.php` to enable or disable theme features, setup navigation menus, post thumbnail sizes, and sidebars.\n\n## Theme development\n\n* Run `yarn` from the theme directory to install dependencies\n* Update `resources/assets/config.json` settings:\n  * `devUrl` should reflect your local development hostname\n  * `publicPath` should reflect your WordPress folder structure (`/wp-content/themes/sage` for non-[Bedrock](https://roots.io/bedrock/) installs)\n\n### Build commands\n\n* `yarn run start` — Compile assets when file changes are made, start Browsersync session\n* `yarn run build` — Compile and optimize the files in your assets directory\n* `yarn run build:production` — Compile assets for production\n\n## Documentation\n\n* [Sage documentation](https://roots.io/sage/docs/)\n* [Controller documentation](https://github.com/soberwp/controller#usage)\n\n## Contributing\n\nContributions are welcome from everyone. We have [contributing guidelines](https://github.com/roots/guidelines/blob/master/CONTRIBUTING.md) to help you get started.\n\n## Sage sponsors\n\nHelp support our open-source development efforts by [becoming a patron](https://www.patreon.com/rootsdev).\n\n\u003ca href=\"https://kinsta.com/?kaid=OFDHAJIXUDIV\"\u003e\u003cimg src=\"https://cdn.roots.io/app/uploads/kinsta.svg\" alt=\"Kinsta\" width=\"200\" height=\"150\"\u003e\u003c/a\u003e \u003ca href=\"https://k-m.com/\"\u003e\u003cimg src=\"https://cdn.roots.io/app/uploads/km-digital.svg\" alt=\"KM Digital\" width=\"200\" height=\"150\"\u003e\u003c/a\u003e\n\n## Community\n\nKeep track of development and community news.\n\n* Participate on the [Roots Discourse](https://discourse.roots.io/)\n* Follow [@rootswp on Twitter](https://twitter.com/rootswp)\n* Read and subscribe to the [Roots Blog](https://roots.io/blog/)\n* Subscribe to the [Roots Newsletter](https://roots.io/subscribe/)\n* Listen to the [Roots Radio podcast](https://roots.io/podcast/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falwaysblank%2Fartemisia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falwaysblank%2Fartemisia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falwaysblank%2Fartemisia/lists"}