├── .github └── FUNDING.yml ├── .gitignore ├── .jekyll-metadata ├── Gemfile ├── README.md ├── _config.yml ├── _config_dev.yml ├── _data ├── navigation_footer.yml ├── navigation_page.yml └── ui.yml ├── _drafts ├── post-all-frontmatter.md ├── post-embed.md ├── post-full.md ├── post-fullwidth.md ├── post-header-image.md ├── post-link.md ├── post-quote.md ├── post-simple.md ├── post-video.md ├── post-with-comments.md └── post-with-image.md ├── _includes ├── ad_article ├── alert ├── helper │ ├── _1_head.html │ ├── _2_topbar_navigation.html │ ├── _3_masthead.html │ ├── _4_footer.html │ ├── _5_footer_scripts.html │ ├── _comments.html │ ├── _favicon.html │ ├── _pagination.html │ ├── _social_media_icons.html │ ├── _video_embed.html │ ├── facebook_open_graph.html │ ├── navigation.html │ ├── seo.html │ ├── twitter_card.html │ └── variables.html ├── list-collection ├── list-posts ├── next-previous-post-in-category ├── post-count ├── search ├── svg-social-media │ ├── amazon.svg │ ├── behance.svg │ ├── buffer.svg │ ├── codepen.svg │ ├── delicious.svg │ ├── dribbble.svg │ ├── email.svg │ ├── facebook.svg │ ├── facebook_square.svg │ ├── flickr.svg │ ├── github.svg │ ├── github_ring.svg │ ├── googleplay.svg │ ├── googleplus.svg │ ├── googleplus_noplus.svg │ ├── instagram.svg │ ├── linkedin.svg │ ├── location.svg │ ├── medium.svg │ ├── phone.svg │ ├── pinterest.svg │ ├── readme.md │ ├── reddit.svg │ ├── reddit_head.svg │ ├── rss.svg │ ├── sina_weibo.svg │ ├── snapchat.svg │ ├── soundcloud.svg │ ├── soundcloud_notext.svg │ ├── tumblr.svg │ ├── twitter.svg │ ├── vine.svg │ ├── vk.svg │ ├── whatsapp.svg │ ├── youtube.svg │ └── youtube_text.svg └── svg │ ├── nav.svg │ ├── search.svg │ └── share.svg ├── _layouts ├── archive.html ├── compress.html ├── default.html ├── frontpage.html ├── introduction.html ├── page.html └── redirect.html ├── _posts ├── 2015-11-02-table.md ├── 2015-11-03-images-alignment.md ├── 2015-11-03-post-with-comments.md ├── 2015-11-08-embed.md ├── 2015-11-10-quote.md ├── 2015-11-11-link.md ├── 2015-11-25-post-with-image.md ├── 2015-11-26-using-drafts.md ├── 2015-11-26-video-postings-made-easy.md ├── 2015-11-26-writing-content-is-so-easy.md ├── 2015-11-27-style-guide.md ├── 2015-11-28-highlighting.md ├── 2015-11-28-using-gists.md ├── 2015-11-29-search-engine-optimization.md ├── 2015-12-08-header-image.md ├── 2015-12-11-handcrafted-typography.md ├── 2015-12-12-fullwidth-page.md ├── 2015-12-13-about-simplicity.md └── 2015-12-14-getting-started.md ├── _sass ├── 00_functions │ └── _00_functions.scss ├── 01_colors │ ├── _00_colors.scss │ ├── _color_scheme_gloom.scss │ ├── _color_scheme_glowfish.scss │ ├── _color_scheme_legacy.scss │ ├── _color_scheme_simplicity.scss │ └── _color_scheme_yule.scss ├── 02_settings │ ├── _00_normalize.scss │ └── _00_settings.scss ├── 04_typography │ ├── _footnotes.scss │ ├── _general_typography.scss │ ├── _links.scss │ ├── _syntax_highlighting.scss │ ├── _typography_article.scss │ ├── _typography_css_elements.scss │ ├── _typography_media_queries.scss │ ├── _typography_modular_scale_1em.scss │ └── _typography_modular_scale_ratio_1_125.scss └── 05_layout │ ├── _00_layout.scss │ ├── _alerts.scss │ ├── _buttons.scss │ ├── _content.scss │ ├── _footer.scss │ ├── _grid.scss │ ├── _inline_list.scss │ ├── _jump_to_top.scss │ ├── _layout_elements.scss │ ├── _layout_introduction_page.scss │ ├── _layout_media_queries.scss │ ├── _logo.scss │ ├── _masthead.scss │ ├── _meta.scss │ ├── _navigation.scss │ ├── _pagination.scss │ ├── _responsive_video.scss │ ├── _search.scss │ ├── _social_media_icons.scss │ ├── _tables.scss │ └── _toc.scss ├── assets ├── css │ └── simplicity.scss ├── img │ ├── apple-touch-icon-114x114-precomposed.png │ ├── apple-touch-icon-120x120-precomposed.png │ ├── apple-touch-icon-144x144-precomposed.png │ ├── apple-touch-icon-152x152-precomposed.png │ ├── apple-touch-icon-180x180-precomposed.png │ ├── apple-touch-icon-72x72-precomposed.png │ ├── apple-touch-icon-76x76-precomposed.png │ ├── apple-touch-icon-precomposed.png │ ├── bars.svg │ ├── favicon-32x32.png │ ├── icon-simplicity-512x512.png │ ├── logo-phlow.svg │ ├── logo-simplicity.svg │ ├── msapplication_tileimage.png │ ├── search.svg │ ├── share-square-o.svg │ ├── share.svg │ ├── simplicity-logo.svg │ └── touch-icon-192x192.png ├── js │ ├── lunr.min.js │ └── search.js └── psd │ └── icon-simplicity-512x512.psd ├── images ├── header_image.jpg ├── photo-matteo-paganelli.jpg ├── simplicity.jpg └── unsplash-samuel-scrimshaw.jpg └── pages ├── 404.md ├── archive.md ├── contact.md ├── feed.xml ├── humans.txt ├── index.md ├── info.md ├── introduction.md ├── navigation.md ├── robots.txt └── search.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/.gitignore -------------------------------------------------------------------------------- /.jekyll-metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/.jekyll-metadata -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_config.yml -------------------------------------------------------------------------------- /_config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_config_dev.yml -------------------------------------------------------------------------------- /_data/navigation_footer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_data/navigation_footer.yml -------------------------------------------------------------------------------- /_data/navigation_page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_data/navigation_page.yml -------------------------------------------------------------------------------- /_data/ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_data/ui.yml -------------------------------------------------------------------------------- /_drafts/post-all-frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-all-frontmatter.md -------------------------------------------------------------------------------- /_drafts/post-embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-embed.md -------------------------------------------------------------------------------- /_drafts/post-full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-full.md -------------------------------------------------------------------------------- /_drafts/post-fullwidth.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '' 3 | fullwidth: true 4 | --- 5 | 6 | 7 | -------------------------------------------------------------------------------- /_drafts/post-header-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-header-image.md -------------------------------------------------------------------------------- /_drafts/post-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-link.md -------------------------------------------------------------------------------- /_drafts/post-quote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-quote.md -------------------------------------------------------------------------------- /_drafts/post-simple.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '' 3 | --- 4 | 5 | 6 | -------------------------------------------------------------------------------- /_drafts/post-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-video.md -------------------------------------------------------------------------------- /_drafts/post-with-comments.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '' 3 | comments: true 4 | --- 5 | 6 | 7 | -------------------------------------------------------------------------------- /_drafts/post-with-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_drafts/post-with-image.md -------------------------------------------------------------------------------- /_includes/ad_article: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/ad_article -------------------------------------------------------------------------------- /_includes/alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/alert -------------------------------------------------------------------------------- /_includes/helper/_1_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_1_head.html -------------------------------------------------------------------------------- /_includes/helper/_2_topbar_navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_2_topbar_navigation.html -------------------------------------------------------------------------------- /_includes/helper/_3_masthead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_3_masthead.html -------------------------------------------------------------------------------- /_includes/helper/_4_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_4_footer.html -------------------------------------------------------------------------------- /_includes/helper/_5_footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_5_footer_scripts.html -------------------------------------------------------------------------------- /_includes/helper/_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_comments.html -------------------------------------------------------------------------------- /_includes/helper/_favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_favicon.html -------------------------------------------------------------------------------- /_includes/helper/_pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_pagination.html -------------------------------------------------------------------------------- /_includes/helper/_social_media_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_social_media_icons.html -------------------------------------------------------------------------------- /_includes/helper/_video_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/_video_embed.html -------------------------------------------------------------------------------- /_includes/helper/facebook_open_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/facebook_open_graph.html -------------------------------------------------------------------------------- /_includes/helper/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/navigation.html -------------------------------------------------------------------------------- /_includes/helper/seo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/seo.html -------------------------------------------------------------------------------- /_includes/helper/twitter_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/twitter_card.html -------------------------------------------------------------------------------- /_includes/helper/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/helper/variables.html -------------------------------------------------------------------------------- /_includes/list-collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/list-collection -------------------------------------------------------------------------------- /_includes/list-posts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/list-posts -------------------------------------------------------------------------------- /_includes/next-previous-post-in-category: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/next-previous-post-in-category -------------------------------------------------------------------------------- /_includes/post-count: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/post-count -------------------------------------------------------------------------------- /_includes/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/search -------------------------------------------------------------------------------- /_includes/svg-social-media/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/amazon.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/behance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/behance.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/buffer.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/codepen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/codepen.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/delicious.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/delicious.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/dribbble.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/email.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/facebook.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/facebook_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/facebook_square.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/flickr.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/github.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/github_ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/github_ring.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/googleplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/googleplay.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/googleplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/googleplus.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/googleplus_noplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/googleplus_noplus.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/instagram.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/linkedin.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/location.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/medium.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/phone.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/pinterest.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/readme.md -------------------------------------------------------------------------------- /_includes/svg-social-media/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/reddit.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/reddit_head.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/reddit_head.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/rss.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/sina_weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/sina_weibo.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/snapchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/snapchat.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/soundcloud.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/soundcloud_notext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/soundcloud_notext.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/tumblr.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/twitter.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/vine.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/vk.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/whatsapp.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/youtube.svg -------------------------------------------------------------------------------- /_includes/svg-social-media/youtube_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg-social-media/youtube_text.svg -------------------------------------------------------------------------------- /_includes/svg/nav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg/nav.svg -------------------------------------------------------------------------------- /_includes/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg/search.svg -------------------------------------------------------------------------------- /_includes/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_includes/svg/share.svg -------------------------------------------------------------------------------- /_layouts/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_layouts/archive.html -------------------------------------------------------------------------------- /_layouts/compress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_layouts/compress.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/frontpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_layouts/frontpage.html -------------------------------------------------------------------------------- /_layouts/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_layouts/introduction.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_layouts/redirect.html -------------------------------------------------------------------------------- /_posts/2015-11-02-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-02-table.md -------------------------------------------------------------------------------- /_posts/2015-11-03-images-alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-03-images-alignment.md -------------------------------------------------------------------------------- /_posts/2015-11-03-post-with-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-03-post-with-comments.md -------------------------------------------------------------------------------- /_posts/2015-11-08-embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-08-embed.md -------------------------------------------------------------------------------- /_posts/2015-11-10-quote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-10-quote.md -------------------------------------------------------------------------------- /_posts/2015-11-11-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-11-link.md -------------------------------------------------------------------------------- /_posts/2015-11-25-post-with-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-25-post-with-image.md -------------------------------------------------------------------------------- /_posts/2015-11-26-using-drafts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-26-using-drafts.md -------------------------------------------------------------------------------- /_posts/2015-11-26-video-postings-made-easy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-26-video-postings-made-easy.md -------------------------------------------------------------------------------- /_posts/2015-11-26-writing-content-is-so-easy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-26-writing-content-is-so-easy.md -------------------------------------------------------------------------------- /_posts/2015-11-27-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-27-style-guide.md -------------------------------------------------------------------------------- /_posts/2015-11-28-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-28-highlighting.md -------------------------------------------------------------------------------- /_posts/2015-11-28-using-gists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-28-using-gists.md -------------------------------------------------------------------------------- /_posts/2015-11-29-search-engine-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-11-29-search-engine-optimization.md -------------------------------------------------------------------------------- /_posts/2015-12-08-header-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-12-08-header-image.md -------------------------------------------------------------------------------- /_posts/2015-12-11-handcrafted-typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-12-11-handcrafted-typography.md -------------------------------------------------------------------------------- /_posts/2015-12-12-fullwidth-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-12-12-fullwidth-page.md -------------------------------------------------------------------------------- /_posts/2015-12-13-about-simplicity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-12-13-about-simplicity.md -------------------------------------------------------------------------------- /_posts/2015-12-14-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_posts/2015-12-14-getting-started.md -------------------------------------------------------------------------------- /_sass/00_functions/_00_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/00_functions/_00_functions.scss -------------------------------------------------------------------------------- /_sass/01_colors/_00_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/01_colors/_00_colors.scss -------------------------------------------------------------------------------- /_sass/01_colors/_color_scheme_gloom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/01_colors/_color_scheme_gloom.scss -------------------------------------------------------------------------------- /_sass/01_colors/_color_scheme_glowfish.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/01_colors/_color_scheme_glowfish.scss -------------------------------------------------------------------------------- /_sass/01_colors/_color_scheme_legacy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/01_colors/_color_scheme_legacy.scss -------------------------------------------------------------------------------- /_sass/01_colors/_color_scheme_simplicity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/01_colors/_color_scheme_simplicity.scss -------------------------------------------------------------------------------- /_sass/01_colors/_color_scheme_yule.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/01_colors/_color_scheme_yule.scss -------------------------------------------------------------------------------- /_sass/02_settings/_00_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/02_settings/_00_normalize.scss -------------------------------------------------------------------------------- /_sass/02_settings/_00_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/02_settings/_00_settings.scss -------------------------------------------------------------------------------- /_sass/04_typography/_footnotes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_footnotes.scss -------------------------------------------------------------------------------- /_sass/04_typography/_general_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_general_typography.scss -------------------------------------------------------------------------------- /_sass/04_typography/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_links.scss -------------------------------------------------------------------------------- /_sass/04_typography/_syntax_highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_syntax_highlighting.scss -------------------------------------------------------------------------------- /_sass/04_typography/_typography_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_typography_article.scss -------------------------------------------------------------------------------- /_sass/04_typography/_typography_css_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_typography_css_elements.scss -------------------------------------------------------------------------------- /_sass/04_typography/_typography_media_queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_typography_media_queries.scss -------------------------------------------------------------------------------- /_sass/04_typography/_typography_modular_scale_1em.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_typography_modular_scale_1em.scss -------------------------------------------------------------------------------- /_sass/04_typography/_typography_modular_scale_ratio_1_125.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/04_typography/_typography_modular_scale_ratio_1_125.scss -------------------------------------------------------------------------------- /_sass/05_layout/_00_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_00_layout.scss -------------------------------------------------------------------------------- /_sass/05_layout/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_alerts.scss -------------------------------------------------------------------------------- /_sass/05_layout/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_buttons.scss -------------------------------------------------------------------------------- /_sass/05_layout/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_content.scss -------------------------------------------------------------------------------- /_sass/05_layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_footer.scss -------------------------------------------------------------------------------- /_sass/05_layout/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_grid.scss -------------------------------------------------------------------------------- /_sass/05_layout/_inline_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_inline_list.scss -------------------------------------------------------------------------------- /_sass/05_layout/_jump_to_top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_jump_to_top.scss -------------------------------------------------------------------------------- /_sass/05_layout/_layout_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_layout_elements.scss -------------------------------------------------------------------------------- /_sass/05_layout/_layout_introduction_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_layout_introduction_page.scss -------------------------------------------------------------------------------- /_sass/05_layout/_layout_media_queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_layout_media_queries.scss -------------------------------------------------------------------------------- /_sass/05_layout/_logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_logo.scss -------------------------------------------------------------------------------- /_sass/05_layout/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_masthead.scss -------------------------------------------------------------------------------- /_sass/05_layout/_meta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_meta.scss -------------------------------------------------------------------------------- /_sass/05_layout/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_navigation.scss -------------------------------------------------------------------------------- /_sass/05_layout/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_pagination.scss -------------------------------------------------------------------------------- /_sass/05_layout/_responsive_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_responsive_video.scss -------------------------------------------------------------------------------- /_sass/05_layout/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_search.scss -------------------------------------------------------------------------------- /_sass/05_layout/_social_media_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_social_media_icons.scss -------------------------------------------------------------------------------- /_sass/05_layout/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_tables.scss -------------------------------------------------------------------------------- /_sass/05_layout/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/_sass/05_layout/_toc.scss -------------------------------------------------------------------------------- /assets/css/simplicity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/css/simplicity.scss -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-120x120-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-120x120-precomposed.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-152x152-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-152x152-precomposed.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-180x180-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-180x180-precomposed.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-76x76-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-76x76-precomposed.png -------------------------------------------------------------------------------- /assets/img/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /assets/img/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/bars.svg -------------------------------------------------------------------------------- /assets/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/favicon-32x32.png -------------------------------------------------------------------------------- /assets/img/icon-simplicity-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/icon-simplicity-512x512.png -------------------------------------------------------------------------------- /assets/img/logo-phlow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/logo-phlow.svg -------------------------------------------------------------------------------- /assets/img/logo-simplicity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/logo-simplicity.svg -------------------------------------------------------------------------------- /assets/img/msapplication_tileimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/msapplication_tileimage.png -------------------------------------------------------------------------------- /assets/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/search.svg -------------------------------------------------------------------------------- /assets/img/share-square-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/share-square-o.svg -------------------------------------------------------------------------------- /assets/img/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/share.svg -------------------------------------------------------------------------------- /assets/img/simplicity-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/simplicity-logo.svg -------------------------------------------------------------------------------- /assets/img/touch-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/img/touch-icon-192x192.png -------------------------------------------------------------------------------- /assets/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/js/lunr.min.js -------------------------------------------------------------------------------- /assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/js/search.js -------------------------------------------------------------------------------- /assets/psd/icon-simplicity-512x512.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/assets/psd/icon-simplicity-512x512.psd -------------------------------------------------------------------------------- /images/header_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/images/header_image.jpg -------------------------------------------------------------------------------- /images/photo-matteo-paganelli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/images/photo-matteo-paganelli.jpg -------------------------------------------------------------------------------- /images/simplicity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/images/simplicity.jpg -------------------------------------------------------------------------------- /images/unsplash-samuel-scrimshaw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/images/unsplash-samuel-scrimshaw.jpg -------------------------------------------------------------------------------- /pages/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/404.md -------------------------------------------------------------------------------- /pages/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/archive.md -------------------------------------------------------------------------------- /pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/contact.md -------------------------------------------------------------------------------- /pages/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/feed.xml -------------------------------------------------------------------------------- /pages/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/humans.txt -------------------------------------------------------------------------------- /pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/index.md -------------------------------------------------------------------------------- /pages/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/info.md -------------------------------------------------------------------------------- /pages/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/introduction.md -------------------------------------------------------------------------------- /pages/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/navigation.md -------------------------------------------------------------------------------- /pages/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/robots.txt -------------------------------------------------------------------------------- /pages/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phlow/simplicity/HEAD/pages/search.md --------------------------------------------------------------------------------