{"id":16026518,"url":"https://github.com/pattonwebz/best-reloaded-bootstrap-theme","last_synced_at":"2026-04-11T07:44:08.001Z","repository":{"id":15841806,"uuid":"18581818","full_name":"pattonwebz/best-reloaded-bootstrap-theme","owner":"pattonwebz","description":"Best Reloaded - A Bootstrap 4 powered WordPress Theme focused on clear display of your content.","archived":false,"fork":false,"pushed_at":"2019-02-02T20:48:10.000Z","size":8511,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-10T12:21:43.233Z","etag":null,"topics":["bootstrap","bootstrap4","javascript","php","wordpress","wordpress-theme"],"latest_commit_sha":null,"homepage":"https://www.pattonwebz.com/best-reloaded-bootstrap-theme/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pattonwebz.png","metadata":{"files":{"readme":"README.md","changelog":"changelog","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-09T01:59:44.000Z","updated_at":"2019-03-25T13:20:04.000Z","dependencies_parsed_at":"2022-08-04T06:45:24.665Z","dependency_job_id":null,"html_url":"https://github.com/pattonwebz/best-reloaded-bootstrap-theme","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pattonwebz%2Fbest-reloaded-bootstrap-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pattonwebz%2Fbest-reloaded-bootstrap-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pattonwebz%2Fbest-reloaded-bootstrap-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pattonwebz%2Fbest-reloaded-bootstrap-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pattonwebz","download_url":"https://codeload.github.com/pattonwebz/best-reloaded-bootstrap-theme/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247286232,"owners_count":20913941,"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":["bootstrap","bootstrap4","javascript","php","wordpress","wordpress-theme"],"created_at":"2024-10-08T20:01:39.294Z","updated_at":"2026-04-11T07:44:02.964Z","avatar_url":"https://github.com/pattonwebz.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/pattonwebz/best-reloaded-bootstrap-theme.svg?branch=master)](https://travis-ci.org/pattonwebz/best-reloaded-bootstrap-theme) [![Build Status](https://scrutinizer-ci.com/g/pattonwebz/best-reloaded-bootstrap-theme/badges/build.png?b=master)](https://scrutinizer-ci.com/g/pattonwebz/best-reloaded-bootstrap-theme/build-status/master)\n\n# Using The Best Reloaded Theme Package\n\nThis theme uses NPM and Grunt to run various development and build tasks. To get started you will need to install the dependencies. You may already have grunt-cli installed globally.\n\n```\nnpm install grunt-cli -g\nnpm install\n```\n\nThen you can run the Grunt tasks. The initial build task handles copying of the Bootstrap 4 sourcefiles (they are installed during 'npm install') into the theme from the node_modules directory. It will also process them and finally it will combine \u0026 minify the Bootstrap, and the main themes, styles/scripts.\n\n## All Available Grunt Tasks\n\n```\n# This is the initial build task. It copies source files from inside 'node_modules/' into the theme and processes all styles and scripts.\n# The full build task exists primarily to deal with Bootstrap files. You must run this once to pull Bootstrap source files into the directory and process them.\n# After that you will only need to run this again if Bootstrap source files change - such as if you update the version in package.json and run npm-install again\ngrunt build\n\n# This processes only styles and scripts of the theme only - no Bootstrap files.\ngrunt theme\n\n# The default task is configured the same as the 'grunt theme' task\ngrunt\n\n# This deals with building a WPORG distributable version of the theme - it copies only the files required and no dev files or directories. The built theme will be found inside the 'dist/' folder.\ngrunt dist\n```\n\n## Working Directories\n\nThe styles and scripts to be modified can be found inside the `assets/src` dirctory. This is the working dirctory and are used as the sourcefiles to build the final versions used by the theme. Final versions are output to `assets/css` and `assets/js` and should not be directly modified in development.\n\n## Build Process Overview\n\nGrunt is used to perform many actions that automate several useful tasks for theme development. The base systems use configurations that emulate closely what BootStrap 4 uses in their build systems. That way I can ensure that the processed Bootstrap files give the same results as the ones available through their pre-built package. It's also a well tested and though through build process.\n\n### Styles:\n\nBoth the theme styles and Bootstrap styles use SASS as the pre-processessor. They are processed into 2 seporate files - the Bootstrap stylesheet and the theme stylesheet.\n\nOnce the files are turned into CSS postcss is used to apply flex fixes for IE. Finally it uses autoprefixer to make the styles cross-browser compatable.\n\nThe autoprefixer config is as follows:\n\n```\nbrowsers: [\n  'Chrome \u003e= 35',\n  'Firefox \u003e= 38',\n  'Edge \u003e= 12',\n  'Explorer \u003e= 10',\n  'iOS \u003e= 8',\n  'Safari \u003e= 8',\n  'Android 2.3',\n  'Android \u003e= 4',\n  'Opera \u003e= 12'\n]\n```\n### Scripts:\n\nBootstrap scripts are processed with babel (for es2015-module-strip support) then they are combined and minified.\n\nTheme scripts are combined and minified from assets/src/js directory.\n\n## Theme Versioning:\n\nThe Version number only needs set in `package.json`. The `dist` task handles updating the version number in style.css and assets/css/style.css during it's copy process.\n\nIn development the version is set to `{{ VERSION }}`, the dist package gets updated with correct version numbers.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpattonwebz%2Fbest-reloaded-bootstrap-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpattonwebz%2Fbest-reloaded-bootstrap-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpattonwebz%2Fbest-reloaded-bootstrap-theme/lists"}