https://github.com/andrewsepic/vnrc
Vermont Natural Resources Custom Theme Development
https://github.com/andrewsepic/vnrc
advanced-custom-fields php7 sass theme wordpress
Last synced: about 2 months ago
JSON representation
Vermont Natural Resources Custom Theme Development
- Host: GitHub
- URL: https://github.com/andrewsepic/vnrc
- Owner: AndrewSepic
- Created: 2019-02-04T22:20:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-07-15T00:10:56.000Z (12 months ago)
- Last Synced: 2025-07-15T04:42:40.219Z (12 months ago)
- Topics: advanced-custom-fields, php7, sass, theme, wordpress
- Language: HTML
- Homepage: https://vnrc.org
- Size: 9.29 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Support: support-us.php
Awesome Lists containing this project
README
Currently using Foundation 6.5.1.
## VNRC Custom theme using JointsWP
JointsWP requires [Node.js](https://nodejs.org) v6.9.x or newer. This doesn't mean you need to understand Node (or even Gulp) - it's just the steps we need to take to make sure all of our development tools are installed.
## Getting Started
### Download JointsWP and install dependencies with npm
```bash
$ cd my-wordpress-folder/wp-content/themes/
$ git clone https://github.com/JeremyEnglert/JointsWP.git
$ cd JointsWP
$ npm install
```
At this point, JointsWP should be installed and fully running on your local machine. If you prefer to install the theme manually, that will work as well - just be sure to run `npm install` after manually moving the files into the `/themes/` directory.
### Custom Styles
* `style.css` - this file is never actually loaded, however, this is where you set your theme name and is required by WordPress
* `assets/styles/scss/style.scss` - import all of your styles here. If you create an additional SCSS file, be sure to import it here.
* `assets/styles/scss/_main.sass` - place all of your custom styles here.
* `assets/styles/scss/_settings.scss` - adjust Foundation style settings here.
* `assets/styles/scss/login.scss` - place custom login styles here. This will generate it's own stylesheet.
### Custom Scripts
* `assets/scripts/js/` - place your custom scripts here. Each .JS file will be compiled and concatenated when the build process is ran.
### Images
* `assets/images/` - place your theme images here. Each image will be optimized when the build process is ran.