{"id":18825567,"url":"https://github.com/veronalabs/sector","last_synced_at":"2025-04-14T01:31:30.128Z","repository":{"id":33574015,"uuid":"159632272","full_name":"veronalabs/sector","owner":"veronalabs","description":"A WordPress Starter Theme","archived":false,"fork":false,"pushed_at":"2023-03-03T11:34:16.000Z","size":1259,"stargazers_count":8,"open_issues_count":8,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-27T15:52:20.282Z","etag":null,"topics":["closing-tags","css","namespace","php","sass","sector","woocommerce","wordpress","wordpress-starter-theme"],"latest_commit_sha":null,"homepage":"https://veronalabs.com/","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/veronalabs.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}},"created_at":"2018-11-29T08:25:40.000Z","updated_at":"2024-11-24T04:43:21.000Z","dependencies_parsed_at":"2023-02-15T05:16:35.172Z","dependency_job_id":null,"html_url":"https://github.com/veronalabs/sector","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/veronalabs%2Fsector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veronalabs%2Fsector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veronalabs%2Fsector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veronalabs%2Fsector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veronalabs","download_url":"https://codeload.github.com/veronalabs/sector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248807574,"owners_count":21164711,"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":["closing-tags","css","namespace","php","sass","sector","woocommerce","wordpress","wordpress-starter-theme"],"created_at":"2024-11-08T01:00:00.705Z","updated_at":"2025-04-14T01:31:29.394Z","avatar_url":"https://github.com/veronalabs.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Sector](https://veronalabs.com/products/)\nA WordPress Starter Theme\n\n![Sector](https://veronalabs.com/wp-content/uploads/2018/12/sector-logo.png \"Sector\")\n\n## Features\n\n* SASS for stylesheets.\n* PHP Namespace.\n* Clean up `wp_head()`.\n  * Remove unnecessary `\u003clink\u003e`'s.\n  * Remove inline CSS and JS from WP emoji support.\n  * Remove inline CSS used by Recent Comments widget.\n  * Remove inline CSS used by posts with galleries.\n  * Remove self-closing tag.\n  * Remove the WordPress version from RSS feeds.\n  * Clean up `language_attributes()` used in `\u003chtml\u003e` tag.\n  * Clean up output of stylesheet `\u003clink\u003e` tags.\n  * Clean up output of `\u003cscript\u003e` tags.\n  * Add and remove `body_class()` classes.\n  * Wrap embedded media as suggested by Readability.\n  * Remove unnecessary self-closing tags.\n  * Don't return the default description in the RSS feed if it hasn't been changed.\n* A just right amount of lean, well-commented, modern, HTML5 templates.\n* A helpful 404 template.\n* A custom header implementation in `inc/custom-header.php` just add the code snippet found in the comments of `inc/custom-header.php` to your `header.php` template.\n* Custom template tags in `inc/template-tags.php` that keep your templates clean and neat and prevent code duplication.\n* Some small tweaks in `inc/template-functions.php` that can improve your theming experience.\n* A script at `assets/js/navigation.js` that makes your menu a toggled dropdown on small screens (like your phone), ready for CSS artistry. It's enqueued in functions.php.\n* 2 sample CSS layouts in `layouts/` for a sidebar on either side of your content. Note: .no-sidebar styles are not automatically loaded.\n* Smartly organized starter CSS in style.css that will help you to quickly get your design off the ground.\n* Full support for WooCommerce plugin integration with hooks in inc/woocommerce.php, styling override `assets/css/woocommerce.css` with product gallery features (zoom, swipe, lightbox) enabled.\n* Licensed under GPLv2 or later. :) Use it to make something cool.\n\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= 5.4\n* [Node.js](http://nodejs.org/) \u003e= 6.9.x\n* [npm](https://www.npmjs.com/) \u003e= 5.x\n\n## Theme installation\nFirst of all [download](https://github.com/veronalabs/sector/archive/master.zip) the latest version of Sector and extract that in `wp-conent/themes`.\n\n### Theme branding\n1. Change the folder name from `sector-master` to `your-theme-name`\n2. Change the `SECTOR_DOMAIN_NAME` define in the `functions.php` for your language text domain name.\n3. [Optional] You can change the namespace in the files.\n\n### Compile the SASS\nThen install the `node-sass` with below command:\n\n```\nnpm install node-sass\n```\n\nTo compile the SASS files, you should use the below command:\n\n```\nnpm run scss\n```\n\n\n## Theme folder structure\n\n```\nsector\n├── assets  \n│   ├── css                 # → sas compiled path.\n│   │   └── style.css\n│   │   └── woocommerce.css\n│   ├── js\n│   └── sass                # → sass files.\n├── inc\n├── languages\n├── layouts\n└── template-parts                  \n```\n\n## Development\nTo start develop your own theme with sector, Follow steps below:\n1. Open your command line\n2. Go to your project folder ``` cd path/to/your/project ```\n3. Run ``` npm install ```\n4. Edit your proxy setting in Browser-Sync task in ```gulpfile.js```\n5. Run ``` gulp ```\n\n\n## Community\n\nKeep track of development and community news.\n\n* Follow [@veronalabs on Twitter](https://twitter.com/veronalabs)\n* Subscribe to the [Veronalabs Newsletter](https://veronalabs.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveronalabs%2Fsector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveronalabs%2Fsector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveronalabs%2Fsector/lists"}