Hello, this is a quick quide that will help you build your first page.
├── app
│ ├── assets
│ │ ├── css
│ │ ├── fonts
│ │ ├── images
│ │ ├── js
│ │ └── scss
│ ├── components
│ ├── html
│ │ ├── app
│ │ ├── landing
│ │ └── pages
│ ├── app-pages.html
│ ├── inner-pages.html
│ ├── landing-pages.html
│ └── index.html
├── gulpfile.js
├── package-lock.json
└── package.json
First of all you need Node.js to get started. If you don't have it already you can download it here
Once Node.js is installed, open Terminal and run "npm install" to install all of GO dependencies. New folder node_modules
will be created automaticaly.
npm install
Now you're ready to start building new pages. All you have to do is run "gulp" in Terminal. This will track all the sass file changes and start a local webserver at http://localhost:3000
gulp
This basic template is a guideline for how to structure your pages when building with our theme. Included below are all the necessary bits for using the theme’s CSS and JS.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>GO - Template</title>
<!-- css -->
<link rel="stylesheet" href="../css/vendor.css" />
<link rel="stylesheet" href="../css/style.css" />
</head>
<body>
<!-- scripts -->
<script src="../js/vendor.js"></script>
<script src="../js/app.js"></script>
</body>
</html>