All Projects → lucidnz → Bootstrapify 1

lucidnz / Bootstrapify 1

An open-source base theme for Shopify using Twitter Bootstrap

Labels

Projects that are alternatives of or similar to Bootstrapify 1

Shopify Css Import
Add CSS import functionality to Shopify theme development with Grunt.js or Gulp.js
Stars: ✭ 82 (-56.61%)
Mutual labels:  liquid
Shopify Theme Inspector
A Chrome DevTools plugin that visualizes Shopify Liquid render profiling data so you can triage long-running code and reduce server response times!
Stars: ✭ 102 (-46.03%)
Mutual labels:  liquid
Jekyll Timeago
⌛️ Ruby library to compute distance of dates in words. Originally built for Jekyll.
Stars: ✭ 130 (-31.22%)
Mutual labels:  liquid
Garth
🥁 A really basic theme for Jekyll
Stars: ✭ 85 (-55.03%)
Mutual labels:  liquid
Scriban
A fast, powerful, safe and lightweight scripting language and engine for .NET
Stars: ✭ 1,360 (+619.58%)
Mutual labels:  liquid
Jekyll Menus
A menus (site navigation) plugin for your Jekyll website that also works with https://forestry.io (Jekyll CMS)
Stars: ✭ 115 (-39.15%)
Mutual labels:  liquid
Rustycrate.ru
Русскоязычный сайт о языке программирования Rust
Stars: ✭ 72 (-61.9%)
Mutual labels:  liquid
Skeleton Theme
A barebones ☠️starter theme with the required files needed to compile with Slate and upload to Shopify.
Stars: ✭ 153 (-19.05%)
Mutual labels:  liquid
Shopify Shortcodes
Allows you to use Shortcodes within Shopify
Stars: ✭ 100 (-47.09%)
Mutual labels:  liquid
Concrete
🏗 Concrete Shopify Theme Framework
Stars: ✭ 124 (-34.39%)
Mutual labels:  liquid
Site
Stars: ✭ 86 (-54.5%)
Mutual labels:  liquid
Shopify Birthday Suit
Exceedingly bare bones Shopify theme
Stars: ✭ 93 (-50.79%)
Mutual labels:  liquid
Vc Storefront
VirtoCommerce Storefront for ASP.NET Core 3.1 repository
Stars: ✭ 122 (-35.45%)
Mutual labels:  liquid
Smartstore
Open Source ASP.NET Core Enterprise eCommerce Shopping Cart Solution
Stars: ✭ 82 (-56.61%)
Mutual labels:  liquid
Shopify Modern
A modern template for developing Shopify-themes using Vuejs
Stars: ✭ 136 (-28.04%)
Mutual labels:  liquid
Glim
Static site generator which is semi-compatible with Jekyll
Stars: ✭ 76 (-59.79%)
Mutual labels:  liquid
Jekyll
🌐 Jekyll is a blog-aware static site generator in Ruby
Stars: ✭ 43,803 (+23076.19%)
Mutual labels:  liquid
Smartstorenet
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
Stars: ✭ 2,363 (+1150.26%)
Mutual labels:  liquid
Moonmail
Email marketing platform for bulk emailing via Amazon SES (Google Cloud Platform and Azure coming soon)
Stars: ✭ 1,766 (+834.39%)
Mutual labels:  liquid
Fhir Converter
Conversion utility to translate legacy data formats into FHIR
Stars: ✭ 123 (-34.92%)
Mutual labels:  liquid

!important message!

We made a new version of Bootstrapify and you can find it here: https://github.com/luciddesign/Bootstrapify-4

Bootstrapify 3.1.1

Bootstrapify is an open-source base theme for Shopify that makes it super quick and easy for developers to start building amazing, responsive themes without having to do all the fiddly, repetitive setup work when starting from scratch.

You can view the Bootstrapify theme at http://bootstrapify-theme.myshopify.com.

