Figma Design Files https://www.figma.com/file/IfGUJ91VgixZ9wG94PHZZk/Sunrise-National-Hub-Pages-Current?node-id=193%3A47
Notion Wiki https://www.notion.so/evanmceldowney/Sunrise-National-Website-80a2f109ea7d42c181fbb19901efd354
Airtable Development Manager (for editability ask Evan) https://airtable.com/shrWWYWcB2LLxr8Le
Download flywheelby flywhee, install, and run a local instance https://localwp.com/
Import theme in your site in app/public/wp-content/themes/ using git clone https://github.com/sunrisemovement/Sunrise-National-Redesign.git
Activate theme in the wordpress admin
Import wordpress content using wordpress importer with file from https://www.notion.so/evanmceldowney/Wordpress-Content-July-23rd-38536a2f5a46498093d623d439256f3f
This theme uses WPGulp for "An advanced & extensively documented Gulp WordPress workflow".
To start developing your theme follow these instructions:
- Open
wpgulp.config.js
and edit theprojectURL
variable. - Run
npm i
in the same directory as this theme. - Run
npm start
.
Once these steps are complete, you only need to run npm start
moving forward.
assets/css/style.scss
is the main stylesheet that contains all partials. This is compiled intostyle.css
.assets/css/bootstrap
contains the Bootstrap core.scss
files and should not be edited. Instead useassets/css/base/_bootstrap_overrides.scss
to override the default variables.- Feel free to add additional partials to this theme.
assets/js/custom
contains any custom javascript files. By default it comes with two scripts generated by Underscores. All files in this directory are compiled intoassets/js/custom.js
andassets/js/custom.min.js
. By default the themes loadsassets/js/custom.min.js
.assets/js/vendor
contains any vendor javascript files. This is also wherebootstrap.js
is loaded. All files in this directory are compiled intoassets/js/vendor.js
andassets/js/vendor.min.js
. By default the themes loadsassets/js/vendor.min.js
.
- Place any images into
assets/img/raw
. From there, they will be optimized and placed inassets/img
.
If you wish to override Bootstrap's default variables, do so by redeclaring those variables in assets/css/base/_bootstrap_overrides.scss
. Use assets/css/bootstrap/_variables.scss
as a reference for all existing variables, but DO NOT update this or any other file located in assets/css/bootstrap/
.
More information on variable defaults
For more questions https://getbootstrap.com/docs/4.0/getting-started/introduction/
Bootstrap does not style form elements be default. Instead, a developer must manually add the correct classes to each form element.
In an effort to streamline this process, this theme automatically styles all form elements by extending the .btn
class on these elements. These styles are located in assets/css/base/_forms.scss
.
Some css classes are required by WordPress and therefore should be included in a WordPress theme. These, and other WordPress specific styles generated by Underscores are located in assets/css/base/_wordpress.scss
.