Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clauswilke/clauswilke.github.io.old
https://github.com/clauswilke/clauswilke.github.io.old
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/clauswilke/clauswilke.github.io.old
- Owner: clauswilke
- Created: 2015-07-31T21:48:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-08-05T14:25:51.000Z (over 5 years ago)
- Last Synced: 2024-10-14T17:29:21.262Z (3 months ago)
- Language: HTML
- Size: 5.6 MB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# clauswilke.github.io
This site uses the bootstrap framework. The following explains how I incorporated it into the site.
## Bootstrap sass
As described here: http://veithen.github.io/2015/03/26/jekyll-bootstrap.html
1. Download latest version from here: https://github.com/twbs/bootstrap-sass/tags. It is currently 3.3.5.
2. Copy the following files and directories from the archive to `_sass`:
`assets/stylesheets/_bootstrap.scss`
`assets/stylesheets/bootstrap`
3. Create a basic stylesheet (e.g. `assets/css/site.scss`) as follows:
```
---
# Only the main Sass file needs front matter (the dashes are enough)
---
# ... customize bootstrap variables
@import "bootstrap";
```
All variable definitions etc. need to be made before the final `@import "boostrap";` line.## Bootstrap javascript
Documentation: http://getbootstrap.com/javascript/
1. Move `bootstrap.min.js` from the bootstrap archive to `assets/javascript/`.