Getting started

Clone Bootstrapify using git or download the zip file.

git clone [email protected]:luciddesign/bootstrapify.git

Simple setup

If you wish to use the theme without touching the SASS or Bootstrap files then just upload Bootstrapify.zip to Shopify.

Advanced setup

If you wish to develop locally and push your changes to Shopify you will need to use Grunt.js and the Shopify Theme gem.

Workflow

To use both Shopify and Bootstrap to their full potential we concatenate Bootstraps styles with a few of our own, add some liquid and then send it to Shopify to be compiled. The benefit of doing it this way is that we can alter Bootstraps variables directly from the theme settings and we don't have to override a whole lot of stuff with our own styles. Our own styles are kept outside the theme directory in dist/scss/ and are built using Grunt into assets/_base.scss.liquid.

To add any new styles you can either add it directly to dist/scss/bootstrapify_overrides.scss.liquid or include your own files in the concatenation within Gruntfile.js.

However there are two caveats with using SCSS with Shopify:

  1. They don't support @import... yet. So to keep Bootstrap intact and updateable we have created this workflow for working with the theme.
  2. They don't allow SCSS in the checkout styles, so this still has to be compiled with SASS locally.

We then use the Shopify Theme gem to watch the theme directory and push any changes up to Shopify.

The theme settings that appear in the Shopify Admin (config/settings.html) are generated from the YAML files in the settings folder using the grunt-shopify-theme-settings plugin. You can discover more about this plugin and how it works from its GitHub page.

Requirements

You will need to install both Ruby and Node.js. The Shopify theme gem and SASS require Ruby. Grunt.js and Bower use Node.js. Once these are installed you can setup the project.

Before you start!

If you don't already have Grunt and Bower installed globally on your system you need to do this, otherwise you can jump to the project setup. To install Grunt and Bower globally using npm:

npm install -g bower

npm install -g grunt-cli

Project Setup

Install Grunt's dependancies:

npm install

Install Bootstrap and other Bower dependancies:

bower install

Install the SASS gem and the Shopify theme gem:

bundle install

Or you can do this as a nifty one liner: npm install && bower install && bundle install

Setup the Shopify theme gem

Inside the theme folder run:

theme configure [api_key] [password] [store_url]

More detail can be found on the Shopify theme gems readme

Build

To build the project run:

grunt    

This will do the following:

  • Compile the SCSS files into the themes asset directory.
  • Copy Bootstraps JS files into the themes asset directory.
  • Lint the Bootstrapify JS files.

To compile the SCSS files automaticly when they are saved run:

grunt watch

Common issues

Spawn issue on 64-bit Linux systems

If you're running the task on 64-bit Linux systems, you may get a ENOENT spawn error when the theme settings tasks is running. See here for more details and an easy fix.

Bugs, issues or feature requests

Please create an issue here on GitHub at https://github.com/luciddesign/bootstrapify/issues

Contributing

Feel free to make pull requests.

Change log

3.1.1

  • Upgrade to version 3.1.1 of Twitter Bootstrap Sass.
  • Major overhaul of how we deal with Bootstrap!

3.1.0

  • Upgrade to version 3.1.0 of Twitter Bootstrap.
  • Added Grunt for SASS compilation, JS linting and copying files.
  • Added Gemfile and bower.json for dependancies.
  • Moved development SCSS files into sub directory.

3.0.2

  • Upgrade to version 3.0.2 of Twitter Bootstrap.
  • Complete overhaul of theme settings.

3.0

  • Upgrade to version 3.0 of Twitter Bootstrap.
  • Complete overhaul and refactor of theme files.

Credits

Needless to say, we couldn't have done this without the awesome Twitter Bootstrap project which this is based on. Huge huge respect and many thanks for what these guys have created!

Copyright and license

Copyright 2013 Lucid Design Limited, Nelson, New Zealand | www.luciddesign.co.nz

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].