├── README.md ├── _config.yml ├── layout ├── _comments.jade ├── _content.jade ├── _footer.jade ├── _head.jade ├── _header.jade ├── _mixins.jade ├── _scripts.jade ├── index.jade └── layout.jade └── source ├── LICENSE ├── fonts ├── droidserif │ ├── 400.woff │ ├── 400.woff2 │ ├── 400i.woff │ ├── 400i.woff2 │ ├── 700.woff │ ├── 700.woff2 │ ├── 700i.woff │ └── 700i.woff2 ├── fira │ ├── 400.woff │ ├── 400.woff2 │ ├── 500.woff │ ├── 500.woff2 │ ├── 700.woff │ └── 700.woff2 └── opensans │ ├── 300.woff │ ├── 300.woff2 │ ├── 300i.woff │ ├── 300i.woff2 │ ├── 400.woff │ ├── 400.woff2 │ ├── 400i.woff │ ├── 400i.woff2 │ ├── 600.woff │ ├── 600.woff2 │ ├── 600i.woff │ ├── 600i.woff2 │ ├── 700.woff │ ├── 700.woff2 │ ├── 700i.woff │ ├── 700i.woff2 │ ├── 800.woff │ ├── 800.woff2 │ ├── 800i.woff │ └── 800i.woff2 ├── images ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon-160x160.png ├── favicon-16x16.png ├── favicon-192x192.png ├── favicon-32x32.png ├── favicon-96x96.png ├── header.jpg ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── screenshot.png ├── screenshot_mobile.png ├── stars.svg └── svdb.png ├── scripts └── index.js └── styles ├── _mixins.styl ├── normalize.css └── screen.styl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/_config.yml -------------------------------------------------------------------------------- /layout/_comments.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/_comments.jade -------------------------------------------------------------------------------- /layout/_content.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/_content.jade -------------------------------------------------------------------------------- /layout/_footer.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/_footer.jade -------------------------------------------------------------------------------- /layout/_head.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/_head.jade -------------------------------------------------------------------------------- /layout/_header.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/_header.jade -------------------------------------------------------------------------------- /layout/_mixins.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/_mixins.jade -------------------------------------------------------------------------------- /layout/_scripts.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/_scripts.jade -------------------------------------------------------------------------------- /layout/index.jade: -------------------------------------------------------------------------------- 1 | include layout -------------------------------------------------------------------------------- /layout/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/layout/layout.jade -------------------------------------------------------------------------------- /source/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/LICENSE -------------------------------------------------------------------------------- /source/fonts/droidserif/400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/400.woff -------------------------------------------------------------------------------- /source/fonts/droidserif/400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/400.woff2 -------------------------------------------------------------------------------- /source/fonts/droidserif/400i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/400i.woff -------------------------------------------------------------------------------- /source/fonts/droidserif/400i.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/400i.woff2 -------------------------------------------------------------------------------- /source/fonts/droidserif/700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/700.woff -------------------------------------------------------------------------------- /source/fonts/droidserif/700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/700.woff2 -------------------------------------------------------------------------------- /source/fonts/droidserif/700i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/700i.woff -------------------------------------------------------------------------------- /source/fonts/droidserif/700i.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/droidserif/700i.woff2 -------------------------------------------------------------------------------- /source/fonts/fira/400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/fira/400.woff -------------------------------------------------------------------------------- /source/fonts/fira/400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/fira/400.woff2 -------------------------------------------------------------------------------- /source/fonts/fira/500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/fira/500.woff -------------------------------------------------------------------------------- /source/fonts/fira/500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/fira/500.woff2 -------------------------------------------------------------------------------- /source/fonts/fira/700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/fira/700.woff -------------------------------------------------------------------------------- /source/fonts/fira/700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/fira/700.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/300.woff -------------------------------------------------------------------------------- /source/fonts/opensans/300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/300.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/300i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/300i.woff -------------------------------------------------------------------------------- /source/fonts/opensans/300i.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/300i.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/400.woff -------------------------------------------------------------------------------- /source/fonts/opensans/400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/400.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/400i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/400i.woff -------------------------------------------------------------------------------- /source/fonts/opensans/400i.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/400i.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/600.woff -------------------------------------------------------------------------------- /source/fonts/opensans/600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/600.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/600i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/600i.woff -------------------------------------------------------------------------------- /source/fonts/opensans/600i.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/600i.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/700.woff -------------------------------------------------------------------------------- /source/fonts/opensans/700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/700.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/700i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/700i.woff -------------------------------------------------------------------------------- /source/fonts/opensans/700i.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/700i.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/800.woff -------------------------------------------------------------------------------- /source/fonts/opensans/800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/800.woff2 -------------------------------------------------------------------------------- /source/fonts/opensans/800i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/800i.woff -------------------------------------------------------------------------------- /source/fonts/opensans/800i.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/fonts/opensans/800i.woff2 -------------------------------------------------------------------------------- /source/images/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/apple-touch-icon.png -------------------------------------------------------------------------------- /source/images/favicon-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/favicon-160x160.png -------------------------------------------------------------------------------- /source/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/favicon-16x16.png -------------------------------------------------------------------------------- /source/images/favicon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/favicon-192x192.png -------------------------------------------------------------------------------- /source/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/favicon-32x32.png -------------------------------------------------------------------------------- /source/images/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/favicon-96x96.png -------------------------------------------------------------------------------- /source/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/header.jpg -------------------------------------------------------------------------------- /source/images/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/mstile-144x144.png -------------------------------------------------------------------------------- /source/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/mstile-150x150.png -------------------------------------------------------------------------------- /source/images/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/mstile-310x150.png -------------------------------------------------------------------------------- /source/images/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/mstile-310x310.png -------------------------------------------------------------------------------- /source/images/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/mstile-70x70.png -------------------------------------------------------------------------------- /source/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/screenshot.png -------------------------------------------------------------------------------- /source/images/screenshot_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/screenshot_mobile.png -------------------------------------------------------------------------------- /source/images/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/stars.svg -------------------------------------------------------------------------------- /source/images/svdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/images/svdb.png -------------------------------------------------------------------------------- /source/scripts/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/styles/_mixins.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/styles/_mixins.styl -------------------------------------------------------------------------------- /source/styles/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/styles/normalize.css -------------------------------------------------------------------------------- /source/styles/screen.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaakvandenberg/flexy/HEAD/source/styles/screen.styl --------------------------------------------------------------------------------