Built With React
33 |User interfaces built with React.
34 | 35 | 36 |37 | 38 | {% include navigation.html %} 39 | 40 |
41 | 42 |
-
43 |
51 |
- 52 | Follow @builtwreact 53 | 54 | 55 |
├── .ruby-version ├── CNAME ├── .ruby-gemset ├── img ├── logo.png ├── favicon.ico ├── share-logo.jpg ├── logo.svg ├── browser.svg └── mobile.svg ├── screenshots ├── asana.png ├── cache.png ├── lrn.png ├── luuna.png ├── taopp.png ├── bonsai.png ├── canopy.png ├── coinmap.png ├── docstub.png ├── feedly.png ├── guilded.png ├── hipchat.png ├── medean.png ├── mowned.png ├── netflix.png ├── netlify.png ├── redmart.png ├── rnplay.png ├── sentry.png ├── stampsy.png ├── syncano.png ├── taskade.png ├── zapier.png ├── 1password.png ├── assembly.png ├── codecademy.png ├── coursera.png ├── docker-hub.png ├── facebook.png ├── flipboard.png ├── imgsquash.png ├── instagram.png ├── invision.png ├── kitematic.png ├── musixmatch.png ├── routable.png ├── verbling.png ├── whatsapp.png ├── wordpress.png ├── digitalocean.png ├── product-hunt.png ├── studentpark.png ├── tshirtexpert.png ├── dropbox-paper.png ├── mobile-twitter.png ├── dropbox-carousel.png ├── expedia-viewfinder.png └── filepreviews-sandbox.png ├── Gemfile ├── _layouts ├── page.html ├── post.html └── default.html ├── _posts ├── 2019-02-25-mowned.md ├── 2019-02-26-bonsai.md ├── 2019-02-26-taskade.md ├── 2015-09-18-feedly.md ├── 2015-09-30-asana.md ├── 2018-02-12-luuna.md ├── 2019-04-14-routable.md ├── 2015-08-28-zapier.md ├── 2015-08-31-cache.md ├── 2015-09-11-canopy.md ├── 2015-10-08-sentry.md ├── 2019-02-26-1password.md ├── 2015-08-28-coinmap.md ├── 2015-09-02-stampsy.md ├── 2015-09-04-redmart.md ├── 2015-09-10-syncano.md ├── 2016-10-06-syncano.md ├── 2018-04-05-medean.md ├── 2015-08-27-hipchat.md ├── 2015-08-27-netflix.md ├── 2015-09-01-assembly.md ├── 2015-09-16-coursera.md ├── 2015-09-17-verbling.md ├── 2018-01-14-guilded.md ├── 2015-08-27-instagram.md ├── 2015-08-31-whatsapp.md ├── 2016-8-19-netlify.md ├── 2018-01-14-codecademy.md ├── 2018-01-14-invision.md ├── 2015-08-26-facebook.md ├── 2015-11-13-musixmatch.md ├── 2015-11-23-docker-hub.md ├── 2015-11-23-wordpress.md ├── 2019-02-26-mobile-twitter.md ├── 2015-09-24-rnplay.md ├── 2015-08-27-product-hunt.md ├── 2017-01-27-studentpark.md ├── 2015-08-29-digitalocean.md ├── 2015-08-29-flipboard.md ├── 2017-01-30-dropbox-paper.md ├── 2015-09-09-kitematic.md ├── 2016-11-04-taopp.md ├── 2019-11-15-tshirtexpert.md ├── 2015-08-27-dropbox-carousel.md ├── 2015-09-03-expedia-viewfinder.md └── 2015-11-19-filepreviews-sandbox.md ├── robots.txt ├── script ├── cibuild └── branding ├── Rakefile ├── docker-compose.yml ├── PULL_REQUEST_TEMPLATE.md ├── Dockerfile ├── _config.yml ├── .gitignore ├── _includes ├── analytics.html ├── screenshot.html ├── pagination.html ├── navigation.html ├── browser-top.html └── css │ └── bootstrap.min.css ├── .github └── ISSUE_TEMPLATE │ └── submit-website-for-consideration.md ├── index.html ├── sitemap.xml ├── CONTRIBUTING.md ├── LICENSE ├── feed.xml ├── README.md ├── about.md ├── CODE_OF_CONDUCT.md ├── css └── main.css └── Gemfile.lock /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.4 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | builtwithreact.io 2 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | built-with-react 2 | -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/share-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/img/share-logo.jpg -------------------------------------------------------------------------------- /screenshots/asana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/asana.png -------------------------------------------------------------------------------- /screenshots/cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/cache.png -------------------------------------------------------------------------------- /screenshots/lrn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/lrn.png -------------------------------------------------------------------------------- /screenshots/luuna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/luuna.png -------------------------------------------------------------------------------- /screenshots/taopp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/taopp.png -------------------------------------------------------------------------------- /screenshots/bonsai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/bonsai.png -------------------------------------------------------------------------------- /screenshots/canopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/canopy.png -------------------------------------------------------------------------------- /screenshots/coinmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/coinmap.png -------------------------------------------------------------------------------- /screenshots/docstub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/docstub.png -------------------------------------------------------------------------------- /screenshots/feedly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/feedly.png -------------------------------------------------------------------------------- /screenshots/guilded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/guilded.png -------------------------------------------------------------------------------- /screenshots/hipchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/hipchat.png -------------------------------------------------------------------------------- /screenshots/medean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/medean.png -------------------------------------------------------------------------------- /screenshots/mowned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/mowned.png -------------------------------------------------------------------------------- /screenshots/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/netflix.png -------------------------------------------------------------------------------- /screenshots/netlify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/netlify.png -------------------------------------------------------------------------------- /screenshots/redmart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/redmart.png -------------------------------------------------------------------------------- /screenshots/rnplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/rnplay.png -------------------------------------------------------------------------------- /screenshots/sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/sentry.png -------------------------------------------------------------------------------- /screenshots/stampsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/stampsy.png -------------------------------------------------------------------------------- /screenshots/syncano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/syncano.png -------------------------------------------------------------------------------- /screenshots/taskade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/taskade.png -------------------------------------------------------------------------------- /screenshots/zapier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/zapier.png -------------------------------------------------------------------------------- /screenshots/1password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/1password.png -------------------------------------------------------------------------------- /screenshots/assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/assembly.png -------------------------------------------------------------------------------- /screenshots/codecademy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/codecademy.png -------------------------------------------------------------------------------- /screenshots/coursera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/coursera.png -------------------------------------------------------------------------------- /screenshots/docker-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/docker-hub.png -------------------------------------------------------------------------------- /screenshots/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/facebook.png -------------------------------------------------------------------------------- /screenshots/flipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/flipboard.png -------------------------------------------------------------------------------- /screenshots/imgsquash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/imgsquash.png -------------------------------------------------------------------------------- /screenshots/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/instagram.png -------------------------------------------------------------------------------- /screenshots/invision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/invision.png -------------------------------------------------------------------------------- /screenshots/kitematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/kitematic.png -------------------------------------------------------------------------------- /screenshots/musixmatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/musixmatch.png -------------------------------------------------------------------------------- /screenshots/routable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/routable.png -------------------------------------------------------------------------------- /screenshots/verbling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/verbling.png -------------------------------------------------------------------------------- /screenshots/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/whatsapp.png -------------------------------------------------------------------------------- /screenshots/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/wordpress.png -------------------------------------------------------------------------------- /screenshots/digitalocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/digitalocean.png -------------------------------------------------------------------------------- /screenshots/product-hunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/product-hunt.png -------------------------------------------------------------------------------- /screenshots/studentpark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/studentpark.png -------------------------------------------------------------------------------- /screenshots/tshirtexpert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/tshirtexpert.png -------------------------------------------------------------------------------- /screenshots/dropbox-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/dropbox-paper.png -------------------------------------------------------------------------------- /screenshots/mobile-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/mobile-twitter.png -------------------------------------------------------------------------------- /screenshots/dropbox-carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/dropbox-carousel.png -------------------------------------------------------------------------------- /screenshots/expedia-viewfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/expedia-viewfinder.png -------------------------------------------------------------------------------- /screenshots/filepreviews-sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blimpllc/built-with-react/HEAD/screenshots/filepreviews-sandbox.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'github-pages' 4 | 5 | group :development, :test do 6 | gem 'html-proofer' 7 | gem 'rake' 8 | end -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
--------------------------------------------------------------------------------
/_posts/2015-09-30-asana.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Asana
4 | slug: asana
5 | source: https://asana.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2018-02-12-luuna.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Luuna
4 | slug: luuna
5 | source: https://www.luuna.mx/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2019-04-14-routable.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Routable
4 | slug: routable
5 | source: https://routable.com/
6 | ---
7 |
8 | 
9 |
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 |
4 | # www.robotstxt.org/
5 |
6 | # Allow crawling of all content
7 | User-agent: *
8 | Disallow:
9 | Sitemap: {{ site.url }}/sitemap.xml
10 |
--------------------------------------------------------------------------------
/_posts/2015-08-28-zapier.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Zapier
4 | slug: zapier
5 | source: https://zapier.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-31-cache.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Cache
4 | slug: cache
5 | source: http://www.trycache.co/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-11-canopy.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Canopy
4 | slug: canopy
5 | source: https://canopy.co/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-10-08-sentry.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Sentry
4 | slug: sentry
5 | source: https://getsentry.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2019-02-26-1password.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: 1Password
4 | slug: 1password
5 | source: https://my.1password.com
6 | ---
7 |
8 | 
--------------------------------------------------------------------------------
/_posts/2015-08-28-coinmap.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Coinmap
4 | slug: coinmap
5 | source: https://coinmap.org/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-02-stampsy.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Stampsy
4 | slug: stampsy
5 | source: https://stampsy.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-04-redmart.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: RedMart
4 | slug: redmart
5 | source: https://redmart.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-10-syncano.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Syncano
4 | slug: syncano
5 | source: https://syncano.io/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2016-10-06-syncano.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Syncano
4 | slug: syncano
5 | source: https://syncano.io/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2018-04-05-medean.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Medean
4 | slug: medean
5 | source: https://app.medean.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-27-hipchat.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: HipChat
4 | slug: hipchat
5 | source: https://www.hipchat.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-27-netflix.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Netflix
4 | slug: netflix
5 | source: https://www.netflix.com
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-01-assembly.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Assembly
4 | slug: assembly
5 | source: https://assembly.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-16-coursera.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Coursera
4 | slug: coursera
5 | source: https://www.coursera.org/
6 | ---
7 |
8 |
--------------------------------------------------------------------------------
/_posts/2015-09-17-verbling.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Verbling
4 | slug: verbling
5 | source: https://www.verbling.com/
6 | ---
7 |
8 |
--------------------------------------------------------------------------------
/_posts/2018-01-14-guilded.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Guilded
4 | slug: guilded
5 | source: https://www.guilded.gg/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/script/cibuild:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | set -e
4 |
5 | script/branding
6 |
7 | export PATH=/usr/share/rbenv/shims:$PATH RBENV_VERSION=$(cat .ruby-version)
8 |
9 | bundle exec rake test
10 |
--------------------------------------------------------------------------------
/_posts/2015-08-27-instagram.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Instagram
4 | slug: instagram
5 | source: https://instagram.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-31-whatsapp.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: WhatsApp
4 | slug: whatsapp
5 | source: https://web.whatsapp.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2016-8-19-netlify.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Netlify
4 | slug: netlify
5 | source: https://app.netlify.com
6 | ---
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/_posts/2018-01-14-codecademy.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Codecademy
4 | slug: codecademy
5 | source: https://www.codecademy.com/
6 | ---
7 |
8 |
--------------------------------------------------------------------------------
/_posts/2018-01-14-invision.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Invision
4 | slug: invision
5 | source: https://www.invisionapp.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-26-facebook.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Facebook
4 | slug: facebook
5 | source: https://www.facebook.com/facebook
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-11-13-musixmatch.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Musixmatch
4 | slug: musixmatch
5 | source: https://www.musixmatch.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-11-23-docker-hub.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Docker Hub
4 | slug: docker-hub
5 | source: https://hub.docker.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-11-23-wordpress.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Wordpress.com
4 | slug: wordpress
5 | source: https://wordpress.com
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2019-02-26-mobile-twitter.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Mobile Twitter
4 | slug: mobile-twitter
5 | source: https://mobile.twitter.com/
6 | ---
7 |
8 | 
--------------------------------------------------------------------------------
/_posts/2015-09-24-rnplay.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: React Native Playground
4 | slug: rnplay
5 | source: https://rnplay.org/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-27-product-hunt.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Product Hunt
4 | slug: product-hunt
5 | source: https://www.producthunt.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2017-01-27-studentpark.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Studentpark
4 | slug: studentpark
5 | source: https://studentpark.pk
6 | ---
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/_posts/2015-08-29-digitalocean.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Digital Ocean
4 | slug: digitalocean
5 | source: https://cloud.digitalocean.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-29-flipboard.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Flipboard
4 | slug: flipboard
5 | source: https://flipboard.com/
6 | is_mobile: true
7 | ---
8 |
9 |
10 |
--------------------------------------------------------------------------------
/_posts/2017-01-30-dropbox-paper.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Dropbox Paper
4 | slug: dropbox-paper
5 | source: https://www.dropbox.com/paper
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-09-kitematic.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Kitematic
4 | slug: kitematic
5 | source: https://kitematic.com/
6 | is_desktop: true
7 | ---
8 |
9 |
10 |
--------------------------------------------------------------------------------
/_posts/2016-11-04-taopp.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: The Art of Ping Pong
4 | slug: taopp
5 | source: http://theartofpingpong.co.uk
6 | ---
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
1 | # frozen_string_literal: true
2 |
3 | require 'html-proofer'
4 |
5 | task :test do
6 | sh 'bundle exec jekyll build'
7 | options = { :assume_extension => true }
8 | HTMLProofer.check_directory('./_gh_pages/', options).run
9 | end
--------------------------------------------------------------------------------
/_posts/2019-11-15-tshirtexpert.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: TShirtExpert
4 | slug: tshirtexpert
5 | source: https://tshirtexpert.co.uk
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-08-27-dropbox-carousel.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Dropbox's Carousel
4 | slug: dropbox-carousel
5 | source: https://carousel.dropbox.com/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-09-03-expedia-viewfinder.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Expedia's Viewfinder
4 | slug: expedia-viewfinder
5 | source: http://www.expedia.com/pictures/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/_posts/2015-11-19-filepreviews-sandbox.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: FilePreviews Sandbox
4 | slug: filepreviews-sandbox
5 | source: http://filepreviews.io/sandbox/
6 | ---
7 |
8 |
9 |
--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
1 | version: '3'
2 | services:
3 | web:
4 | build: .
5 | ports:
6 | - "4000:4000"
7 | volumes:
8 | - .:/built-with-react
9 | test:
10 | build: .
11 | volumes:
12 | - .:/built-with-react
13 | command: bash script/cibuild
--------------------------------------------------------------------------------
/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | ## Website Name/Title
2 |
3 |
4 |
5 | ## Website URL
6 |
7 |
8 |
9 | ## Website Screenshot
10 |
11 |
12 |
13 | ## Why should we include it?
14 |
15 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM ruby:2.6
2 |
3 | # Bundle install first for a simple gem cache
4 | COPY Gemfile* /tmp/
5 | WORKDIR /tmp
6 | RUN bundle install
7 |
8 | # Set app working direcotry and copy app there.
9 | ENV app /built-with-react
10 | RUN mkdir $app
11 | WORKDIR $app
12 | ADD . $app
13 |
14 | # Set some other necessary ENVs
15 | ENV LC_ALL=C.UTF-8
16 |
17 | CMD bundle exec jekyll serve --host 0.0.0.0 --incremental
--------------------------------------------------------------------------------
/_layouts/post.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ page.date | date: "%B %-d, %Y" }}
9 |{{ post.date | date: "%B %-d, %Y" }}
16 |