├── src ├── docs │ ├── index.md │ └── _templates │ │ ├── _footer.html │ │ └── _header.html └── js │ └── sticky-footer.js ├── .travis.yml ├── .gitignore ├── package.json ├── docs ├── index.html └── dist │ └── js │ ├── sticky-footer.min.js │ └── sticky-footer.js ├── LICENSE.md ├── dist └── js │ ├── sticky-footer.min.js │ └── sticky-footer.js ├── README.md └── gulpfile.js /src/docs/index.md: -------------------------------------------------------------------------------- 1 |
Some short body content.
-------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | before_script: 5 | - npm install -g gulp 6 | script: gulp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Node 2 | node_modules 3 | test/results 4 | test/coverage 5 | 6 | ## OS X 7 | .DS_Store 8 | ._* 9 | .Spotlight-V100 10 | .Trashes -------------------------------------------------------------------------------- /src/docs/_templates/_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 16 | 17 | 18 |