GithubHelp home page GithubHelp logo

Development of wct2015

Deployment status from dploy.io

WordCamp Tokyo 2015 Screenshot

WordPress development for WordCamp Tokyo 2015 using:

  • gulp
  • BrowserSync
  • Foundation

For Contribute

To begin with, check our Wiki.

Requires

  • gulp
  • Bower
  • Node.js
  • npm
  • Sass >= 3.4

Getting Started

  1. Setup your local environment. Recommend vccw.

  2. On your WordPress themes/ directory,

     $ git clone [email protected]:featherplain/wct2015.git wct2015
    
  3. Copy files in src/plugins/ directory to your WordPress plugins/ directory.

  4. Install some dependencies.

     $ npm install
    
  5. Run gulp.

     // proxy mode
     $ gulp
    
     // server mode for static websites
     $ npm run gulp-server
    

BrowserSync

Default is proxy mode.

gulp.task('browser-sync', function() {
  var args = {};
  if (argv.mode == 'server' ) {
    args.server =  { baseDir: paths.root };
    args.startPath = paths.htmlDest;
  } else {
    args.proxy =  paths.vhost;
    args.open = 'external';
  };
  browserSync.init(args);
})

gulp.task('bs-reload', function() {
  browserSync.reload()
});

foundation

src/scss/core/foundation/
src/scss/core/_settings.scss
src/scss/core/_foundation.scss

WordCamp Tokyo 2015's Projects

wct2015 icon wct2015

WordCamp Tokyo 2015 Theme using WordCamp Base Redux

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.