├── README.md ├── _config.yml ├── _includes ├── comment.html ├── footer.html ├── greeting.html ├── header.html ├── navigation.html ├── pager.html ├── scripts.html ├── share.html └── showcase.html ├── _layouts ├── default.html └── post.html ├── _posts ├── 2013-12-04-Samples.markdown ├── 2013-12-04-welcome-to-jekyll.markdown └── 2013-12-08-What-is-this-anyway.markdown ├── about.html ├── css ├── bootstrap.min.css └── hc.css ├── feynman.png ├── images ├── cc.jpg ├── jt.jpg ├── screenshot1.png ├── screenshot2.png ├── self.jpg └── showcase.jpg ├── index.html ├── js ├── bootstrap.min.js ├── hc.js └── jquery-1.10.2.min.js ├── links.html ├── list.html └── projects.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/comment.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/greeting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/greeting.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/navigation.html -------------------------------------------------------------------------------- /_includes/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/pager.html -------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/scripts.html -------------------------------------------------------------------------------- /_includes/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/share.html -------------------------------------------------------------------------------- /_includes/showcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_includes/showcase.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2013-12-04-Samples.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_posts/2013-12-04-Samples.markdown -------------------------------------------------------------------------------- /_posts/2013-12-04-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_posts/2013-12-04-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /_posts/2013-12-08-What-is-this-anyway.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/_posts/2013-12-08-What-is-this-anyway.markdown -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/about.html -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/hc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/css/hc.css -------------------------------------------------------------------------------- /feynman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/feynman.png -------------------------------------------------------------------------------- /images/cc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/images/cc.jpg -------------------------------------------------------------------------------- /images/jt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/images/jt.jpg -------------------------------------------------------------------------------- /images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/images/screenshot1.png -------------------------------------------------------------------------------- /images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/images/screenshot2.png -------------------------------------------------------------------------------- /images/self.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/images/self.jpg -------------------------------------------------------------------------------- /images/showcase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/images/showcase.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/hc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/js/hc.js -------------------------------------------------------------------------------- /js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/links.html -------------------------------------------------------------------------------- /list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/list.html -------------------------------------------------------------------------------- /projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybers-athletic/Desafios/HEAD/projects.html --------------------------------------------------------------------------------