{"id":22606628,"url":"https://github.com/benjaminmedia/wype-theme","last_synced_at":"2025-03-28T22:15:17.224Z","repository":{"id":62495880,"uuid":"174326331","full_name":"BenjaminMedia/wype-theme","owner":"BenjaminMedia","description":"WordPress theme for Wype","archived":false,"fork":false,"pushed_at":"2019-03-11T13:35:14.000Z","size":1990,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-26T14:54:36.603Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/BenjaminMedia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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}},"created_at":"2019-03-07T10:51:43.000Z","updated_at":"2019-03-07T10:52:13.000Z","dependencies_parsed_at":"2022-11-02T09:45:33.556Z","dependency_job_id":null,"html_url":"https://github.com/BenjaminMedia/wype-theme","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenjaminMedia%2Fwype-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenjaminMedia%2Fwype-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenjaminMedia%2Fwype-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenjaminMedia%2Fwype-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BenjaminMedia","download_url":"https://codeload.github.com/BenjaminMedia/wype-theme/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246106689,"owners_count":20724401,"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-12-08T14:14:23.616Z","updated_at":"2025-03-28T22:15:17.203Z","avatar_url":"https://github.com/BenjaminMedia.png","language":"HTML","funding_links":["https://www.patreon.com/rootsdev"],"categories":[],"sub_categories":[],"readme":"# [Sage](https://roots.io/sage/)\n[![Packagist](https://img.shields.io/packagist/vpre/roots/sage.svg?style=flat-square)](https://packagist.org/packages/roots/sage)\n[![devDependency Status](https://img.shields.io/david/dev/roots/sage.svg?style=flat-square)](https://david-dm.org/roots/sage#info=devDependencies)\n[![Build Status](https://img.shields.io/travis/roots/sage.svg?style=flat-square)](https://travis-ci.org/roots/sage)\n\nSage is a WordPress starter theme with a modern development workflow.\n\n## Features\n\n* Sass for stylesheets\n* Modern 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* [Blade](https://laravel.com/docs/5.6/blade) as a templating engine\n* [Controller](https://github.com/soberwp/controller) for passing data to Blade templates\n* CSS framework (optional): [Bootstrap 4](https://getbootstrap.com/), [Bulma](https://bulma.io/), [Foundation](https://foundation.zurb.com/), [Tachyons](http://tachyons.io/), [Tailwind](https://tailwindcss.com/)\n\nSee a working example at [roots-example-project.com](https://roots-example-project.com/).\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= 8.0.0\n* [Yarn](https://yarnpkg.com/en/docs/install)\n\n## Theme installation\n\nInstall Sage using Composer from your WordPress themes directory (replace `your-theme-name` below with the name of your theme):\n\n```shell\n# @ app/themes/ or wp-content/themes/\n$ composer create-project roots/sage your-theme-name\n```\n\nTo install the latest development version of Sage, add `dev-master` to the end of the command:\n\n```shell\n$ composer create-project roots/sage your-theme-name dev-master\n```\n\nDuring theme installation you will have options to update `style.css` theme headers, select a CSS framework, and configure Browsersync.\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 start` — Compile assets when file changes are made, start Browsersync session\n* `yarn build` — Compile and optimize the files in your assets directory\n* `yarn 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%2Fbenjaminmedia%2Fwype-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenjaminmedia%2Fwype-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenjaminmedia%2Fwype-theme/lists"}