Skip to content

netzdoktor/bitcraze-website

 
 

Repository files navigation

The Bitcraze website Build Status

This is the source code for the Bitcraze website.

Quick start

The content is written in markdown and html and the intention is to make it as easy as possible to modify the code. There is an integrated development and test environment based on Docker to reduce the amount of software required.

  1. Clone this repository

     git clone https://github.com/bitcraze/bitcraze-website.git
    
  2. Go to the root of the repository. All tools should be run from here.

     cd bitcraze-website
    
  3. Download dependencies. This will download Bootstrap and set things up.

     ./tools/do download_deps
    
  4. Start the development server. The development server in Jekyll continuously builds the site when the source changes.

     ./tools/run-in-dev.sh
    
  5. Open a web browser and go to http://localhost. If you are not on Linux you will have to use docker-machine to figure out your address.

  6. Make your changes. The site will automatically rebuild when you modify a file, so all you have to do is to reload the page in your browser to see the results.

  7. Make sure all tests and validations passes

     ./tools/do build
    
  8. Commit and issue a pull request

  9. Done!

prerequisites

To contribute you only need:

If you don't want to use docker you will need ruby on you system. We have not set our systems up this way but is should not be a big deal. If you do, please add documentation for it here.

Technologies

You can find more information about the technologies used here

  • Jekyll - we use Jekyll to generate static html and css from markdown, html and scss
  • Bootstrap - The CSS is based on Bootrstrap
  • Docker - Docker is used to create a consistent development and test environment
  • HTML Proofer

File structure

The top level directories are

  • src - the source code for ths site, markdown, js, scss, templates and so on. This is where you need to look if you want to add or change the text or styling. Read the Jekyll documentation for an explanation of the file structure here.
  • test - unit tests for Jekyll plugins
  • bootsrap - bootstrap is download here
  • _site - this is where the generated site goes
  • tools - scripts for building the site and running the server. See comments in the scripts for documentation on how to use them.

Tags and filters

We are aiming at writing most of the content using markdown. This makes it easy to add or change the content without getting lost in styling. We use liquid tags and filters to extend the functionality of markdown to generate more complex or specific HTML structures.

Documentation for tags and filters can be found in the source code for the tags in src/_plugins.

Integration with Wordpress

The code in this repository is the base for all static content on the website. The blog on the other hand, is not part if this code, it is running on a Wordpress instance. The dynamic content is injected into the static pages where needed, you will find tags in the source code indicating where. For instance

    <!-- inject wp blog -->

Using the toolbelt

Instead of running the tools/do script you can use the toolbelt. For instance, downloading dependencies would be

    tb download_deps 

or running the validations

    tb validate

Packages

No packages published

Languages

  • Ruby 48.0%
  • CSS 32.5%
  • HTML 13.7%
  • Shell 3.1%
  • JavaScript 2.7%