This is the official Littlstar Developer Portal.
This portal is built on top of Jekyll, so a current version of Ruby and the Bundler gem are required.
git clone [email protected]:littlstar/littlstar.github.io.gitThe site can be compiled and served locally by running:
jekyll sGlobal site configuration is stored in the _config.yml file.
All sass and scss assets are stored in the _sass directory. This is a Jekyll default path. The one exception is the littlstar.scss "manifest" file. This file lives in the css directory. The basic structure of these files is as follows:
littlstar.scssis responsible for loading all other style assets as well as for defining and overriding the Foundation defaults._functions.scssis the Foundation utility function declaration file._foundation.scssis the Foundation manifest file, responsible for@importing the necessary components from thefoundationdirectory._font-awesome.scssis the Font Awesome manifest file, responsible for@importing the necessary components from thefont-awesomedirectory._highlighting.scssis created by Jekyll when a new site is first generated. It is responsible for syntax highlighting of code samples.
All sass/scss assets are compiled by Jekyll into a single css file when the site is built or rebuilt.
There are no Javascript assets in this project. They are all loaded off of CDNs either in _includes/head.html or _layouts/default.html.